Skip to content

Commit

Permalink
Merge pull request #320 from joe-td/change-mapping-from-CLOB-to-NVARC…
Browse files Browse the repository at this point in the history
…HAR-for-sqlserver

Use NVARCHAR(max) for CLOB, instead of TEXT, when creating a table in SQLServer
  • Loading branch information
dmikurube authored Oct 5, 2023
2 parents b5789f5 + 104acf0 commit 905ecde
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ protected String buildColumnTypeName(JdbcColumn c)
case "BOOLEAN":
return "BIT";
case "CLOB":
return "TEXT";
return "NVARCHAR(max)";
case "TIMESTAMP":
return "DATETIME2";
case "NVARCHAR":
Expand Down

0 comments on commit 905ecde

Please sign in to comment.