Skip to content

Commit f5566b1

Browse files
Update 02155_h3_to_center_child.sql
1 parent 3ba05c6 commit f5566b1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/queries/0_stateless/02155_h3_to_center_child.sql

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
-- Tags: no-fasttest
22

3-
DROP TABLE IF EXISTS h3_indexes,
3+
DROP TABLE IF EXISTS h3_indexes;
44

55
--Note: id column just exists to keep the test results sorted.
66
-- Order is not guaranteed with h3_index or res columns as we test the same h3_index at various resolutions.
7-
CREATE TABLE h3_indexes (id UInt8, h3_index UInt64, res UInt8) ENGINE = Memory,
7+
CREATE TABLE h3_indexes (id UInt8, h3_index UInt64, res UInt8) ENGINE = Memory;
88
-- Test cases taken from fixture: https://github.com/uber/h3/blob/master/src/apps/testapps/testCellToCenterChild.c
99

1010
INSERT INTO h3_indexes VALUES
@@ -129,6 +129,6 @@ INSERT INTO h3_indexes VALUES
129129
(119,635158337624735807,15),
130130
(120,639661937252106247,15);
131131

132-
SELECT h3ToCenterChild(h3_index,res) FROM h3_indexes ORDER BY id,
132+
SELECT h3ToCenterChild(h3_index,res) FROM h3_indexes ORDER BY id;
133133

134-
DROP TABLE h3_indexes,
134+
DROP TABLE h3_indexes;

0 commit comments

Comments
 (0)