You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
From duckdb cli
D CALL dbgen(sf =1);
D copy (select*from customer) to './tpch/customer.parquet';
D copy (select*from lineitem) to './tpch/lineitem.parquet';
D copy (select*from nation) to './tpch/nation.parquet';
D copy (select*from orders) to './tpch/orders.parquet';
D copy (select*from part) to './tpch/part.parquet';
D copy (select*from partsupp) to './tpch/partsupp.parquet';
D copy (select*from region) to './tpch/region.parquet';
D copy (select*from supplier) to './tpch/supplier.parquet';
Expected behavior
dtype should be Decimal(precision=15, scale=2), not 15.2
Additional context
duckdb version: v1.1.0
The text was updated successfully, but these errors were encountered:
universalmind303
changed the title
weird schema when reading parquet generated from duckdb
weird schema when reading parquet with decimal dtypes
Sep 24, 2024
Describe the bug
A clear and concise description of what the bug is.
To Reproduce
From duckdb cli
then from daft
Expected behavior
dtype should be
Decimal(precision=15, scale=2)
, not15.2
Additional context
duckdb version:
v1.1.0
The text was updated successfully, but these errors were encountered: