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
Queries involving multiple tables fail to find table in a cluster environment.
commit 0970b03
CREATE TABLE `t1` (`timestamp` timestamp NOT NULL, `value` int, `name` string, timestamp KEY (timestamp)) ENGINE=Analytic WITH( enable_ttl='false' ); Query OK, 0 rows affected (0.05 sec) CREATE TABLE `t2` (`timestamp` timestamp NOT NULL, `value` int, `name` string, timestamp KEY (timestamp)) ENGINE=Analytic WITH( enable_ttl='false' ); Query OK, 0 rows affected (0.04 sec) CREATE TABLE `t3` ( `timestamp` timestamp NOT NULL, `value` int, `name` string, timestamp KEY (timestamp)) ENGINE=Analytic WITH( enable_ttl='false' ); Query OK, 0 rows affected (0.06 sec) SELECT * FROM `t1`, `t2`, `t3`; ERROR 1105 (HY000): Failed to handle sql:SELECT * FROM `t1`, `t2`, `t3`, err:Rpc error, code:500, message:Failed to create plan, err:Failed to create plan, err:Failed to generate datafusion plan, err:Execution error: Table is not found, "table:t3"
No error
Use the same config as the integration test.
Cannot be 100% replicated, possibly due to the randomness of shard allocation?
The text was updated successfully, but these errors were encountered:
Yes, currently tables included in one query should be on same instance(an instance may have many shards).
Sorry, something went wrong.
No branches or pull requests
Describe this problem
Queries involving multiple tables fail to find table in a cluster environment.
Server version
commit 0970b03
Steps to reproduce
Expected behavior
No error
Additional Information
Use the same config as the integration test.
Cannot be 100% replicated, possibly due to the randomness of shard allocation?
The text was updated successfully, but these errors were encountered: