Skip to content

Commit

Permalink
fix parse 'FOREIGN KEY', block comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Shinichi Takii committed Feb 17, 2019
1 parent 998e327 commit 8b71e10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ddlparse/__init__.py
Expand Up @@ -8,7 +8,7 @@
from .ddlparse import *

__copyright__ = 'Copyright (C) 2018-2019 Shinichi Takii'
__version__ = '1.2.2'
__version__ = '1.2.3'
__license__ = 'BSD-3-Clause'
__author__ = 'Shinichi Takii'
__author_email__ = 'shinichi.takii@gmail.com'
Expand Down
2 changes: 1 addition & 1 deletion test/test_ddlparse.py
Expand Up @@ -195,7 +195,7 @@
Col_05 datetime,
PRIMARY KEY (Col_01, Col_02),
UNIQUE (Col_03, Col_04),
NOT NULL (Col_04, Col_05)
NOT NULL (Col_04, Col_05),
FOREIGN KEY (Col_04, Col_05) REFERENCES ref_table_01 (Col_04, Col_05)
);
""",
Expand Down

0 comments on commit 8b71e10

Please sign in to comment.