We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 567c401 commit 70a97f8Copy full SHA for 70a97f8
APIJSON-Java-Server/APIJSONLibrary/src/main/java/zuo/biao/apijson/server/AbstractSQLConfig.java
@@ -535,7 +535,7 @@ public String getColumnString() throws Exception {
535
String alias;
536
int index;
537
for (int j = 0; j < ckeys.length; j++) {
538
- index = isColumn ? -1 : ckeys[j].indexOf(":"); //StringUtil.split返回数组中,子项不会有null
+ index = ckeys[j].lastIndexOf(":"); //StringUtil.split返回数组中,子项不会有null
539
origin = index < 0 ? ckeys[j] : ckeys[j].substring(0, index);
540
alias = index < 0 ? null : ckeys[j].substring(index + 1);
541
0 commit comments