ClickHouse/tests/queries/0_stateless/01622_constraints_simple_optimization.sql

50 lines
2.8 KiB
MySQL
Raw Normal View History

2021-01-03 15:02:00 +00:00
DROP DATABASE IF EXISTS constraint_test;
2021-03-05 09:53:03 +00:00
DROP TABLE IF EXISTS constraint_test.assumption;
DROP TABLE IF EXISTS constraint_test.transitivity;
2021-01-03 15:02:00 +00:00
2021-03-04 12:16:39 +00:00
SET convert_query_to_cnf = 1;
2021-01-03 15:02:00 +00:00
SET optimize_using_constraints = 1;
2021-03-04 12:16:39 +00:00
SET optimize_move_to_prewhere = 1;
2021-01-03 15:02:00 +00:00
CREATE DATABASE constraint_test;
2021-03-05 09:53:03 +00:00
CREATE TABLE constraint_test.assumption (URL String, a Int32, CONSTRAINT c1 ASSUME domainWithoutWWW(URL) = 'yandex.ru', CONSTRAINT c2 ASSUME URL > 'zzz' AND startsWith(URL, 'test') = True) ENGINE = TinyLog;
2021-01-03 15:02:00 +00:00
--- Add wrong rows in order to check optimization
2021-01-05 20:51:19 +00:00
INSERT INTO constraint_test.assumption (URL, a) VALUES ('1', 1);
INSERT INTO constraint_test.assumption (URL, a) VALUES ('2', 2);
INSERT INTO constraint_test.assumption (URL, a) VALUES ('yandex.ru', 3);
INSERT INTO constraint_test.assumption (URL, a) VALUES ('3', 4);
2021-01-03 15:02:00 +00:00
SELECT count() FROM constraint_test.assumption WHERE domainWithoutWWW(URL) = 'yandex.ru'; --- assumption -> 4
SELECT count() FROM constraint_test.assumption WHERE NOT (domainWithoutWWW(URL) = 'yandex.ru'); --- assumption -> 0
2021-01-05 20:51:19 +00:00
SELECT count() FROM constraint_test.assumption WHERE domainWithoutWWW(URL) != 'yandex.ru'; --- assumption -> 0
2021-01-03 15:02:00 +00:00
SELECT count() FROM constraint_test.assumption WHERE domainWithoutWWW(URL) = 'nothing'; --- not optimized -> 0
2021-01-05 20:51:19 +00:00
SELECT count() FROM constraint_test.assumption WHERE (domainWithoutWWW(URL) = 'yandex.ru' AND URL > 'zzz'); ---> assumption -> 4
2021-03-04 12:16:39 +00:00
SELECT count() FROM constraint_test.assumption WHERE (domainWithoutWWW(URL) = 'yandex.ru' AND NOT URL <= 'zzz'); ---> assumption -> 4
2021-01-05 20:51:19 +00:00
SELECT count() FROM constraint_test.assumption WHERE (domainWithoutWWW(URL) = 'yandex.ru' AND URL > 'zzz') OR (a = 10 AND a + 5 < 100); ---> assumption -> 4
SELECT count() FROM constraint_test.assumption WHERE (domainWithoutWWW(URL) = 'yandex.ru' AND URL = '111'); ---> assumption & no assumption -> 0
2021-03-05 09:53:03 +00:00
SELECT count() FROM constraint_test.assumption WHERE (startsWith(URL, 'test') = True); ---> assumption -> 4
-- DROP TABLE constraint_test.assumption;
CREATE TABLE constraint_test.transitivity (a Int64, b Int64, c Int64, d Int32, CONSTRAINT c1 ASSUME a = b AND c = d, CONSTRAINT c2 ASSUME b = c) ENGINE = TinyLog;
INSERT INTO constraint_test.transitivity (a, b, c, d) VALUES (1, 2, 3, 4);
SELECT count() FROM constraint_test.transitivity WHERE a = d; ---> assumption -> 1
DROP TABLE constraint_test.transitivity;
CREATE TABLE constraint_test.strong_connectivity (a String, b String, c String, d String, CONSTRAINT c1 ASSUME a <= b AND b <= c AND c <= d AND d <= a) ENGINE = TinyLog;
INSERT INTO constraint_test.strong_connectivity (a, b, c, d) VALUES ('1', '2', '3', '4');
SELECT count() FROM constraint_test.strong_connectivity WHERE a = d; ---> assumption -> 1
SELECT count() FROM constraint_test.strong_connectivity WHERE a = c AND b = d; ---> assumption -> 1
DROP TABLE constraint_test.strong_connectivity;
2021-01-05 20:51:19 +00:00
2021-01-03 15:02:00 +00:00
DROP DATABASE constraint_test;