mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
26 lines
732 B
SQL
26 lines
732 B
SQL
-- this test cannot pass without the new DFA matching algorithm of sequenceMatch
|
|
|
|
DROP TABLE IF EXISTS test.sequence;
|
|
|
|
CREATE TABLE test.sequence
|
|
(
|
|
userID UInt64,
|
|
eventType Enum8('A' = 1, 'B' = 2, 'C' = 3),
|
|
EventTime UInt64
|
|
)
|
|
ENGINE = Memory;
|
|
|
|
INSERT INTO test.sequence SELECT 1, number = 0 ? 'A' : (number < 1000000 ? 'B' : 'C'), number FROM numbers(1000001);
|
|
|
|
SELECT userID
|
|
FROM test.sequence
|
|
GROUP BY userID
|
|
HAVING sequenceMatch('(?1).*(?2).*(?3)')(toDateTime(EventTime), eventType = 'A', eventType = 'B', eventType = 'C');
|
|
|
|
SELECT userID
|
|
FROM test.sequence
|
|
GROUP BY userID
|
|
HAVING sequenceMatch('(?1).*(?2).*(?3)')(toDateTime(EventTime), eventType = 'A', eventType = 'B', eventType = 'A');
|
|
|
|
DROP TABLE test.sequence;
|