mirror of
https://github.com/roapi/roapi.git
synced 2026-06-05 21:04:02 +08:00
bump dependencies
Some checks failed
build / build (push) Has been cancelled
build / build_ui (push) Has been cancelled
build / database_test (push) Has been cancelled
build / object_store_memory_test (push) Has been cancelled
build / object_store_direct_test (push) Has been cancelled
build / openssl_build (push) Has been cancelled
build / mac_cross_build (push) Has been cancelled
build / Docker Image Build (push) Has been cancelled
columnq-cli release / Validate git tag (push) Has been cancelled
roapi release / Validate git tag (push) Has been cancelled
columnq-cli release / macos (push) Has been cancelled
columnq-cli release / windows (map[features:database-sqlite python-architecture:x64 target:x86_64-pc-windows-msvc]) (push) Has been cancelled
columnq-cli release / linux (map[features:rustls,database-sqlite image_tag:aarch64-musl manylinux:2014 name_suffix: target:aarch64-unknown-linux-musl upload:true]) (push) Has been cancelled
columnq-cli release / linux (map[features:rustls,database-sqlite image_tag:x86_64-musl manylinux:2010 name_suffix: target:x86_64-unknown-linux-musl upload:true]) (push) Has been cancelled
columnq-cli release / PyPI Release (push) Has been cancelled
roapi release / macos (push) Has been cancelled
roapi release / windows (map[features:database-sqlite python-architecture:x64 target:x86_64-pc-windows-msvc]) (push) Has been cancelled
roapi release / linux (map[features:rustls,database-sqlite image_tag:aarch64-musl manylinux:2014 name_suffix: target:aarch64-unknown-linux-musl upload:true]) (push) Has been cancelled
roapi release / linux (map[features:rustls,database-sqlite image_tag:x86_64-musl manylinux:2010 name_suffix: target:x86_64-unknown-linux-musl upload:true]) (push) Has been cancelled
roapi release / PyPI Release (push) Has been cancelled
roapi release / Docker Image Release (push) Has been cancelled
Some checks failed
build / build (push) Has been cancelled
build / build_ui (push) Has been cancelled
build / database_test (push) Has been cancelled
build / object_store_memory_test (push) Has been cancelled
build / object_store_direct_test (push) Has been cancelled
build / openssl_build (push) Has been cancelled
build / mac_cross_build (push) Has been cancelled
build / Docker Image Build (push) Has been cancelled
columnq-cli release / Validate git tag (push) Has been cancelled
roapi release / Validate git tag (push) Has been cancelled
columnq-cli release / macos (push) Has been cancelled
columnq-cli release / windows (map[features:database-sqlite python-architecture:x64 target:x86_64-pc-windows-msvc]) (push) Has been cancelled
columnq-cli release / linux (map[features:rustls,database-sqlite image_tag:aarch64-musl manylinux:2014 name_suffix: target:aarch64-unknown-linux-musl upload:true]) (push) Has been cancelled
columnq-cli release / linux (map[features:rustls,database-sqlite image_tag:x86_64-musl manylinux:2010 name_suffix: target:x86_64-unknown-linux-musl upload:true]) (push) Has been cancelled
columnq-cli release / PyPI Release (push) Has been cancelled
roapi release / macos (push) Has been cancelled
roapi release / windows (map[features:database-sqlite python-architecture:x64 target:x86_64-pc-windows-msvc]) (push) Has been cancelled
roapi release / linux (map[features:rustls,database-sqlite image_tag:aarch64-musl manylinux:2014 name_suffix: target:aarch64-unknown-linux-musl upload:true]) (push) Has been cancelled
roapi release / linux (map[features:rustls,database-sqlite image_tag:x86_64-musl manylinux:2010 name_suffix: target:x86_64-unknown-linux-musl upload:true]) (push) Has been cancelled
roapi release / PyPI Release (push) Has been cancelled
roapi release / Docker Image Release (push) Has been cancelled
This commit is contained in:
parent
7c3f200fa4
commit
f01f6b4d9e
1345
Cargo.lock
generated
1345
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1061,7 +1061,7 @@ schema:
|
||||
fn test_table_name_from_path() {
|
||||
assert_eq!(
|
||||
table_name_from_path(
|
||||
&URIReference::try_from("mysql://root:123456@1.1.1.1:3306/test")
|
||||
URIReference::try_from("mysql://root:123456@1.1.1.1:3306/test")
|
||||
.unwrap()
|
||||
.path()
|
||||
),
|
||||
@ -1092,7 +1092,7 @@ schema:
|
||||
async fn test_load_sqlite_table_with_config() {
|
||||
use datafusion::common::stats::Precision;
|
||||
|
||||
for ext in vec!["db", "sqlite", "sqlite3"] {
|
||||
for ext in ["db", "sqlite", "sqlite3"] {
|
||||
let t: TableSource = serde_yaml::from_str(&format!(
|
||||
r#"
|
||||
name: "uk_cities"
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#[cfg(any(feature = "database-mysql"))]
|
||||
#[cfg(feature = "database-mysql")]
|
||||
mod mysql {
|
||||
use datafusion::datasource::TableProvider;
|
||||
use datafusion::prelude::SessionContext;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#[cfg(any(feature = "database-postgres"))]
|
||||
#[cfg(feature = "database-postgres")]
|
||||
mod postgres {
|
||||
use datafusion::datasource::TableProvider;
|
||||
use datafusion::prelude::SessionContext;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
#[cfg(any(feature = "database-sqlite"))]
|
||||
#[cfg(feature = "database-sqlite")]
|
||||
mod sqlite {
|
||||
use columnq::table::TableSource;
|
||||
use columnq::ColumnQ;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user