Fix FROZEN indices backport
This commit is contained in:
parent
9fdf4215dd
commit
a48125a9f7
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue