This is an automated email from the ASF dual-hosted git repository.
jackietien pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new ab6289af913 Ignore claude code related files (#17453)
ab6289af913 is described below
commit ab6289af913447f41c04977f37515ff890586e59
Author: Jackie Tien <[email protected]>
AuthorDate: Fri Apr 10 11:06:11 2026 +0800
Ignore claude code related files (#17453)
---
.gitignore | 4 ++++
iotdb-core/relational-grammar/pom.xml | 8 ++++++--
2 files changed, 10 insertions(+), 2 deletions(-)
diff --git a/.gitignore b/.gitignore
index 2c19b1b3a2c..d79588538d7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -127,3 +127,7 @@
iotdb-core/tsfile/src/main/antlr4/org/apache/tsfile/parser/gen/
# Relational Grammar ANTLR
iotdb-core/relational-grammar/src/main/antlr4/org/apache/iotdb/db/relational/grammar/sql/.antlr/
+
+.claude/
+CLAUDE.md
+.worktreeinclude
\ No newline at end of file
diff --git a/iotdb-core/relational-grammar/pom.xml
b/iotdb-core/relational-grammar/pom.xml
index f4fb18bee2c..76acbf33550 100644
--- a/iotdb-core/relational-grammar/pom.xml
+++ b/iotdb-core/relational-grammar/pom.xml
@@ -96,8 +96,12 @@
<configuration>
<consoleOutput>true</consoleOutput>
<excludes combine.children="append">
- <exclude>**/SqlLexer.java</exclude>
- <exclude>**/SqlLexer.interp</exclude>
+ <exclude>**/RelationalSqlParser.java</exclude>
+ <exclude>**/RelationalSqlLexer.java</exclude>
+ <exclude>**/RelationalSqlLexer.interp</exclude>
+ <exclude>**/RelationalSql.interp</exclude>
+ <exclude>**/RelationalSqlBaseListener.java</exclude>
+ <exclude>**/RelationalSqlListener.java</exclude>
</excludes>
</configuration>
</plugin>