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):
56
56
57
57
total = bpd .concat ([df1 , df2 ])
58
58
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
-
67
59
total = total [(total ["L_SHIPDATE" ] >= var3 ) & (total ["L_SHIPDATE" ] <= var4 )]
68
60
total ["VOLUME" ] = total ["L_EXTENDEDPRICE" ] * (1.0 - total ["L_DISCOUNT" ])
69
61
total ["L_YEAR" ] = total ["L_SHIPDATE" ].dt .year
You can’t perform that action at this time.
0 commit comments