Skip to content

Commit 4093341

Browse files
poyrazKgithub-actions[bot]
authored andcommitted
style: automated clang-format fixes
1 parent f7f4a60 commit 4093341

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

tests/lexer_tests.cpp

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ using namespace cloudsql::parser;
1818
namespace {
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
2426
static std::vector<Token> tokenize(const std::string& input) {
@@ -468,7 +470,8 @@ TEST(LexerTests, JoinStatement) {
468470
}
469471

470472
TEST(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) {

0 commit comments

Comments
 (0)