mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-09-09 08:03:50 +00:00
Disable transactional DDL for Ducklake (bug on their side)
This commit is contained in:
@@ -476,5 +476,9 @@ function normalizeNewFkToOldColNames(
|
||||
}
|
||||
|
||||
export function dbSupportsTransactionalDdl(dbType: DbType): boolean {
|
||||
return dbType === 'postgresql' || dbType === 'ms_sql_server' || dbType === 'duckdb'
|
||||
return dbType === 'postgresql' || dbType === 'ms_sql_server'
|
||||
// Commented out temporarily because Ducklake transactional DDL sometimes put the
|
||||
// ducklake in an unusable state.
|
||||
// See : https://github.com/duckdb/ducklake/issues/683
|
||||
// || dbType === 'duckdb'
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user