ZmingZinnia opened a new issue, #29961: URL: https://github.com/apache/shardingsphere/issues/29961
## Question The preview info:  My yaml file is configured: ``` rules: - !SHARDING tables: question_app: actualDataNodes: ds_0.question_app_${0..15} tableStrategy: standard: shardingColumn: id shardingAlgorithmName: table_id_sharding question_step_app: actualDataNodes: ds_0.question_step_app_${0..15} tableStrategy: standard: shardingColumn: question_id shardingAlgorithmName: table_question_id_sharding bindingTables: - question_app shardingAlgorithms: table_id_sharding: type: INLINE props: algorithm-expression: question_app_${id % 16} allow-range-query-with-inline-sharding: true table_question_id_sharding: type: INLINE props: algorithm-expression: question_step_app_${question_id % 16} allow-range-query-with-inline-sharding: true - !SINGLE tables: - ds_0.user_app - ds_0.question_label - ds_0.question_step_label ``` Version: 5.4.1 I'm confused why it doesn't rewrite to the subtable. -- 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]
