should be it

This commit is contained in:
2025-10-24 19:21:19 -05:00
parent a4b23fc57c
commit f09560c7b1
14047 changed files with 3161551 additions and 1 deletions

View File

@@ -0,0 +1,33 @@
# name: test/sql/copy/parquet/lineitem_arrow.test
# description: Issue #2261: TPC-H Q6 fails on Parquet input
# group: [parquet]
require tpch
require parquet
statement ok
CREATE TABLE lineitem AS SELECT * FROM 'data/parquet-testing/arrow/lineitem-arrow.parquet'
query I nosort q01
PRAGMA tpch(1)
----
query I nosort q06
PRAGMA tpch(6)
----
statement ok
DROP TABLE lineitem
statement ok
CREATE VIEW lineitem AS SELECT * FROM 'data/parquet-testing/arrow/lineitem-arrow.parquet'
query I nosort q01
PRAGMA tpch(1)
----
query I nosort q06
PRAGMA tpch(6)
----