mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
cf062f0c5b
Previously, LIKE pattern '%%%ab' became '.*.*ab'. Now, it becomes 'ab' which is a bit faster (perhaps). + minor code cleanup + a minor doc update
4 lines
97 B
SQL
4 lines
97 B
SQL
SELECT materialize('prepre_f') LIKE '%pre_f%';
|
|
|
|
SELECT materialize('prepre_f') LIKE '%%%pre_f%';
|