Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pg_chameleon/lib/pg_lib.py
Original file line number Diff line number Diff line change
Expand Up @@ -3878,7 +3878,7 @@ def store_table(self, schema, table, table_pkey, master_status):
binlog_pos = None


if len(table_pkey) > 0:
if (table_pkey is not None and len(table_pkey)) > 0:
sql_insert = """
INSERT INTO sch_chameleon.t_replica_tables
(
Expand Down