File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ using namespace cloudsql::parser;
1818namespace {
1919
2020// Helper to create a simple lexer
21- static Lexer make_lexer (const std::string& input) { return Lexer (input); }
21+ static Lexer make_lexer (const std::string& input) {
22+ return Lexer (input);
23+ }
2224
2325// Helper to get all tokens from a lexer
2426static std::vector<Token> tokenize (const std::string& input) {
@@ -468,7 +470,8 @@ TEST(LexerTests, JoinStatement) {
468470}
469471
470472TEST (LexerTests, GroupByHaving) {
471- auto tokens = tokenize (" SELECT department FROM employees GROUP BY department HAVING COUNT(*) > 5" );
473+ auto tokens =
474+ tokenize (" SELECT department FROM employees GROUP BY department HAVING COUNT(*) > 5" );
472475 // Verify GROUP BY and HAVING are present
473476 bool has_group = false , has_by = false , has_having = false ;
474477 for (const auto & t : tokens) {
You can’t perform that action at this time.
0 commit comments