From 1d5d359c1230c005274309cd3b9ae8b66d31e6c6 Mon Sep 17 00:00:00 2001 From: Claude Date: Sun, 26 Oct 2025 18:33:29 +0000 Subject: [PATCH] Exclude generated SQLite parser from go vet checks MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The SQLite parser (internal/engine/sqlite/parser/sqlite_parser.go) is generated code from ANTLR 4.13.1 and contains unreachable code warnings that cannot be fixed without modifying the code generator. This change updates the Makefile to exclude the generated parser from go vet checks, allowing the test-ci target to pass while still checking all other packages. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b8745e57dc..b00892a696 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ test-managed: MYSQL_SERVER_URI="invalid" POSTGRESQL_SERVER_URI="postgres://postgres:mysecretpassword@localhost:5432/postgres" go test -v ./... vet: - go vet ./... + go vet $(shell go list ./... | grep -v '/internal/engine/sqlite/parser') test-examples: go test --tags=examples ./...