@@ -511,6 +511,7 @@ fn parse_select_count_wildcard() {
511511 over: None ,
512512 distinct: false ,
513513 special: false ,
514+ approximate: false ,
514515 } ) ,
515516 expr_from_projection( only( & select. projection) )
516517 ) ;
@@ -530,6 +531,7 @@ fn parse_select_count_distinct() {
530531 over: None ,
531532 distinct: true ,
532533 special: false ,
534+ approximate: false ,
533535 } ) ,
534536 expr_from_projection( only( & select. projection) )
535537 ) ;
@@ -1335,6 +1337,7 @@ fn parse_select_having() {
13351337 over: None ,
13361338 distinct: false ,
13371339 special: false ,
1340+ approximate: false ,
13381341 } ) ) ,
13391342 op: BinaryOperator :: Gt ,
13401343 right: Box :: new( Expr :: Value ( number( "1" ) ) )
@@ -2325,6 +2328,7 @@ fn parse_scalar_function_in_projection() {
23252328 over: None ,
23262329 distinct: false ,
23272330 special: false ,
2331+ approximate: false ,
23282332 } ) ,
23292333 expr_from_projection( only( & select. projection) )
23302334 ) ;
@@ -2404,6 +2408,7 @@ fn parse_named_argument_function() {
24042408 over: None ,
24052409 distinct: false ,
24062410 special: false ,
2411+ approximate: false ,
24072412 } ) ,
24082413 expr_from_projection( only( & select. projection) )
24092414 ) ;
@@ -2438,6 +2443,7 @@ fn parse_window_functions() {
24382443 } ) ,
24392444 distinct: false ,
24402445 special: false ,
2446+ approximate: false ,
24412447 } ) ,
24422448 expr_from_projection( & select. projection[ 0 ] )
24432449 ) ;
@@ -2547,6 +2553,7 @@ fn parse_expr_interval() {
25472553 over : None ,
25482554 distinct : false ,
25492555 special : false ,
2556+ approximate : false ,
25502557 } ) ;
25512558
25522559 assert_eq ! (
@@ -2579,6 +2586,7 @@ fn parse_expr_interval() {
25792586 over : None ,
25802587 distinct : false ,
25812588 special : false ,
2589+ approximate : false ,
25822590 } ) ;
25832591 assert_eq ! (
25842592 & Expr :: Value ( Value :: Interval {
@@ -2724,6 +2732,7 @@ fn parse_at_timezone() {
27242732 over: None ,
27252733 distinct: false ,
27262734 special: false ,
2735+ approximate: false ,
27272736 } ) ) ,
27282737 time_zone: "UTC-06:00" . to_string( )
27292738 } ,
@@ -2750,6 +2759,7 @@ fn parse_at_timezone() {
27502759 over: None ,
27512760 distinct: false ,
27522761 special: false ,
2762+ approximate: false ,
27532763 } , ) ) ,
27542764 time_zone: "UTC-06:00" . to_string( ) ,
27552765 } , ) , ) ,
@@ -2760,6 +2770,7 @@ fn parse_at_timezone() {
27602770 over: None ,
27612771 distinct: false ,
27622772 special: false ,
2773+ approximate: false ,
27632774 } , ) ,
27642775 alias: Ident {
27652776 value: "hour" . to_string( ) ,
@@ -2796,6 +2807,7 @@ fn parse_table_function() {
27962807 over : None ,
27972808 distinct : false ,
27982809 special : false ,
2810+ approximate : false ,
27992811 } ) ;
28002812 assert_eq ! ( expr, expected_expr) ;
28012813 assert_eq ! ( alias, table_alias( "a" ) )
@@ -2853,6 +2865,7 @@ fn parse_delimited_identifiers() {
28532865 over: None ,
28542866 distinct: false ,
28552867 special: false ,
2868+ approximate: false ,
28562869 } ) ,
28572870 expr_from_projection( & select. projection[ 1 ] ) ,
28582871 ) ;
@@ -4763,6 +4776,7 @@ fn parse_time_functions() {
47634776 over: None ,
47644777 distinct: false ,
47654778 special: false ,
4779+ approximate: false ,
47664780 } ) ,
47674781 expr_from_projection( & select. projection[ 0 ] )
47684782 ) ;
@@ -4779,6 +4793,7 @@ fn parse_time_functions() {
47794793 over: None ,
47804794 distinct: false ,
47814795 special: false ,
4796+ approximate: false ,
47824797 } ) ,
47834798 expr_from_projection( & select. projection[ 0 ] )
47844799 ) ;
@@ -4795,6 +4810,7 @@ fn parse_time_functions() {
47954810 over: None ,
47964811 distinct: false ,
47974812 special: false ,
4813+ approximate: false ,
47984814 } ) ,
47994815 expr_from_projection( & select. projection[ 0 ] )
48004816 ) ;
@@ -4811,6 +4827,7 @@ fn parse_time_functions() {
48114827 over: None ,
48124828 distinct: false ,
48134829 special: false ,
4830+ approximate: false ,
48144831 } ) ,
48154832 expr_from_projection( & select. projection[ 0 ] )
48164833 ) ;
@@ -4827,6 +4844,7 @@ fn parse_time_functions() {
48274844 over: None ,
48284845 distinct: false ,
48294846 special: false ,
4847+ approximate: false ,
48304848 } ) ,
48314849 expr_from_projection( & select. projection[ 0 ] )
48324850 ) ;
0 commit comments