File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -684,7 +684,7 @@ fn parse_group_by_with_modifier() {
684
684
685
685
#[ test]
686
686
fn test_prewhere ( ) {
687
- match clickhouse ( ) . verified_stmt ( "SELECT * FROM t PREWHERE x = 1 WHERE y = 2" ) {
687
+ match clickhouse_and_generic ( ) . verified_stmt ( "SELECT * FROM t PREWHERE x = 1 WHERE y = 2" ) {
688
688
Statement :: Query ( query) => {
689
689
let prewhere = query. body . as_select ( ) . unwrap ( ) . prewhere . as_ref ( ) ;
690
690
assert_eq ! (
@@ -708,7 +708,7 @@ fn test_prewhere() {
708
708
_ => unreachable ! ( ) ,
709
709
}
710
710
711
- match clickhouse ( ) . verified_stmt ( "SELECT * FROM t PREWHERE x = 1 AND y = 2" ) {
711
+ match clickhouse_and_generic ( ) . verified_stmt ( "SELECT * FROM t PREWHERE x = 1 AND y = 2" ) {
712
712
Statement :: Query ( query) => {
713
713
let prewhere = query. body . as_select ( ) . unwrap ( ) . prewhere . as_ref ( ) ;
714
714
assert_eq ! (
You can’t perform that action at this time.
0 commit comments