From 9c111a7bdb553e784f32f501f9f2cbc9be396a28 Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Fri, 29 Jan 2021 03:53:54 +0300 Subject: [PATCH] Translate comment in test --- tests/queries/1_stateful/00139_like.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/queries/1_stateful/00139_like.sql b/tests/queries/1_stateful/00139_like.sql index ccc195bc81d..8cb84558407 100644 --- a/tests/queries/1_stateful/00139_like.sql +++ b/tests/queries/1_stateful/00139_like.sql @@ -1,4 +1,4 @@ -/* Заметим, что запросы написаны так, как будто пользователь не понимает смысл символа _ в LIKE выражении. */ +/* Note that queries are written as the user doesn't really understand that the symbol _ has special meaning in LIKE pattern. */ SELECT count() FROM test.hits WHERE URL LIKE '%/avtomobili_s_probegom/_%__%__%__%'; SELECT count() FROM test.hits WHERE URL LIKE '/avtomobili_s_probegom/_%__%__%__%'; SELECT count() FROM test.hits WHERE URL LIKE '%_/avtomobili_s_probegom/_%__%__%__%';