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
todo
copy into table
copy from select
auto cast
copy from select (much more general)
insert to view( the view do some transform before insert to table)
The text was updated successfully, but these errors were encountered:
for streaming load:
what about add a table function stream : Insert into table 1 from ( select * from stream(format=>’parquet’) )
stream
but streaming_load has another issue:
schema of file cannot be inferred during parse...
while as a table to select, we always need some schema in advance.
table
which means for streaming_load
Sorry, something went wrong.
No branches or pull requests
Summary
todo
copy into table
all use ParquetTable Instead of StageTable, (parquet unload and streaming load still need StageTable)the following is out-of-date, we mainly rely on
copy from select
auto cast
copy from select (much more general)
insert to view( the view do some transform before insert to table)
The text was updated successfully, but these errors were encountered: