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
Summary
Description for this feature.
Support create/describe stage.
Stage is a special table with some specific storage config.
Stage
We can upload files into the stage or unload the data from tables into files in the stage.
Refer to snowflake's stage doc: https://docs.snowflake.com/en/sql-reference/sql/create-stage.html
Firstly we implement the first stage command like:
CREATE [ OR REPLACE ] STAGE [ IF NOT EXISTS ] <stage_name> stage_params [ FILE_FORMAT = ( FORMAT = {CSV | JSON | PARQUET} [ formatOptions ] ) } ] [ COMMENT = '<string_literal>' ] stage_params ::= -- for S3 currently URL = 's3://<bucket>[/<path>/]' ACCESS_KEY_ID='<string_literal>' AECRET_ACCESS_KEY='<string_literal>' formatOptions ::= -- If TYPE = CSV COMPRESSION = AUTO | GZIP | BZ2 | BROTLI | ZSTD | DEFLATE | RAW_DEFLATE | NONE RECORD_DELIMITER = '<character>' | NONE -- If TYPE = Parquet COMPRESSION = AUTO | LZO | SNAPPY | NONE
The text was updated successfully, but these errors were encountered:
/assignme
Sorry, something went wrong.
CREATE STAGE
@GrapeBaBa Hi, did you still work on this? I would like to continue it myself before releasing v0.6.
@sundy-li I think I can finish it by the end of this week. If it is not ok, you can take it.
Ok, I'll wait for it, feel free to submit a draft pr then I'll try to collaborate with you.
@sundy-li need one more day to add tests
GrapeBaBa
Successfully merging a pull request may close this issue.
Summary
Description for this feature.
Support create/describe stage.
Stage
is a special table with some specific storage config.We can upload files into the stage or unload the data from tables into files in the stage.
Refer to snowflake's stage doc: https://docs.snowflake.com/en/sql-reference/sql/create-stage.html
Firstly we implement the first stage command like:
The text was updated successfully, but these errors were encountered: