@malloydata/db-trino 0.0.220-dev241205182408 → 0.0.220-dev241206021955
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 +2 -2
- package/package.json +2 -2
package/dist/trino_connection.js
CHANGED
|
@@ -205,10 +205,10 @@ class TrinoPrestoConnection extends connection_1.BaseConnection {
|
|
|
205
205
|
if (colSchema.type === 'record') {
|
|
206
206
|
return this.convertRow(colSchema.fields, rawRow);
|
|
207
207
|
}
|
|
208
|
-
else if ((0, malloy_1.
|
|
208
|
+
else if ((0, malloy_1.isRepeatedRecord)(colSchema)) {
|
|
209
209
|
return this.convertNest(colSchema.fields, rawRow);
|
|
210
210
|
}
|
|
211
|
-
else if ((0, malloy_1.
|
|
211
|
+
else if ((0, malloy_1.isScalarArray)(colSchema)) {
|
|
212
212
|
const elType = colSchema.elementTypeDef;
|
|
213
213
|
let theArray = this.unpackArray(rawRow);
|
|
214
214
|
if (elType.type === 'array') {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@malloydata/db-trino",
|
|
3
|
-
"version": "0.0.220-
|
|
3
|
+
"version": "0.0.220-dev241206021955",
|
|
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.220-
|
|
25
|
+
"@malloydata/malloy": "^0.0.220-dev241206021955",
|
|
26
26
|
"@prestodb/presto-js-client": "^1.0.0",
|
|
27
27
|
"gaxios": "^4.2.0",
|
|
28
28
|
"trino-client": "^0.2.2"
|