mirror of
https://github.com/Kaelio/ktx.git
synced 2026-07-04 10:52:13 +02:00
feat: wire duckdb through cli runtime
This commit is contained in:
parent
22ad9dca99
commit
460c6fae63
17 changed files with 308 additions and 8 deletions
|
|
@ -41,6 +41,7 @@ export interface KtxConnectionDeps {
|
|||
|
||||
const SUPPORTED_TEST_DRIVERS = [
|
||||
'sqlite',
|
||||
'duckdb',
|
||||
'postgres',
|
||||
'mysql',
|
||||
'clickhouse',
|
||||
|
|
@ -276,6 +277,7 @@ async function testConnectionByDriver(
|
|||
if (
|
||||
driver === 'sqlite' ||
|
||||
driver === 'sqlite3' ||
|
||||
driver === 'duckdb' ||
|
||||
driver === 'postgres' ||
|
||||
driver === 'postgresql' ||
|
||||
driver === 'mysql' ||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue