Skip to content

Commit

Permalink
enable the test case
Browse files Browse the repository at this point in the history
  • Loading branch information
goldmedal committed Sep 19, 2024
1 parent 6cc3748 commit 637150d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wren-modeling-rs/core/src/mdl/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ mod test {
let analyzed_mdl = Arc::new(AnalyzedWrenMDL::analyze(mdl)?);

let tests: Vec<&str> = vec![
// "select orderkey + orderkey from test.test.orders",
"select orderkey + orderkey from test.test.orders",
"select orderkey from test.test.orders where orders.totalprice > 10",
"select orders.orderkey from test.test.orders left join test.test.customer on (orders.custkey = customer.custkey) where orders.totalprice > 10",
"select orderkey, sum(totalprice) from test.test.orders group by 1",
Expand Down

0 comments on commit 637150d

Please sign in to comment.