@malloydata/malloy-tests 0.0.207 → 0.0.208-dev241104210539
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/package.json
CHANGED
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
23
|
"@jest/globals": "^29.4.3",
|
|
24
|
-
"@malloydata/db-bigquery": "^0.0.
|
|
25
|
-
"@malloydata/db-duckdb": "^0.0.
|
|
26
|
-
"@malloydata/db-postgres": "^0.0.
|
|
27
|
-
"@malloydata/db-snowflake": "^0.0.
|
|
28
|
-
"@malloydata/db-trino": "^0.0.
|
|
29
|
-
"@malloydata/malloy": "^0.0.
|
|
30
|
-
"@malloydata/render": "^0.0.
|
|
24
|
+
"@malloydata/db-bigquery": "^0.0.208-dev241104210539",
|
|
25
|
+
"@malloydata/db-duckdb": "^0.0.208-dev241104210539",
|
|
26
|
+
"@malloydata/db-postgres": "^0.0.208-dev241104210539",
|
|
27
|
+
"@malloydata/db-snowflake": "^0.0.208-dev241104210539",
|
|
28
|
+
"@malloydata/db-trino": "^0.0.208-dev241104210539",
|
|
29
|
+
"@malloydata/malloy": "^0.0.208-dev241104210539",
|
|
30
|
+
"@malloydata/render": "^0.0.208-dev241104210539",
|
|
31
31
|
"events": "^3.3.0",
|
|
32
32
|
"jsdom": "^22.1.0",
|
|
33
33
|
"luxon": "^2.4.0",
|
|
@@ -37,5 +37,5 @@
|
|
|
37
37
|
"@types/jsdom": "^21.1.1",
|
|
38
38
|
"@types/luxon": "^2.4.0"
|
|
39
39
|
},
|
|
40
|
-
"version": "0.0.
|
|
40
|
+
"version": "0.0.208-dev241104210539"
|
|
41
41
|
}
|
|
@@ -1085,7 +1085,8 @@ SELECT row_to_json(finalStage) as row FROM __stage0 AS finalStage`);
|
|
|
1085
1085
|
test.when(
|
|
1086
1086
|
runtime.supportsNesting &&
|
|
1087
1087
|
runtime.dialect.readsNestedData &&
|
|
1088
|
-
databaseName !== 'presto'
|
|
1088
|
+
databaseName !== 'presto' &&
|
|
1089
|
+
databaseName !== 'trino'
|
|
1089
1090
|
)(`can unnest simply from file - ${databaseName}`, async () => {
|
|
1090
1091
|
await expect(`
|
|
1091
1092
|
source: ga_sample is ${databaseName}.table('malloytest.ga_sample')
|
|
@@ -1099,7 +1100,8 @@ SELECT row_to_json(finalStage) as row FROM __stage0 AS finalStage`);
|
|
|
1099
1100
|
test.when(
|
|
1100
1101
|
runtime.supportsNesting &&
|
|
1101
1102
|
runtime.dialect.readsNestedData &&
|
|
1102
|
-
databaseName !== 'presto'
|
|
1103
|
+
databaseName !== 'presto' &&
|
|
1104
|
+
databaseName !== 'trino'
|
|
1103
1105
|
)(`can unnest from file - ${databaseName}`, async () => {
|
|
1104
1106
|
await expect(`
|
|
1105
1107
|
source: ga_sample is ${databaseName}.table('malloytest.ga_sample')
|
|
@@ -1119,7 +1121,8 @@ SELECT row_to_json(finalStage) as row FROM __stage0 AS finalStage`);
|
|
|
1119
1121
|
test.when(
|
|
1120
1122
|
runtime.supportsNesting &&
|
|
1121
1123
|
runtime.dialect.readsNestedData &&
|
|
1122
|
-
databaseName !== 'presto'
|
|
1124
|
+
databaseName !== 'presto' &&
|
|
1125
|
+
databaseName !== 'trino'
|
|
1123
1126
|
)(`can double unnest - ${databaseName}`, async () => {
|
|
1124
1127
|
await expect(`
|
|
1125
1128
|
source: ga_sample is ${databaseName}.table('malloytest.ga_sample')
|