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
经真实项目使用,发现一下问题。 DB2数据库分页插件解析SQL的时候遇到with开头的递归SQL语句,报错,看了一下代码没有考虑到with开头的情况。 DB2数据库分页sql语句中,如果嵌套了 order by(多个order by) ,db2分页代码中判断order by代码为 int orderByIndex = sql.toLowerCase().indexOf("order by");会有问题。
The text was updated successfully, but these errors were encountered:
No branches or pull requests
经真实项目使用,发现一下问题。
DB2数据库分页插件解析SQL的时候遇到with开头的递归SQL语句,报错,看了一下代码没有考虑到with开头的情况。
DB2数据库分页sql语句中,如果嵌套了 order by(多个order by) ,db2分页代码中判断order by代码为
int orderByIndex = sql.toLowerCase().indexOf("order by");会有问题。
The text was updated successfully, but these errors were encountered: