Skip to content

Commit ad8263d

Browse files
authored
chore: fix tpch q5 (#984)
1 parent 22b483a commit ad8263d

File tree

2 files changed

+2
-2
lines changed
  • tests/benchmark/tpch
  • third_party/bigframes_vendored/tpch/queries

2 files changed

+2
-2
lines changed

tests/benchmark/tpch/q5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import pathlib
1515

1616
import benchmark.utils as utils
17-
import bigframes_vendored.tpch.queries.q1 as vendored_tpch_q5
17+
import bigframes_vendored.tpch.queries.q5 as vendored_tpch_q5
1818

1919
if __name__ == "__main__":
2020
dataset_id, session, suffix = utils.get_tpch_configuration()

third_party/bigframes_vendored/tpch/queries/q5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def q(dataset_id: str, session: bigframes.Session):
2323
index_col=bigframes.enums.DefaultIndexKind.NULL,
2424
)
2525
orders = session.read_gbq(
26-
f"bigframes-dev-perf.{dataset_id}.ORDERES",
26+
f"bigframes-dev-perf.{dataset_id}.ORDERS",
2727
index_col=bigframes.enums.DefaultIndexKind.NULL,
2828
)
2929
supplier = session.read_gbq(

0 commit comments

Comments
 (0)