Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
id: set-matrix
run: |
# List of all available parsers
ALL_PARSERS="redshift postgresql cql snowflake tsql doris trino"
ALL_PARSERS="redshift postgresql cql snowflake tsql doris trino plsql"
# Add more parsers here as they are added to the repository
# ALL_PARSERS="redshift mysql postgresql"

Expand Down
7 changes: 7 additions & 0 deletions plsql/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
all: build test

build:
antlr -Dlanguage=Go -package plsql -visitor -o . PlSqlLexer.g4 PlSqlParser.g4

test:
go test -v -run TestPLSQLParser
2,605 changes: 2,605 additions & 0 deletions plsql/PlSqlLexer.g4

Large diffs are not rendered by default.

Loading