diff options
author | robot-piglet <[email protected]> | 2025-04-07 20:58:57 +0300 |
---|---|---|
committer | robot-piglet <[email protected]> | 2025-04-07 21:09:44 +0300 |
commit | 25675750186a875635ae4bc00d2433a3b4633e51 (patch) | |
tree | b1c35c1e68ec744977b95ff5b6331bb8ee10876a /yql/essentials/sql/v1/lexer/regex/lexer_ut.cpp | |
parent | 2ec92416296dc1af11b6b60cc53e18cca4933487 (diff) |
Intermediate changes
commit_hash:6768768ea3a3962231d3fabdffb2ce0db44e9347
Diffstat (limited to 'yql/essentials/sql/v1/lexer/regex/lexer_ut.cpp')
-rw-r--r-- | yql/essentials/sql/v1/lexer/regex/lexer_ut.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/yql/essentials/sql/v1/lexer/regex/lexer_ut.cpp b/yql/essentials/sql/v1/lexer/regex/lexer_ut.cpp index ae0d018e42d..03c84bcffe3 100644 --- a/yql/essentials/sql/v1/lexer/regex/lexer_ut.cpp +++ b/yql/essentials/sql/v1/lexer/regex/lexer_ut.cpp @@ -197,10 +197,10 @@ Y_UNIT_TEST_SUITE(RegexLexerTests) { TString expected = "SELECT WS(\n) " - "WS( ) WS( ) INTEGER_VALUE(123467) COMMA(,) WS(\n) " + "WS( ) WS( ) DIGITS(123467) COMMA(,) WS(\n) " "WS( ) WS( ) STRING_VALUE(\"Hello, {name}!\") COMMA(,) WS(\n) " - "WS( ) WS( ) LPAREN(() INTEGER_VALUE(1) WS( ) PLUS(+) WS( ) LPAREN(() INTEGER_VALUE(5) WS( ) " - "ASTERISK(*) WS( ) INTEGER_VALUE(1) WS( ) SLASH(/) WS( ) INTEGER_VALUE(0) RPAREN()) " + "WS( ) WS( ) LPAREN(() DIGITS(1) WS( ) PLUS(+) WS( ) LPAREN(() DIGITS(5) WS( ) " + "ASTERISK(*) WS( ) DIGITS(1) WS( ) SLASH(/) WS( ) DIGITS(0) RPAREN()) " "RPAREN()) COMMA(,) WS(\n) " "WS( ) WS( ) ID_PLAIN(MIN) LPAREN(() ID_PLAIN(identifier) RPAREN()) COMMA(,) WS(\n) " "WS( ) WS( ) ID_PLAIN(Bool) LPAREN(() ID_PLAIN(field) RPAREN()) COMMA(,) WS(\n) " @@ -216,4 +216,4 @@ Y_UNIT_TEST_SUITE(RegexLexerTests) { Check("\" SELECT", "[INVALID] WS( ) SELECT EOF"); } -} // Y_UNIT_TEST_SUITE(RegexLexerTests) +} // Y_UNIT_TEST_SUITE(RegexLexerTests)
\ No newline at end of file |