Skip to content

Commit

Permalink
chore:test
Browse files Browse the repository at this point in the history
  • Loading branch information
Weijun-H committed Sep 27, 2024
1 parent 22c11d8 commit 21c9b32
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions tests/scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -583,15 +583,6 @@ async fn test_view_foreign_table(#[future(awt)] s3: S3, mut conn: PgConnection)

assert_eq!(res.0, 100);

let test: Vec<(String,)> = r#"
SELECT column_name
FROM information_schema.columns
WHERE table_name = 'trips';
"#
.fetch(&mut conn);

panic!("{:?}", test);

// cannot fully pushdown to DuckDB
r#"
CREATE TABLE rate_code (
Expand All @@ -616,7 +607,7 @@ async fn test_view_foreign_table(#[future(awt)] s3: S3, mut conn: PgConnection)
select *
from trips
join rate_code
on trips.vendorid = rate_code.id;
on trips.VendorID = rate_code.id;
"#
.execute_result(&mut conn);

Expand Down

0 comments on commit 21c9b32

Please sign in to comment.