Skip to content

Commit

Permalink
docs: readme
Browse files Browse the repository at this point in the history
  • Loading branch information
aljazerzen committed Feb 24, 2024
1 parent 86b6400 commit 6737f0f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ without need for dynamic linking of C libraries.
| roundtrip: uint | x | x | x |
| roundtrip: float | x | x | x |
| roundtrip: decimal | x | | x |
| roundtrip: timestamp | x | x | |
| roundtrip: date | x | | |
| roundtrip: time | x | | |
| roundtrip: duration | x | | |
| roundtrip: timestamp | x | x | x |
| roundtrip: date | x | | x |
| roundtrip: time | x | | x |
| roundtrip: duration | x | | x |
| roundtrip: interval | | | |
| roundtrip: utf8 | x | x | x |
| roundtrip: binary | x | x | x |
Expand Down
1 change: 0 additions & 1 deletion connector_arrow/tests/it/spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ pub fn duration() -> Vec<ColumnSpec> {
)
}

#[allow(dead_code)]
pub fn interval() -> Vec<ColumnSpec> {
domains_to_batch_spec(
&[
Expand Down
5 changes: 5 additions & 0 deletions connector_arrow/tests/it/test_duckdb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ fn query_01() {
#[case::int("roundtrip::int", spec::int())]
#[case::uint("roundtrip::uint", spec::uint())]
#[case::float("roundtrip::float", spec::float())]
// #[case::decimal("roundtrip::decimal", spec::decimal())]
#[case::timestamp("roundtrip::timestamp", spec::timestamp())]
// #[case::date("roundtrip::date", spec::date())]
// #[case::time("roundtrip::time", spec::time())]
// #[case::duration("roundtrip::duration", spec::duration())]
// #[case::interval("roundtrip::interval", spec::interval())]
#[case::utf8("roundtrip::utf8", spec::utf8())]
#[case::binary("roundtrip::binary", spec::binary())]
fn roundtrip(#[case] table_name: &str, #[case] spec: spec::ArrowGenSpec) {
Expand Down
1 change: 1 addition & 0 deletions connector_arrow/tests/it/test_postgres_extended.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ fn query_02() {
#[case::date("roundtrip::date", spec::date())]
#[case::time("roundtrip::time", spec::time())]
#[case::duration("roundtrip::duration", spec::duration())]
// #[case::interval("roundtrip::interval", spec::interval())]
#[case::utf8("roundtrip::utf8", spec::utf8())]
#[case::binary("roundtrip::binary", spec::binary())]
fn roundtrip(#[case] table_name: &str, #[case] spec: spec::ArrowGenSpec) {
Expand Down
1 change: 1 addition & 0 deletions connector_arrow/tests/it/test_postgres_simple.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ fn query_02() {
#[case::date("roundtrip::date", spec::date())]
#[case::time("roundtrip::time", spec::time())]
#[case::duration("roundtrip::duration", spec::duration())]
// #[case::interval("roundtrip::interval", spec::interval())]
#[case::utf8("roundtrip::utf8", spec::utf8())]
#[case::binary("roundtrip::binary", spec::binary())]
fn roundtrip(#[case] table_name: &str, #[case] spec: spec::ArrowGenSpec) {
Expand Down
1 change: 1 addition & 0 deletions connector_arrow/tests/it/test_sqlite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ fn query_01() {
#[case::date("roundtrip::date", spec::date())]
#[case::time("roundtrip::time", spec::time())]
#[case::duration("roundtrip::duration", spec::duration())]
// #[case::interval("roundtrip::interval", spec::interval())]
#[case::utf8("roundtrip::utf8", spec::utf8())]
#[case::binary("roundtrip::binary", spec::binary())]
fn roundtrip(#[case] table_name: &str, #[case] spec: spec::ArrowGenSpec) {
Expand Down

0 comments on commit 6737f0f

Please sign in to comment.