ClickHouse/tests/performance/point_in_polygon.xml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
854 B
XML
Raw Normal View History

<test>
2021-04-05 10:03:29 +00:00
<settings>
<!--
Not sure why it's needed. Maybe it has something to do with the
resulting block size of Memory table.
-->
<optimize_trivial_insert_select>0</optimize_trivial_insert_select>
</settings>
<create_query>CREATE TABLE polygons (polygon Array(Array(Tuple(Float64, Float64)))) ENGINE = Memory</create_query>
<create_query>
INSERT INTO polygons
WITH number + 1 AS radius
SELECT [arrayMap(x -> (cos(x / 90. * pi()) * radius, sin(x / 90. * pi()) * radius), range(180))]
2021-04-02 12:14:25 +00:00
FROM numbers_mt(5000000)
2021-04-05 10:03:29 +00:00
SETTINGS max_insert_threads = 2, max_memory_usage = 30000000000
</create_query>
2020-06-08 22:13:08 +00:00
<query>SELECT pointInPolygon((100, 100), polygon) FROM polygons FORMAT Null</query>
<drop_query>DROP TABLE IF EXISTS polygons</drop_query>
</test>