Skip to content

Commit

Permalink
Fix issue with identifying column nullability
Browse files Browse the repository at this point in the history
  • Loading branch information
srameshkanna committed Apr 25, 2024
1 parent 522e095 commit a3e4364
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -148,14 +148,14 @@ private static void addColumnRows(Builder builder, String catalog, SchemaTableNa
0,
decimalDigits(column.getType()),
numPrecRadix(column.getType()),
DatabaseMetaData.columnNullableUnknown,
column.isNullable() ? DatabaseMetaData.columnNullable : DatabaseMetaData.columnNoNulls,
column.getComment(),
null,
null,
null,
charOctetLength(column.getType()),
ordinalPosition,
"",
column.isNullable() ? "YES" : "NO",
null,
null,
null,
Expand Down

0 comments on commit a3e4364

Please sign in to comment.