feat: add Oracle PL/SQL parser with broad Oracle object support#520
Open
jhovannyLinares wants to merge 1 commit into
Open
feat: add Oracle PL/SQL parser with broad Oracle object support#520jhovannyLinares wants to merge 1 commit into
jhovannyLinares wants to merge 1 commit into
Conversation
Adds a regex-based PL/SQL parser (_parse_plsql) that extracts Oracle database objects without requiring tree-sitter grammar support. Supported constructs: - PACKAGE spec and PACKAGE BODY with member PROCEDURE/FUNCTION extraction - Standalone PROCEDURE and FUNCTION (with or without CREATE OR REPLACE) - TRIGGER with event and target table metadata - TYPE definitions (AS OBJECT, TABLE OF, UNDER, etc.) - IMPORTS_FROM edges for FROM/JOIN table references - CALLS edges for inter-package calls; Oracle system packages suppressed New Oracle file extensions: .plsql, .pks, .pkb, .prc, .fnc, .trg, .pls Auto-detection: .sql files with Oracle headers routed to PL/SQL parser Wrapped (obfuscated) Oracle files are silently skipped 24 new tests; tests/fixtures/sample.plsql fixture covers all constructs. README: language list updated + Oracle PL/SQL usage collapsible section. CHANGELOG: entry added under [Unreleased].
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds a regex-based PL/SQL parser (_parse_plsql) that extracts Oracle database objects without requiring tree-sitter grammar support.
Supported constructs:
New Oracle file extensions: .plsql, .pks, .pkb, .prc, .fnc, .trg, .pls Auto-detection: .sql files with Oracle headers routed to PL/SQL parser Wrapped (obfuscated) Oracle files are silently skipped
24 new tests; tests/fixtures/sample.plsql fixture covers all constructs. README: language list updated + Oracle PL/SQL usage collapsible section. CHANGELOG: entry added under [Unreleased].