We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4368ed2 commit 4ab47edCopy full SHA for 4ab47ed
packages/cubejs-testing-drivers/test/databricks-jdbc-full.test.ts
@@ -1,4 +1,6 @@
1
-import * as https from "node:https";
+import * as https from 'node:https';
2
+
3
+import D from '@cubejs-backend/databricks-jdbc-driver';
4
5
import { testQueries } from '../src/tests/testQueries';
6
@@ -33,6 +35,15 @@ https.get(
33
35
}
34
36
);
37
38
+async function f() {
39
+ const source = new D();
40
+ console.log('test driver constructed');
41
+ const qRes = await source.query('SELECT 1 as foo;', []);
42
+ console.log('qRes', qRes);
43
+}
44
45
+f().catch(e => console.log('driver test query failed', e));
46
47
testQueries('databricks-jdbc', {
48
includeIncrementalSchemaSuite: true,
49
includeHLLSuite: true,
0 commit comments