clickhouse: nullable types

This commit is contained in:
SPRINX0\prochazka
2024-09-10 15:18:57 +02:00
parent ceb51a2597
commit 8d865ab3b3
2 changed files with 32 additions and 1 deletions

View File

@@ -8,6 +8,17 @@ const dialect = {
rangeSelect: true,
stringEscapeChar: "'",
fallbackDataType: 'String',
createColumn: true,
dropColumn: true,
changeColumn: true,
createIndex: true,
dropIndex: true,
columnProperties: {
columnComment: true,
},
quoteIdentifier(s) {
return `"${s}"`;
},