mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Added performance test
This commit is contained in:
parent
24f055f784
commit
0c2eb15223
16
tests/performance/nlp.xml
Normal file
16
tests/performance/nlp.xml
Normal file
@ -0,0 +1,16 @@
|
||||
<test>
|
||||
<preconditions>
|
||||
<table_exists>hits_100m_single</table_exists>
|
||||
</preconditions>
|
||||
|
||||
<create_query>CREATE TABLE hits_100m_words (words Array(String), UserID UInt64) ENGINE Memory</create_query>
|
||||
<create_query>CREATE TABLE hits_100m_words_ws (words Array(String), UserID UInt64) ENGINE Memory</create_query>
|
||||
|
||||
<query>INSERT INTO hits_100m_words SELECT splitByNonAlpha(SearchPhrase) AS words, UserID FROM hits_100m_single WHERE length(words) > 0</query>
|
||||
<query>INSERT INTO hits_100m_words_ws SELECT splitByWhitespace(SearchPhrase) AS words, UserID FROM hits_100m_single WHERE length(words) > 0</query>
|
||||
|
||||
<query>SELECT arrayMap(x -> stem('ru', x), words) FROM hits_100m_words FORMAT Null</query>
|
||||
|
||||
<drop_query>DROP TABLE IF EXISTS hits_100m_words</drop_query>
|
||||
<drop_query>DROP TABLE IF EXISTS hits_100m_words_ws</drop_query>
|
||||
</test>
|
Loading…
Reference in New Issue
Block a user