File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -828,7 +828,7 @@ def test_read_w_ranges(self):
828
828
START = 1000
829
829
END = 2000
830
830
session , committed = self ._set_up_table (ROW_COUNT )
831
- snapshot = session .snapshot (read_timestamp = committed )
831
+ snapshot = session .snapshot (read_timestamp = committed , multi_use = True )
832
832
all_data_rows = list (self ._row_data (ROW_COUNT ))
833
833
834
834
closed_closed = KeyRange (start_closed = [START ], end_closed = [END ])
@@ -934,7 +934,8 @@ def test_execute_sql_w_query_param(self):
934
934
self .ALL_TYPES_COLUMNS ,
935
935
self .ALL_TYPES_ROWDATA )
936
936
937
- snapshot = session .snapshot (read_timestamp = batch .committed )
937
+ snapshot = session .snapshot (
938
+ read_timestamp = batch .committed , multi_use = True )
938
939
939
940
# Cannot equality-test array values. See below for a test w/
940
941
# array of IDs.
You can’t perform that action at this time.
0 commit comments