mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
33 lines
1.4 KiB
SQL
33 lines
1.4 KiB
SQL
-- Tags: no-fasttest
|
|
|
|
DROP TABLE IF EXISTS table1;
|
|
|
|
CREATE TABLE table1 (lat1 Float64, lon1 Float64, lat2 Float64, lon2 Float64) ENGINE = Memory;
|
|
|
|
INSERT INTO table1 VALUES(-10.0 ,0.0, 10.0, 0.0);
|
|
INSERT INTO table1 VALUES(-1, -1, 2, 1);
|
|
INSERT INTO table1 VALUES(0, 2, 1, 3);
|
|
INSERT INTO table1 VALUES(-2, -3, -1, -2);
|
|
INSERT INTO table1 VALUES(-87, 0, -85, 3);
|
|
INSERT INTO table1 VALUES(-89, 1, -88, 2);
|
|
INSERT INTO table1 VALUES(-84, 1, -83, 2);
|
|
INSERT INTO table1 VALUES(-88, 90, -86, 91);
|
|
INSERT INTO table1 VALUES(-84, -91, -83, -90);
|
|
INSERT INTO table1 VALUES(-90, 181, -89, 182);
|
|
INSERT INTO table1 VALUES(-84, 181, -83, 182);
|
|
INSERT INTO table1 VALUES(-87, 0, -85, 3);
|
|
|
|
select '-- select h3PointDistM(lat1, lon1,lat2, lon2) AS k from table1 order by k;';
|
|
select h3PointDistM(lat1, lon1,lat2, lon2) AS k from table1 order by k;
|
|
select '-- select h3PointDistKm(lat1, lon1,lat2, lon2) AS k from table1 order by k;';
|
|
select h3PointDistKm(lat1, lon1,lat2, lon2) AS k from table1 order by k;
|
|
select '-- select h3PointDistRads(lat1, lon1,lat2, lon2) AS k from table1 order by k;';
|
|
select h3PointDistRads(lat1, lon1,lat2, lon2) AS k from table1 order by k;
|
|
|
|
DROP TABLE table1;
|
|
|
|
-- tests for const columns
|
|
select '-- test for non const cols';
|
|
select h3PointDistRads(-10.0 ,0.0, 10.0, arrayJoin([0.0])) as h3PointDistRads;
|
|
select h3PointDistRads(-10.0 ,0.0, 10.0, toFloat64(0)) as h3PointDistRads;
|