Skip to content

Commit

Permalink
fix(clickhouse-driver): Empty schema when CUBEJS_DB_NAME is provided
Browse files Browse the repository at this point in the history
  • Loading branch information
paveltiunov committed Aug 9, 2019
1 parent 67c6be7 commit 7117e89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ class ClickHouseDriver extends BaseDriver {
database as table_schema,
type as data_type
FROM system.columns
WHERE database = '${this.config.database}'
WHERE database = '${this.config.queryOptions.database}'
`;
}

Expand Down

0 comments on commit 7117e89

Please sign in to comment.