Skip to content

Commit

Permalink
Add bigint[] to log-based type lookup (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
dmosorast authored Oct 23, 2019
1 parent ece5054 commit b551aab
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tap_postgres/sync_strategies/logical_replication.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,8 @@ def create_array_elem(elem, sql_datatype, conn_info):
cast_datatype = 'text[]'
elif sql_datatype == 'integer[]':
cast_datatype = 'integer[]'
elif sql_datatype == 'bigint[]':
cast_datatype = 'bigint[]'
elif sql_datatype == 'inet[]':
cast_datatype = 'inet[]'
elif sql_datatype == 'json[]':
Expand Down

0 comments on commit b551aab

Please sign in to comment.