xigongxiaoche opened a new issue, #31236:
URL: https://github.com/apache/shardingsphere/issues/31236
## Bug Report
oracle sql parse failed, but the failed sql can execute in oracle, the
failed sql is vaild in antlr rule
failed sql:
select age from (select '0-1岁' age,count(*) countNum, '0' sortNum from
T_EMPI_PATIENT_INFO t where t.birth > to_char((sysdate - interval '1' year(3)),
'yyyymmdd'))
success sql:
select '0-1岁' age,count(*) countNum, '0' sortNum from T_EMPI_PATIENT_INFO t
where t.birth > to_char((sysdate - interval '1' year(3)), 'yyyymmdd')
select age from (select '0-1岁' age,count(*) countNum, '0' sortNum from
T_EMPI_PATIENT_INFO t)
## version
shardingsphere version: 5.3.2
oracle verion: oracle 11g
## stacktrace
```
Exception in thread "main"
org.apache.shardingsphere.sql.parser.exception.SQLParsingException: You have an
error in your SQL syntax: select age from (select '0-1岁' age,count(*) countNum,
'0' sortNum from T_EMPI_PATIENT_INFO t where t.birth > to_char((sysdate -
interval '1' year(3)), 'yyyymmdd')), no viable alternative at input
'selectagefrom(select'0-1岁'age,count(*)countNum,'0'sortNumfromT_EMPI_PATIENT_INFOtwheret.birth>to_char((sysdate-interval'1''
at line 1, position 137, near [@30,137:139=''1'',<1001>,1:137]
at
org.apache.shardingsphere.sql.parser.core.database.parser.SQLParserExecutor.twoPhaseParse(SQLParserExecutor.java:70)
at
org.apache.shardingsphere.sql.parser.core.database.parser.SQLParserExecutor.parse(SQLParserExecutor.java:49)
at
org.apache.shardingsphere.sql.parser.api.SQLParserEngine.parse(SQLParserEngine.java:47)
at
org.apache.shardingsphere.infra.parser.sql.SQLStatementParserExecutor.parse(SQLStatementParserExecutor.java:48)
at
org.apache.shardingsphere.infra.parser.cache.SQLStatementCacheLoader.load(SQLStatementCacheLoader.java:41)
at
org.apache.shardingsphere.infra.parser.cache.SQLStatementCacheLoader.load(SQLStatementCacheLoader.java:30)
at
com.github.benmanes.caffeine.cache.LocalLoadingCache.lambda$newMappingFunction$2(LocalLoadingCache.java:145)
at
com.github.benmanes.caffeine.cache.BoundedLocalCache.lambda$doComputeIfAbsent$14(BoundedLocalCache.java:2406)
at
java.base/java.util.concurrent.ConcurrentHashMap.compute(ConcurrentHashMap.java:1916)
at
com.github.benmanes.caffeine.cache.BoundedLocalCache.doComputeIfAbsent(BoundedLocalCache.java:2404)
at
com.github.benmanes.caffeine.cache.BoundedLocalCache.computeIfAbsent(BoundedLocalCache.java:2387)
at
com.github.benmanes.caffeine.cache.LocalCache.computeIfAbsent(LocalCache.java:108)
at
com.github.benmanes.caffeine.cache.LocalLoadingCache.get(LocalLoadingCache.java:56)
at
org.apache.shardingsphere.infra.parser.sql.SQLStatementParserEngine.parse(SQLStatementParserEngine.java:47)
at
org.apache.shardingsphere.infra.parser.ShardingSphereSQLParserEngine.parse(ShardingSphereSQLParserEngine.java:58)
at
org.apache.shardingsphere.driver.jdbc.core.statement.ShardingSpherePreparedStatement.<init>(ShardingSpherePreparedStatement.java:205)
at
org.apache.shardingsphere.driver.jdbc.core.statement.ShardingSpherePreparedStatement.<init>(ShardingSpherePreparedStatement.java:171)
at
org.apache.shardingsphere.driver.jdbc.core.connection.ShardingSphereConnection.prepareStatement(ShardingSphereConnection.java:87)
```
--
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]