@@ -26,7 +26,7 @@ class MetadataColumnMappings:
2626 SCHEMA_COLUMN = ResultColumn ("TABLE_SCHEM" , "namespace" , SqlType .STRING )
2727 TABLE_NAME_COLUMN = ResultColumn ("TABLE_NAME" , "tableName" , SqlType .STRING )
2828 TABLE_TYPE_COLUMN = ResultColumn ("TABLE_TYPE" , "tableType" , SqlType .STRING )
29- REMARKS_COLUMN = ResultColumn ("REMARKS" , "remarks" , SqlType .STRING )
29+ REMARKS_COLUMN = ResultColumn ("REMARKS" , "remarks" , SqlType .STRING , transform_remarks )
3030 TYPE_CATALOG_COLUMN = ResultColumn ("TYPE_CAT" , None , SqlType .STRING )
3131 TYPE_SCHEM_COLUMN = ResultColumn ("TYPE_SCHEM" , None , SqlType .STRING )
3232 TYPE_NAME_COLUMN = ResultColumn ("TYPE_NAME" , None , SqlType .STRING )
@@ -54,7 +54,7 @@ class MetadataColumnMappings:
5454 transform_ordinal_position ,
5555 )
5656
57- NULLABLE_COLUMN = ResultColumn ("NULLABLE" , None , SqlType .INT , transform_nullable )
57+ NULLABLE_COLUMN = ResultColumn ("NULLABLE" , "isNullable" , SqlType .INT , transform_nullable )
5858 COLUMN_DEF_COLUMN = ResultColumn ("COLUMN_DEF" , None , SqlType .STRING )
5959 SQL_DATA_TYPE_COLUMN = ResultColumn ("SQL_DATA_TYPE" , None , SqlType .INT )
6060 SQL_DATETIME_SUB_COLUMN = ResultColumn ("SQL_DATETIME_SUB" , None , SqlType .INT )
0 commit comments