File tree 2 files changed +8
-1
lines changed
src/main/java/com/akiban/sql/parser
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,13 @@ public String getCorrelationName() {
96
96
return correlationName ;
97
97
}
98
98
99
+ /**
100
+ * Set this table's correlation name.
101
+ */
102
+ public void setCorrelationName (String correlationName ) {
103
+ this .correlationName = correlationName ;
104
+ }
105
+
99
106
/**
100
107
* Convert this object to a String. See comments in QueryTreeNode.java
101
108
* for how this should be done for tree printing.
Original file line number Diff line number Diff line change @@ -197,7 +197,7 @@ public ResultColumn getResultColumn(String columnName) {
197
197
for (int index = 0 ; index < size ; index ++) {
198
198
ResultColumn resultColumn = get (index );
199
199
200
- if (columnName .equals (resultColumn .getName ())) {
200
+ if (columnName .equalsIgnoreCase (resultColumn .getName ())) {
201
201
return resultColumn ;
202
202
}
203
203
}
You can’t perform that action at this time.
0 commit comments