Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: support TPC-H Q9 #761

Merged
merged 10 commits into from
Jan 10, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
special tpch test for v1
Signed-off-by: Runji Wang <wangrunji0408@163.com>
  • Loading branch information
wangrunji0408 committed Jan 9, 2023
commit 2316b6c1b7c39b868034ddcc354215bd5c11bdde
8 changes: 8 additions & 0 deletions tests/sql/tpch/tpch_v1.slt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
include _create.slt
include _insert.slt
include _q1.slt
include _q3.slt
include _q5.slt
include _q6.slt
include _q10.slt
include _drop.slt
2 changes: 1 addition & 1 deletion tests/sqllogictest/tests/sqllogictest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fn main() {
const PATTERN: &str = "tests/sql/**/[!_]*.slt"; // ignore files start with '_'
const MEM_BLOCKLIST: &[&str] = &["statistics.slt"];
const DISK_BLOCKLIST: &[&str] = &[];
const V1_BLOCKLIST: &[&str] = &["subquery.slt"];
const V1_BLOCKLIST: &[&str] = &["subquery.slt", "tpch.slt"];

let mut tests = vec![];

Expand Down