Fix backfill replication to advance the stream correctly

This commit is contained in:
Mark Haines 2016-04-27 15:38:43 +01:00
parent 71df327190
commit 8a65666454
2 changed files with 3 additions and 3 deletions

View file

@ -382,7 +382,7 @@ class _Writer(object):
position = rows[-1][0]
self.streams[name] = {
"position": str(position),
"position": position if type(position) is int else str(position),
"field_names": fields,
"rows": rows,
}