Skip to content

Commit

Permalink
Reverted end of file changes.
Browse files Browse the repository at this point in the history
Signed-off-by: Mitchell Gale <[email protected]>
  • Loading branch information
MitchellGale committed Jul 20, 2023
1 parent 7452fca commit 8a4e470
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,4 @@ public enum CommandType {
RARE
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -379,3 +379,4 @@ private static ExprValue exprReverse(ExprValue str) {
return new ExprStringValue(new StringBuilder(str.stringValue()).reverse().toString());
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,5 @@ public boolean isOrderdSelect() {
public boolean isSelectAll() {
return selectAll;
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,5 @@ public static DataRows buildDataRows(List<ColumnNode> columnNodes, List<BindingT

return new DataRows(bindingTuples.size(), bindingTuples.size(), rowList);
}
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -50,3 +50,4 @@ protected void accept0(SQLASTVisitor visitor) {
visitor.endVisit(this);
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,4 @@ private boolean isNotGroupBy(MySqlSelectQueryBlock query) {
}

}

Original file line number Diff line number Diff line change
Expand Up @@ -36,3 +36,4 @@ public boolean isNeighbors() {
return neighbors;
}
}

Original file line number Diff line number Diff line change
Expand Up @@ -392,3 +392,4 @@ private Matcher<PipelineAggregationBuilder> hasScript(String expectedCode) {
return hasFieldWithValue("script", "has script", is(new Script(expectedCode)));
}
}

0 comments on commit 8a4e470

Please sign in to comment.