Skip to content

Commit

Permalink
Fix FROZEN indices backport
Browse files Browse the repository at this point in the history
  • Loading branch information
costin committed May 23, 2019
1 parent 9fdf421 commit a48125a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions x-pack/plugin/sql/qa/src/main/resources/geo/geosql.csv-spec
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
showTables
SHOW TABLES "geo";

name:s | type:s
geo |BASE TABLE
name:s | type:s | kind:s
geo |BASE TABLE |INDEX
;

// DESCRIBE
Expand Down
4 changes: 2 additions & 2 deletions x-pack/plugin/sql/qa/src/main/resources/ogc/ogc.csv-spec
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
showTables
SHOW TABLES "ogc";

name:s | type:s
ogc |BASE TABLE
name:s | type:s | kind:s
ogc |BASE TABLE |INDEX
;

// DESCRIBE
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ class LocalAggregationSorterListener implements ActionListener<SchemaRowSet> {
}
}

this.data = new PriorityQueue<>(size) {
this.data = new PriorityQueue<Tuple<List<?>, Integer>>(size) {

// compare row based on the received attribute sort
// if a sort item is not in the list, it is assumed the sorting happened in ES
Expand Down

0 comments on commit a48125a

Please sign in to comment.