@malloydata/db-duckdb 0.0.45-dev230623212532 → 0.0.45-dev230623224452
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.
|
@@ -53,6 +53,9 @@ class DuckDBWASMConnection extends duckdb_wasm_connection_1.DuckDBWASMConnection
|
|
|
53
53
|
async createHash(sqlCommand) {
|
|
54
54
|
return crypto_1.default.createHash('md5').update(sqlCommand).digest('hex');
|
|
55
55
|
}
|
|
56
|
+
async test() {
|
|
57
|
+
await this.runRawSQL('SELECT 1');
|
|
58
|
+
}
|
|
56
59
|
}
|
|
57
60
|
exports.DuckDBWASMConnection = DuckDBWASMConnection;
|
|
58
61
|
//# sourceMappingURL=duckdb_wasm_connection_node.js.map
|