@cubejs-backend/athena-driver
Advanced tools
Comparing version 0.10.30 to 0.10.31
@@ -6,2 +6,13 @@ # Change Log | ||
## [0.10.31](https://github.com/statsbotco/cubejs-client/compare/v0.10.30...v0.10.31) (2019-08-27) | ||
### Bug Fixes | ||
* **athena-driver:** TypeError: Cannot read property 'map' of undefined ([478c6c6](https://github.com/statsbotco/cubejs-client/commit/478c6c6)) | ||
## [0.10.30](https://github.com/statsbotco/cubejs-client/compare/v0.10.29...v0.10.30) (2019-08-26) | ||
@@ -8,0 +19,0 @@ |
@@ -40,3 +40,3 @@ const AWS = require('aws-sdk'); | ||
query, | ||
values.map(s => (typeof s === 'string' ? { | ||
(values || []).map(s => (typeof s === 'string' ? { | ||
toSqlString: () => SqlString.escape(s).replace(/\\\\([_%])/g, '\\$1').replace(/\\'/g, '\'\'') | ||
@@ -43,0 +43,0 @@ } : s)) |
@@ -5,3 +5,3 @@ { | ||
"author": "Statsbot, Inc.", | ||
"version": "0.10.30", | ||
"version": "0.10.31", | ||
"engines": { | ||
@@ -17,3 +17,3 @@ "node": ">=8.11.1" | ||
"license": "Apache-2.0", | ||
"gitHead": "4c835abe39cac254ea6e3ac82cc26523a9e85240" | ||
"gitHead": "ee19c2522a8bb5e344e1699c27b66b3b14fea5ca" | ||
} |
19178