@cubejs-backend/query-orchestrator
Advanced tools
Comparing version 0.10.0 to 0.10.11
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.10.11](https://github.com/statsbotco/cubejs-client/compare/v0.10.10...v0.10.11) (2019-07-02) | ||
### Bug Fixes | ||
* TypeError: Cannot read property 'startsWith' of undefined at tableDefinition.filter.column: support uppercase databases ([995b115](https://github.com/statsbotco/cubejs-client/commit/995b115)) | ||
# [0.10.0](https://github.com/statsbotco/cubejs-client/compare/v0.9.24...v0.10.0) (2019-06-21) | ||
@@ -8,0 +19,0 @@ |
@@ -31,6 +31,6 @@ const { reduce } = require('ramda'); | ||
return ` | ||
SELECT columns.column_name, | ||
columns.table_name, | ||
columns.table_schema, | ||
columns.data_type | ||
SELECT columns.column_name as ${this.quoteIdentifier('column_name')}, | ||
columns.table_name as ${this.quoteIdentifier('table_name')}, | ||
columns.table_schema as ${this.quoteIdentifier('table_schema')}, | ||
columns.data_type as ${this.quoteIdentifier('data_type')} | ||
FROM information_schema.columns | ||
@@ -37,0 +37,0 @@ WHERE columns.table_schema NOT IN ('information_schema', 'mysql', 'performance_schema', 'sys') |
@@ -5,3 +5,3 @@ { | ||
"author": "Statsbot, Inc.", | ||
"version": "0.10.0", | ||
"version": "0.10.11", | ||
"engines": { | ||
@@ -24,3 +24,3 @@ "node": ">=8.11.1" | ||
"license": "Apache-2.0", | ||
"gitHead": "7eeaaa7356ad6fc4d0fd200d2fdc78178a1d1507" | ||
"gitHead": "353ed631bd9c227f4d9d77df63b2ebf900a680ed" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
76027