@@ -2697,7 +2697,7 @@ pub enum PipeOperator {
26972697 /// See more at <https://cloud.google.com/bigquery/docs/reference/standard-sql/pipe-syntax#union_pipe_operator>
26982698 Union {
26992699 set_quantifier : SetQuantifier ,
2700- queries : Vec < Box < Query > > ,
2700+ queries : Vec < Query > ,
27012701 } ,
27022702 /// Returns only the rows that are present in both the input table and the specified tables.
27032703 ///
@@ -2706,7 +2706,7 @@ pub enum PipeOperator {
27062706 /// See more at <https://cloud.google.com/bigquery/docs/reference/standard-sql/pipe-syntax#intersect_pipe_operator>
27072707 Intersect {
27082708 set_quantifier : SetQuantifier ,
2709- queries : Vec < Box < Query > > ,
2709+ queries : Vec < Query > ,
27102710 } ,
27112711 /// Returns only the rows that are present in the input table but not in the specified tables.
27122712 ///
@@ -2715,7 +2715,7 @@ pub enum PipeOperator {
27152715 /// See more at <https://cloud.google.com/bigquery/docs/reference/standard-sql/pipe-syntax#except_pipe_operator>
27162716 Except {
27172717 set_quantifier : SetQuantifier ,
2718- queries : Vec < Box < Query > > ,
2718+ queries : Vec < Query > ,
27192719 } ,
27202720 /// Calls a table function or procedure that returns a table.
27212721 ///
@@ -2873,7 +2873,7 @@ impl PipeOperator {
28732873 f : & mut fmt:: Formatter < ' _ > ,
28742874 operation : & str ,
28752875 set_quantifier : & SetQuantifier ,
2876- queries : & [ Box < Query > ] ,
2876+ queries : & [ Query ] ,
28772877 ) -> fmt:: Result {
28782878 write ! ( f, "{}" , operation) ?;
28792879 match set_quantifier {
0 commit comments