Skip to content

Commit

Permalink
Merge pull request #5 from ymoch/bugfix/query-failure
Browse files Browse the repository at this point in the history
Fix query failure.
  • Loading branch information
ymoch authored Feb 7, 2017
2 parents 16492cd + 78e17b0 commit 48b9147
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion csv2sql/meta.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""Meta information for csv2sql."""

__version__ = '0.2.1'
__version__ = '0.2.2'
__author__ = 'Yu Mochizuki'
__author_email__ = 'ymoch.dev@gmail.com'
2 changes: 1 addition & 1 deletion csv2sql/queryengines/postgresql.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def write_schema_statement(out_stream, table_name, column_types, rebuild=False):
out_stream.write(
' {0} {1}'.format(_quote_schema(column_name), type_name))
out_stream.write(_LINE_TERMINATOR)
out_stream.write(';')
out_stream.write(');')
out_stream.write(_LINE_TERMINATOR)


Expand Down

0 comments on commit 48b9147

Please sign in to comment.