Skip to content

Commit b551aab

Browse files
authored
Add bigint[] to log-based type lookup (singer-io#69)
1 parent ece5054 commit b551aab

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tap_postgres/sync_strategies/logical_replication.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,8 @@ def create_array_elem(elem, sql_datatype, conn_info):
105105
cast_datatype = 'text[]'
106106
elif sql_datatype == 'integer[]':
107107
cast_datatype = 'integer[]'
108+
elif sql_datatype == 'bigint[]':
109+
cast_datatype = 'bigint[]'
108110
elif sql_datatype == 'inet[]':
109111
cast_datatype = 'inet[]'
110112
elif sql_datatype == 'json[]':

0 commit comments

Comments
 (0)