Merge branch 'master' into feature/mongo-server-summary

This commit is contained in:
Pavel
2025-08-21 14:27:27 +02:00
19 changed files with 365 additions and 46 deletions

View File

@@ -74,6 +74,14 @@ export interface SqlDialect {
predefinedDataTypes: string[];
columnProperties?: {
columnName?: boolean;
isSparse?: true;
isPersisted?: true;
};
safeCommentChanges?: boolean;
// create sql-tree expression
createColumnViewExpression(
columnName: string,

View File

@@ -56,6 +56,9 @@ export type TestEngineInfo = {
useTextTypeForStrings?: boolean;
supportTableComments?: boolean;
supportColumnComments?: boolean;
supportRenameSqlObject?: boolean;
supportSchemas?: boolean;