@malloydata/db-trino 0.0.134-dev240320210539 → 0.0.134-dev240321184648
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
CHANGED
|
@@ -308,13 +308,8 @@ class TrinoConnection {
|
|
|
308
308
|
return job.getQueryResultsStream();
|
|
309
309
|
}*/
|
|
310
310
|
async estimateQueryCost(_sqlCommand) {
|
|
311
|
-
|
|
312
|
-
return {
|
|
313
|
-
queryCostBytes: Number(
|
|
314
|
-
dryRunResults.metadata.statistics.totalBytesProcessed
|
|
315
|
-
),
|
|
316
|
-
};*/
|
|
317
|
-
throw new Error('Not impld 6');
|
|
311
|
+
// TODO(figutierrez): Implement.
|
|
312
|
+
return {};
|
|
318
313
|
}
|
|
319
314
|
async executeSQLRaw(_sqlCommand) {
|
|
320
315
|
/*const result = await this.createTrinoJobAndGetResults(sqlCommand);
|
package/dist/trino_executor.js
CHANGED