Skip to content
Snippets Groups Projects
Commit a8d50581 authored by Julien Lopez's avatar Julien Lopez
Browse files

[MINOR] Typo

parent 5d5e7508
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ final class QIRSQLStringVisitor implements IQIRVisitor<String> {
public final String visit(final QIRGroupBy qirGroup) {
if (qirGroup.group instanceof QIRLambda)
return qirGroup.child.accept(this) + " group by " + ((QIRLambda) qirGroup.group).body.accept(this);
throw new QIRException("QIR SQL Group not implemented for group type: " + qirGroup.group.getClass());
throw new QIRException("QIR SQL GroupBy not implemented for group type: " + qirGroup.group.getClass());
}
@Override
......
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