try to fix test

This commit is contained in:
Jan Prochazka
2024-09-19 18:23:25 +02:00
parent b1118c7f43
commit be17301c91
7 changed files with 12 additions and 12 deletions

View File

@@ -57,11 +57,11 @@ class Analyser extends DatabaseAnalyser {
createQuery(resFileName, typeFields, replacements = {}) {
const query = super.createQuery(sql[resFileName], typeFields, replacements);
// const dbname = this.pool._database_name;
// const schemaCondition = isCompositeDbName(dbname)
// ? `= '${splitCompositeDbName(dbname).schema}' `
// : ' IS NOT NULL ';
const schemaCondition = ' IS NOT NULL ';
const dbname = this.pool.__database_name__;
const schemaCondition = isCompositeDbName(dbname)
? `= '${splitCompositeDbName(dbname).schema}' `
: ' IS NOT NULL ';
// const schemaCondition = ' IS NOT NULL ';
return query?.replace(/=SCHEMA_NAME_CONDITION/g, schemaCondition);
}