dracoooooo opened a new issue, #1538: URL: https://github.com/apache/horaedb/issues/1538
### Describe this problem Queries involving multiple tables fail to find table in a cluster environment. ### Server version commit [0970b03](https://github.com/apache/horaedb/commit/0970b0386662bb477f4d96f1655e726c27f7d3eb) ### Steps to reproduce ```sql 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) SELECT * FROM `t1`, `t2`; Query OK, 0 rows affected (0.03 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" ``` ### Expected behavior No error ### Additional Information Use the same config as the integration test. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
