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
druid 1.1.9
SQL: String sql = "SELECT name FROM employee WHERE no in ('1', '2');"; String sql = "SELECT name FROM employee WHERE no in (1, 2);";
String sql = "SELECT name FROM employee WHERE no in ('1', '2');";
String sql = "SELECT name FROM employee WHERE no in (1, 2);";
解析结果: coditions : [employee.no IN (1, 2)]
coditions : [employee.no IN (1, 2)]
存在的问题: 以上两个SQL中in列表元素不一样但是解析出的coditions却一样。解析结果中in列表元素去掉了引号,导致无法辨别原SQL中的in列表元素是否使用了引号。
修改意见: 解析结果in列表元素应保留原始格式。
The text was updated successfully, but these errors were encountered:
bug fixed for SchemaStatVisitor. for issue #2407
39b88a2
https://github.com/alibaba/druid/releases/tag/1.1.10 问题修复,请用新版本
Sorry, something went wrong.
No branches or pull requests
druid 1.1.9
SQL:
String sql = "SELECT name FROM employee WHERE no in ('1', '2');";
String sql = "SELECT name FROM employee WHERE no in (1, 2);";
解析结果:
coditions : [employee.no IN (1, 2)]
存在的问题:
以上两个SQL中in列表元素不一样但是解析出的coditions却一样。解析结果中in列表元素去掉了引号,导致无法辨别原SQL中的in列表元素是否使用了引号。
修改意见:
解析结果in列表元素应保留原始格式。
The text was updated successfully, but these errors were encountered: