clickhouse fix

This commit is contained in:
Jan Prochazka 2024-09-12 15:42:16 +02:00
parent b232263708
commit 3c4fad108b

View File

@ -85,7 +85,7 @@ class Analyser extends DatabaseAnalyser {
this.pool,
`SELECT uuid as id FROM system.tables WHERE database = '${this.pool._database_name}' AND name='${pureName}'`
);
this.singleObjectId = resId.rows[0].id;
this.singleObjectId = resId.rows[0]?.id;
}
}