Fix FROZEN indices backport

This commit is contained in:
Costin Leau 2019-05-23 21:30:41 +03:00
parent 9fdf4215dd
commit a48125a9f7
3 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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

View File

@ -180,7 +180,7 @@ public class Querier {
}
}
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