@malloydata/db-trino 0.0.253-dev250331150356 → 0.0.253-dev250401001016
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.
- package/dist/trino_connection.js +1 -1
- package/package.json +2 -2
package/dist/trino_connection.js
CHANGED
|
@@ -210,7 +210,7 @@ class TrinoPrestoConnection extends connection_1.BaseConnection {
|
|
|
210
210
|
else if ((0, malloy_1.isRepeatedRecord)(colSchema)) {
|
|
211
211
|
return this.convertNest(colSchema.fields, rawRow);
|
|
212
212
|
}
|
|
213
|
-
else if ((0, malloy_1.
|
|
213
|
+
else if ((0, malloy_1.isBasicArray)(colSchema)) {
|
|
214
214
|
const elType = colSchema.elementTypeDef;
|
|
215
215
|
let theArray = this.unpackArray([], rawRow);
|
|
216
216
|
if (elType.type === 'array') {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/db-trino",
|
|
3
|
-
"version": "0.0.253-
|
|
3
|
+
"version": "0.0.253-dev250401001016",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"prepublishOnly": "npm run build"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@malloydata/malloy": "^0.0.253-
|
|
25
|
+
"@malloydata/malloy": "^0.0.253-dev250401001016",
|
|
26
26
|
"@prestodb/presto-js-client": "^1.0.0",
|
|
27
27
|
"gaxios": "^4.2.0",
|
|
28
28
|
"trino-client": "^0.2.2"
|