Skip to content

Commit

Permalink
issue #346 minor change
Browse files Browse the repository at this point in the history
Signed-off-by: Albert Wang <xuwang@us.ibm.com>
  • Loading branch information
albertwang-ibm committed Nov 6, 2019
1 parent c336579 commit e411e5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class InclusionQuerySegmentAggregator extends QuerySegmentAggregator {
private static final String SELECT_ROOT = "SELECT RESOURCE_ID, LOGICAL_RESOURCE_ID, VERSION_ID, LAST_UPDATED, IS_DELETED, DATA, LOGICAL_ID FROM ";
private static final String UNION_ALL = " UNION ALL ";
private static final String REVINCLUDE_JOIN = "JOIN {0}_STR_VALUES P1 ON P1.LOGICAL_RESOURCE_ID = R.LOGICAL_RESOURCE_ID ";
protected static final String ORDERING = " ORDER BY R.LOGICAL_RESOURCE_ID ASC ";
private static final String ORDERING = " ORDER BY R.LOGICAL_RESOURCE_ID ASC ";

private List<InclusionParameter> includeParameters;
private List<InclusionParameter> revIncludeParameters;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class QuerySegmentAggregator {
protected static final String ON = " ON ";
private static final String AND = " AND ";
protected static final String COMBINED_RESULTS = " COMBINED_RESULTS";
protected static final String DEFAULT_ORDERING = " ORDER BY R.RESOURCE_ID ASC ";
private static final String DEFAULT_ORDERING = " ORDER BY R.RESOURCE_ID ASC ";

protected Class<?> resourceType;

Expand Down

0 comments on commit e411e5a

Please sign in to comment.