-
-
Notifications
You must be signed in to change notification settings - Fork 115
New issue
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
Create pudl.duckdb
from parquet files
#3741
base: main
Are you sure you want to change the base?
Changes from all commits
11faecb
e090808
218460d
6649cfd
7ed930f
c94abf7
0eee1e1
c727735
75883dc
7344506
6662078
7aa56d7
9fbf4b2
98a137b
faeae02
f0b61f6
221ce77
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
"""empty message | ||
|
||
Revision ID: 33d66c56823a | ||
Revises: 52aa9f44b6a7, 7a16ce1fe774 | ||
Create Date: 2024-07-29 20:33:23.329220 | ||
|
||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = '33d66c56823a' | ||
down_revision = ('52aa9f44b6a7', '7a16ce1fe774') | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade() -> None: | ||
pass | ||
|
||
|
||
def downgrade() -> None: | ||
pass |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
create_duckdb()
orcreate_and_distribute_duckdb()
?(I have been loving the ShellCheck linter for VSCode)