We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
it took me a while to figure out the culprit, it is only when using deltalake 0.17.4
!pip install duckdb --upgrade !pip install deltalake==0.17.4 import duckdb from deltalake import convert_to_deltalake duckdb.sql(f"CALL dbgen(sf=0.1) ") duckdb.sql(f""" COPY (SELECT * FROM nation) TO './nation' (FORMAT PARQUET,PER_THREAD_OUTPUT TRUE) """) convert_to_deltalake('./nation') duckdb.sql(f''' SELECT count(*) FROM delta_scan('./nation') ''')
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
it took me a while to figure out the culprit, it is only when using deltalake 0.17.4
The text was updated successfully, but these errors were encountered: