Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
grammar: Add support for parsing multiple FKs in column constraints
This adds support for multiple foreign keys in a column constraint. Example: CREATE TABLE t1(a int, b int); CREATE TABLE t2(a int, b int); CREATE TABLE test( x int REFERENCES t1(a) REFERENCES t2(a), -- This is now supported y int ); Multiple foreign keys if they are a table constraint were already supported before.
- Loading branch information
1 parent
d73fbfc
commit 677d360
Showing
1 changed file
with
5 additions
and
4 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