We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 180e243 commit 5aa84d9Copy full SHA for 5aa84d9
tests/bwc/test_rolling_upgrade.py
@@ -305,6 +305,10 @@ def num_docs_rx(cursor):
305
if int(path.from_version.split('.')[0]) >= 5 and int(path.from_version.split('.')[1]) >= 10:
306
with connect(replica_cluster.node().http_url, error_trace=True) as replica_conn:
307
rc = replica_conn.cursor()
308
+ c.execute("refresh table doc.x")
309
+ c.execute("refresh table doc.rx")
310
+ rc.execute("refresh table doc.x")
311
+ rc.execute("refresh table doc.rx")
312
313
# Cannot drop replicated tables
314
with self.assertRaises(ProgrammingError):
0 commit comments