mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
add test for pointInEllipses
This commit is contained in:
parent
42ce089aa6
commit
6b3135959d
@ -0,0 +1,3 @@
|
||||
1
|
||||
1
|
||||
0
|
@ -0,0 +1,6 @@
|
||||
SELECT pointInEllipses(33.3, 55.3, 33.4, 55.1, 1.0, 1.0) AS distance;
|
||||
SELECT pointInEllipses(33.3 + v, 55.3 + v, 33.4, 55.1, 1.0, 1.0) AS distance from
|
||||
(
|
||||
select number + 0.1 as v from system.numbers limit 1
|
||||
);
|
||||
SELECT pointInEllipses(33.3, 55.3, 33.4, 55.1, 0.1, 0.2) AS distance;
|
Loading…
Reference in New Issue
Block a user