Skip to content
Snippets Groups Projects
Commit a739f0fa authored by gmantele's avatar gmantele
Browse files

ADQL: Provide the position of any column reference (column in ORDER and GROUP...

ADQL: Provide the position of any column reference (column in ORDER and GROUP BY) when returning a ParseException
parent 6aca85cf
No related branches found
No related tags found
No related merge requests found
...@@ -411,10 +411,11 @@ public class DBChecker implements QueryChecker { ...@@ -411,10 +411,11 @@ public class DBChecker implements QueryChecker {
else else
return null; return null;
}else }else
throw new ParseException("Column index out of bounds: " + index + " (must be between 1 and " + select.size() + ") !"); throw new ParseException("Column index out of bounds: " + index + " (must be between 1 and " + select.size() + ") !", colRef.getPosition());
}else{ }else{
ADQLColumn col = new ADQLColumn(colRef.getColumnName()); ADQLColumn col = new ADQLColumn(colRef.getColumnName());
col.setCaseSensitive(colRef.isCaseSensitive()); col.setCaseSensitive(colRef.isCaseSensitive());
col.setPosition(colRef.getPosition());
// search among the select_item aliases: // search among the select_item aliases:
if (col.getTableName() == null){ if (col.getTableName() == null){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment