File tree Expand file tree Collapse file tree
src/main/java/org/ohnlp/backbone/io/jdbc Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3131 <parent >
3232 <groupId >org.ohnlp.backbone</groupId >
3333 <artifactId >backbone-parent</artifactId >
34- <version >3.0.16 </version >
34+ <version >3.0.17 </version >
3535 </parent >
3636
3737 <artifactId >api</artifactId >
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >org.ohnlp.backbone</groupId >
99 <artifactId >backbone-parent</artifactId >
10- <version >3.0.16 </version >
10+ <version >3.0.17 </version >
1111 </parent >
1212
1313 <artifactId >core</artifactId >
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >org.ohnlp.backbone</groupId >
99 <artifactId >backbone-parent</artifactId >
10- <version >3.0.16 </version >
10+ <version >3.0.17 </version >
1111 </parent >
1212
1313 <artifactId >example-backbone-configs</artifactId >
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >org.ohnlp.backbone</groupId >
99 <artifactId >backbone-parent</artifactId >
10- <version >3.0.16 </version >
10+ <version >3.0.17 </version >
1111 </parent >
1212
1313 <groupId >org.ohnlp.backbone.io</groupId >
Original file line number Diff line number Diff line change @@ -216,7 +216,11 @@ private String[] findPaginationOrderingColumns(String query) throws ComponentIni
216216 }
217217 if (this .identifierCol != null ) {
218218 // User-supplied identifier column exists, make sure it actually exists in query results
219- if (!colNameToIndex .containsKey (this .identifierCol )) {
219+ String toCheck = this .identifierCol ;
220+ if (this .identifierCol .startsWith ("\" " ) && this .identifierCol .endsWith ("\" " )) {
221+ toCheck = toCheck .substring (1 , toCheck .length () - 1 );
222+ }
223+ if (!colNameToIndex .containsKey (toCheck )) {
220224 throw new ComponentInitializationException (
221225 new IllegalArgumentException ("The supplied identifier_col " + this .identifierCol + " " +
222226 "does not exist in the returned query results. Available columns: " +
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >org.ohnlp.backbone</groupId >
99 <artifactId >backbone-parent</artifactId >
10- <version >3.0.16 </version >
10+ <version >3.0.17 </version >
1111 </parent >
1212
1313 <artifactId >plugin-manager</artifactId >
Original file line number Diff line number Diff line change 77 <parent >
88 <groupId >org.ohnlp.backbone</groupId >
99 <artifactId >backbone-parent</artifactId >
10- <version >3.0.16 </version >
10+ <version >3.0.17 </version >
1111 </parent >
1212
1313 <groupId >org.ohnlp.backbone.transforms</groupId >
Original file line number Diff line number Diff line change 66
77 <groupId >org.ohnlp.backbone</groupId >
88 <artifactId >backbone-parent</artifactId >
9- <version >3.0.16 </version >
9+ <version >3.0.17 </version >
1010
1111
1212 <properties >
You can’t perform that action at this time.
0 commit comments