@tmlmobilidade/databases 20260408.1117.19 → 20260409.1552.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -165,7 +165,7 @@ export class ClickHouseInterfaceTemplate {
|
|
|
165
165
|
throw new Error(`CLICKHOUSE [${this.databaseName}]: Unsafe database name provided.`);
|
|
166
166
|
// Perform the query to create the database if it does not exist
|
|
167
167
|
try {
|
|
168
|
-
await this.client.command({ query: `CREATE DATABASE IF NOT EXISTS "${this.databaseName}"
|
|
168
|
+
await this.client.command({ query: `CREATE DATABASE IF NOT EXISTS "${this.databaseName}"` });
|
|
169
169
|
Logger.info(`CLICKHOUSE [${this.databaseName}]: Database created.`);
|
|
170
170
|
}
|
|
171
171
|
catch (error) {
|