Skip to content

Commit c79819b

Browse files
h3n4lclaude
andcommitted
feat: add Apache Doris parser to monorepo
Add ANTLR4-based Apache Doris SQL parser from doris-parser repository into the parser monorepo. Changes: - Add doris/ directory with grammar files (DorisSQL.g4, DorisSQLLex.g4) - Add Makefile with build and test targets following the pattern of other parsers - Include test example for Doris SQL syntax - Update package name and import paths to github.com/bytebase/parser/doris - Add doris to CI workflow to run tests automatically - All test cases passing Test coverage: - Doris SQL syntax and features - DDL and DML statements - Doris-specific extensions 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent 31ad3d0 commit c79819b

File tree

14 files changed

+174144
-1
lines changed

14 files changed

+174144
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
id: set-matrix
3535
run: |
3636
# List of all available parsers
37-
ALL_PARSERS="redshift postgresql cql snowflake tsql"
37+
ALL_PARSERS="redshift postgresql cql snowflake tsql doris"
3838
# Add more parsers here as they are added to the repository
3939
# ALL_PARSERS="redshift mysql postgresql"
4040

0 commit comments

Comments
 (0)