Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(schema-compiler): Replace apla-clickhouse with @clickhouse/client #8978

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/cubejs-schema-compiler/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"uuid": "^8.3.2"
},
"devDependencies": {
"@cubejs-backend/apla-clickhouse": "^1.7.0",
"@clickhouse/client": "^1.7.0",
"@cubejs-backend/linter": "^1.0.0",
"@cubejs-backend/query-orchestrator": "1.1.7",
"@types/babel__code-frame": "^7.0.6",
Expand Down
4 changes: 2 additions & 2 deletions packages/cubejs-schema-compiler/src/adapter/BaseQuery.js
Original file line number Diff line number Diff line change
Expand Up @@ -577,9 +577,9 @@ export class BaseQuery {
}

/**
* Returns an array of SQL query strings for the query.
* Returns a pair of SQL query string and parameter values for the query.
* @param {boolean} [exportAnnotatedSql] - returns annotated sql with not rendered params if true
* @returns {Array<string>}
* @returns {[string, Array<unknown>]}
*/
buildSqlAndParams(exportAnnotatedSql) {
if (getEnv('nativeSqlPlanner')) {
Expand Down

This file was deleted.

Loading
Loading