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
CREATE TABLE datatest.test1 ( id int(11) NOT NULL AUTO_INCREMENT, c1 varchar(32) NOT NULL, c2 varchar(32), PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 insert into datatest.`test1`(c1,c2) values ('a','b'); insert into datatest.`test1`(c1) values ('c');
CREATE DATABASE datatest ENGINE = MaterializeMySQL('localhost:3306', 'datatest', 'root', 'xxx');
query
select count(c1) from datatest.test1 where c2='b';
throw error
Code: 47, e.displayText() = DB::Exception: Missing columns: 'c2' while processing query: '_sign = 1, c1, c2', required columns: '_sign' 'c1' 'c2' '_sign' 'c1' 'c2' (version 21.6.5.37 (official build))
The text was updated successfully, but these errors were encountered:
tavplubix
No branches or pull requests
mysql
clickhouse (version 21.6.5.37 (official build))
query
throw error
The text was updated successfully, but these errors were encountered: