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
0.7.3
import from csv may be garbled .
create table books ( title VARCHAR(255), author VARCHAR(255), date VARCHAR(255) );
echo curl -H \"insert_sql:insert into book_db.books format CSV\" -H \"skip_header:0\" -H \"field_delimiter:','\" -H \"record_delimiter:'\n'\" -F \"upload=@./books_gbk.csv\" -XPUT http://127.0.0.1:8081/v1/streaming_load|bash
books.zip
The text was updated successfully, but these errors were encountered:
You can use iconv -f GBK -t UTF-8 a_gbk.csv -o b_utf8.csv to convert into utf8 format, databend can't detect the character encoding.
iconv -f GBK -t UTF-8 a_gbk.csv -o b_utf8.csv
Compressiongzip, bzip2 can be supported in the future.
gzip
bzip2
Sorry, something went wrong.
You can use iconv -f GBK -t UTF-8 a_gbk.csv -o b_utf8.csv to convert into utf8 format, databend can't detect the character encoding. Compressiongzip, bzip2 can be supported in the future.
if only support UTF-8, had better mention in the manual, and the tutorial also should do the conversion, the ontime csv is iso-8859-1, has non ascii.
btw, books_gbk.csv is converted with iconv for testing.
sundy-li
Successfully merging a pull request may close this issue.
Search before asking
Version
0.7.3
What's Wrong?
import from csv may be garbled .
What You Expected?
How to Reproduce?
books.zip
Anything Else?
Are you willing to submit PR?
The text was updated successfully, but these errors were encountered: