Skip to content

Commit

Permalink
test(cubesql): Add forgotten logger and pushdown check in test (#8646)
Browse files Browse the repository at this point in the history
  • Loading branch information
mcheshkov authored Aug 29, 2024
1 parent 070e127 commit 1f59072
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions rust/cubesql/cubesql/src/compile/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,11 @@ mod tests {

#[tokio::test]
async fn test_coalesce_two_dimensions() {
if !Rewriter::sql_push_down_enabled() {
return;
}
init_testing_logger();

let query_plan = convert_select_to_query_plan(
// language=PostgreSQL
r#"
Expand Down

0 comments on commit 1f59072

Please sign in to comment.