mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
17 lines
567 B
MySQL
17 lines
567 B
MySQL
|
-- Tags: no-unbundled, no-fasttest
|
||
|
|
||
|
DROP TABLE IF EXISTS h3_indexes;
|
||
|
|
||
|
CREATE TABLE h3_indexes (h3_index UInt64) ENGINE = Memory;
|
||
|
|
||
|
-- test H3 indexes from: https://github.com/uber/h3-java/blob/master/src/test/java/com/uber/h3core/TestInspection.java#L57
|
||
|
|
||
|
INSERT INTO h3_indexes VALUES (geoToH3(0.0, 0.0, 0));
|
||
|
INSERT INTO h3_indexes VALUES (geoToH3(10.0, 0.0, 1));
|
||
|
INSERT INTO h3_indexes VALUES (geoToH3(0.0, 10.0, 2));
|
||
|
INSERT INTO h3_indexes VALUES (geoToH3(10.0, 10.0, 3));
|
||
|
|
||
|
SELECT h3IsResClassIII(h3_index) FROM h3_indexes ORDER BY h3_index;
|
||
|
|
||
|
DROP TABLE h3_indexes;
|