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
insert into from infile
Internal error. Message code "TableColumns" not supported.
When I try to execute
insert into MyTableName from infile 'file name' format CSVWithNames;
with the code
public static async Task ExecuteNonQueryAsync( this ClickHouseConnection connection, string commandText ) { await using (var command = connection.CreateCommand(commandText)) { await command.ExecuteNonQueryAsync(); } }
I get
System.NotSupportedException: 'Internal error. Message code "TableColumns" not supported.'
I can confirm that table and file exists. The same command started from clickhouse client works fine.
clickhouse client
did I miss somethind? Any ideas? Workarounds? I'm completely stuck here, because our ETL process is based on csv files and this cannot be changed.
Thanks!
The text was updated successfully, but these errors were encountered:
infile is not a part of the protocol.
infile
Sorry, something went wrong.
It is the nice feature to have like select from program in postgres.
But yes, according to docs it is clickhouse-client's feature.
No branches or pull requests
When I try to execute
with the code
I get
System.NotSupportedException: 'Internal error. Message code "TableColumns" not supported.'
I can confirm that table and file exists. The same command started from
clickhouse client
works fine.did I miss somethind? Any ideas? Workarounds? I'm completely stuck here, because our ETL process is based on csv files and this cannot be changed.
Thanks!
The text was updated successfully, but these errors were encountered: