default value support in table yaml files #296

This commit is contained in:
Jan Prochazka
2022-06-12 08:15:35 +02:00
parent 6794b79d0e
commit c104122a50
3 changed files with 37 additions and 0 deletions

View File

@@ -141,6 +141,10 @@ const filterLocal = [
'-CockroachDB',
];
const enginesPostgre = engines.filter(x => x.label == 'PostgreSQL');
module.exports = process.env.CITEST
? engines.filter(x => !x.skipOnCI)
: engines.filter(x => filterLocal.find(y => x.label == y));
module.exports.enginesPostgre = enginesPostgre;