@malloydata/db-bigquery 0.0.220-dev241205013400 → 0.0.220-dev241205182408

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.
@@ -362,14 +362,7 @@ class BigQueryConnection extends connection_1.BaseConnection {
362
362
  // Malloy treats repeated values as an array of scalars.
363
363
  const malloyType = this.dialect.sqlTypeToMalloyType(type);
364
364
  if (malloyType) {
365
- const arrayField = {
366
- ...structShared,
367
- type: 'array',
368
- elementTypeDef: malloyType,
369
- join: 'many',
370
- fields: (0, malloy_1.arrayEachFields)(malloyType),
371
- };
372
- structDef.fields.push(arrayField);
365
+ structDef.fields.push((0, malloy_1.mkArrayDef)(malloyType, name, this.dialectName));
373
366
  }
374
367
  }
375
368
  else if (isRecord) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/db-bigquery",
3
- "version": "0.0.220-dev241205013400",
3
+ "version": "0.0.220-dev241205182408",
4
4
  "license": "MIT",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -25,7 +25,7 @@
25
25
  "@google-cloud/bigquery": "^7.3.0",
26
26
  "@google-cloud/common": "^5.0.1",
27
27
  "@google-cloud/paginator": "^5.0.0",
28
- "@malloydata/malloy": "^0.0.220-dev241205013400",
28
+ "@malloydata/malloy": "^0.0.220-dev241205182408",
29
29
  "gaxios": "^4.2.0"
30
30
  }
31
31
  }