File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed
third_party/bigframes_vendored/tpch/queries Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -56,14 +56,6 @@ def q(dataset_id: str, session: bigframes.Session):
5656
5757 total = bpd .concat ([df1 , df2 ])
5858
59- # TODO(huanc): TEMPORARY CODE to force a fresh start. Currently,
60- # combining everything into a single query seems to trigger a bug
61- # causing incorrect results. This workaround involves writing to and
62- # then reading from BigQuery. Remove this once b/355714291 is
63- # resolved.
64- dest = total .to_gbq ()
65- total = bpd .read_gbq (dest )
66-
6759 total = total [(total ["L_SHIPDATE" ] >= var3 ) & (total ["L_SHIPDATE" ] <= var4 )]
6860 total ["VOLUME" ] = total ["L_EXTENDEDPRICE" ] * (1.0 - total ["L_DISCOUNT" ])
6961 total ["L_YEAR" ] = total ["L_SHIPDATE" ].dt .year
You can’t perform that action at this time.
0 commit comments