Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

Commit

Permalink
[1.3.6] Fix log (#34)
Browse files Browse the repository at this point in the history
* remove log

* Update setup.py

* Update CHANGELOG.md
  • Loading branch information
Samira-El authored Sep 2, 2020
1 parent b045c56 commit 44ad67d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
1.3.6 (2020-09-02)
------------------
Remove info log

1.3.5 (2020-08-27)
------------------
Properly support `time` sql type.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
long_description = fh.read()

setup(name='pipelinewise-tap-mysql',
version='1.3.5',
version='1.3.6',
description='Singer.io tap for extracting data from MySQL - PipelineWise compatible',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down
2 changes: 0 additions & 2 deletions tap_mysql/sync_strategies/binlog.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,6 @@ def row_to_singer_record(catalog_entry, version, db_column_map, row, time_extrac
property_format = catalog_entry.schema.properties[column_name].format
db_column_type = db_column_map.get(column_name)

LOGGER.info('%s %s %s %s',column_name, val, property_type, db_column_type)

if isinstance(val, datetime.datetime):
if db_column_type in MYSQL_TIMESTAMP_TYPES:
# The mysql-replication library creates datetimes from TIMESTAMP columns using fromtimestamp which
Expand Down

0 comments on commit 44ad67d

Please sign in to comment.