Skip to content

Commit

Permalink
Feature/support update return (#10)
Browse files Browse the repository at this point in the history
* #9 Support RETURNING keyword

* update cli tool version
  • Loading branch information
ma91n authored Sep 5, 2022
1 parent 4edf1df commit b78e701
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions python/sqlparse/keywords.py
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,7 @@
'RESTRICT': tokens.Keyword,
'RESULT': tokens.Keyword,
'RETURN': tokens.Keyword,
'RETURNING': tokens.Keyword,
'RETURNED_LENGTH': tokens.Keyword,
'RETURNED_OCTET_LENGTH': tokens.Keyword,
'RETURNED_SQLSTATE': tokens.Keyword,
Expand Down
2 changes: 1 addition & 1 deletion python/uroborosqlfmt/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def __decode(text):
def _parse_args(test_args=None):
parser = argparse.ArgumentParser(description='uroboroSQL formatter API', prog='usqlfmt')

parser.add_argument('-v', '--version', action='version', version='%(prog)s 0.1.0')
parser.add_argument('-v', '--version', action='version', version='%(prog)s 0.1.4')
parser.add_argument('input_path', \
action='store', \
type=str, \
Expand Down

0 comments on commit b78e701

Please sign in to comment.