schema analyser test

This commit is contained in:
Jan Prochazka
2024-09-18 16:01:02 +02:00
parent 5ab686b721
commit fc0db925c5
4 changed files with 72 additions and 16 deletions

View File

@@ -81,6 +81,7 @@ const engines = [
drop2: 'DROP FUNCTION obj2',
},
],
supportSchemas: true,
},
{
label: 'SQL Server',
@@ -105,6 +106,7 @@ const engines = [
drop2: 'DROP PROCEDURE obj2',
},
],
supportSchemas: true,
},
{
label: 'SQLite',
@@ -159,11 +161,11 @@ const filterLocal = [
// filter local testing
'-MySQL',
'-MariaDB',
'-PostgreSQL',
'PostgreSQL',
'-SQL Server',
'-SQLite',
'-CockroachDB',
'ClickHouse',
'-ClickHouse',
];
const enginesPostgre = engines.filter(x => x.label == 'PostgreSQL');