mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-01-12 18:07:53 +08:00
Update database connection smart cell definitions
This commit is contained in:
parent
b7d187b914
commit
74e1104656
1 changed files with 8 additions and 5 deletions
|
@ -17,7 +17,7 @@ defmodule Livebook.Runtime.Definitions do
|
||||||
|
|
||||||
kino_db = %{
|
kino_db = %{
|
||||||
name: "kino_db",
|
name: "kino_db",
|
||||||
dependency: %{dep: {:kino_db, "~> 0.2.10"}, config: []}
|
dependency: %{dep: {:kino_db, "~> 0.3.0"}, config: []}
|
||||||
}
|
}
|
||||||
|
|
||||||
exqlite = %{
|
exqlite = %{
|
||||||
|
@ -126,7 +126,7 @@ defmodule Livebook.Runtime.Definitions do
|
||||||
kino_db,
|
kino_db,
|
||||||
%{
|
%{
|
||||||
name: "adbc",
|
name: "adbc",
|
||||||
dependency: %{dep: {:adbc, ">= 0.0.0"}, config: []}
|
dependency: %{dep: {:adbc, ">= 0.0.0"}, config: [adbc: [drivers: [:duckdb]]]}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -135,8 +135,8 @@ defmodule Livebook.Runtime.Definitions do
|
||||||
packages: [
|
packages: [
|
||||||
kino_db,
|
kino_db,
|
||||||
%{
|
%{
|
||||||
name: "req_bigquery",
|
name: "adbc",
|
||||||
dependency: %{dep: {:req_bigquery, ">= 0.0.0"}, config: []}
|
dependency: %{dep: {:adbc, ">= 0.0.0"}, config: [adbc: [drivers: [:bigquery]]]}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
@ -159,7 +159,10 @@ defmodule Livebook.Runtime.Definitions do
|
||||||
packages: [
|
packages: [
|
||||||
kino_db,
|
kino_db,
|
||||||
kino_explorer,
|
kino_explorer,
|
||||||
%{name: "adbc", dependency: %{dep: {:adbc, ">= 0.0.0"}, config: []}}
|
%{
|
||||||
|
name: "adbc",
|
||||||
|
dependency: %{dep: {:adbc, ">= 0.0.0"}, config: [adbc: [drivers: [:snowflake]]]}
|
||||||
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
%{
|
%{
|
||||||
|
|
Loading…
Reference in a new issue