-
Notifications
You must be signed in to change notification settings - Fork 624
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SQL: distinguish user defined PL/SQL inquiry directives (ccflags) and…
… PostgreSQL dollar quoted strings Signed-off-by: Masatake YAMATO <yamato@redhat.com>
- Loading branch information
Showing
3 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
11 changes: 11 additions & 0 deletions
11
Units/parser-sql.r/sql-plsql-inquiry-directive.d/input-2.sql
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
ALTER SESSION SET | ||
PLSQL_CCFlags = 'Some_Flag:1, PLSQL_CCFlags:99' | ||
/ | ||
BEGIN | ||
DBMS_OUTPUT.PUT_LINE($$Some_Flag); | ||
END; | ||
/ | ||
|
||
CREATE TABLE foo( | ||
col text | ||
); |
This file contains 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