refactor(core): Use query builder at data table deletes (no-changelog) (#18795)

This commit is contained in:
Jaakko Husso
2025-08-26 16:49:56 +03:00
committed by GitHub
parent 71ff4d8b6b
commit d892574989
2 changed files with 8 additions and 10 deletions

View File

@@ -261,7 +261,3 @@ export function normalizeValue(
return value;
}
export function getPlaceholder(index: number, dbType: DataSourceOptions['type']): string {
return dbType.includes('postgres') ? `$${index}` : '?';
}