2021-11-21 10:58:26 +00:00
|
|
|
-- Tags: no-fasttest
|
2021-09-12 12:35:27 +00:00
|
|
|
|
2022-01-20 14:08:13 +00:00
|
|
|
SELECT h3ToChildren(599405990164561919, 16); -- { serverError 69 }
|
2020-01-24 20:16:06 +00:00
|
|
|
|
2022-01-20 14:08:13 +00:00
|
|
|
DROP TABLE IF EXISTS h3_indexes;
|
2020-01-24 20:16:06 +00:00
|
|
|
|
2022-01-20 14:08:13 +00:00
|
|
|
CREATE TABLE h3_indexes (h3_index UInt64, res UInt8) ENGINE = Memory;
|
|
|
|
|
|
|
|
INSERT INTO h3_indexes VALUES (599405990164561919, 3);
|
|
|
|
INSERT INTO h3_indexes VALUES (599405990164561919, 6);
|
|
|
|
INSERT INTO h3_indexes VALUES (599405990164561919, 8);
|
|
|
|
|
|
|
|
|
|
|
|
SELECT arraySort(h3ToChildren(h3_index,res)) FROM h3_indexes ORDER BY res;
|
|
|
|
|
|
|
|
DROP TABLE h3_indexes;
|