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
Here's how the reference tables are currently structured:
out/tables/generated/reference_table_1/ ├── delta │ ├── _delta_log │ │ ├── 00000000000000000000.json │ │ └── 00000000000000000001.json │ ├── part-00000-3411d322-e527-4412-a307-1b7200ee5969-c000.snappy.parquet │ └── part-00019-b68afb45-87bb-49f2-95e9-45774d154db4-c000.snappy.parquet ├── parquet │ └── table_content.parquet └── table-metadata.json
This could be better:
out/tables/generated/reference_table_1/ ├── delta │ ├── _delta_log │ │ ├── 00000000000000000000.json │ │ └── 00000000000000000001.json │ ├── part-00000-3411d322-e527-4412-a307-1b7200ee5969-c000.snappy.parquet │ └── part-00019-b68afb45-87bb-49f2-95e9-45774d154db4-c000.snappy.parquet ├── expected │ └── table_content_latest.parquet │ └── table_metadata_latest.json
This structure would also allow us to add files like table_content_v1.parquet, that'd allow us to make time travel reader tests as suggested in #8.
table_content_v1.parquet
The text was updated successfully, but these errors were encountered:
💯 great idea
Sorry, something went wrong.
No branches or pull requests
Here's how the reference tables are currently structured:
This could be better:
This structure would also allow us to add files like
table_content_v1.parquet
, that'd allow us to make time travel reader tests as suggested in #8.The text was updated successfully, but these errors were encountered: