File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 2626 ENUM_PROPERTIES_INSTALLED = False
2727
2828
29- BENCHMARK_FILE = Path (__file__ ).parent .parent . parent / "benchmarks.json"
29+ BENCHMARK_FILE = Path (__file__ ).parent .parent / "benchmarks.json"
3030
3131patch_oracle ()
3232
@@ -673,8 +673,8 @@ class FlagIndexTests(CreateRowMixin, SimpleTestCase):
673673
674674 CHECK_POINTS = [
675675 * (int (10 ** i ) for i in range (1 , 7 )),
676- * (int (i * ((10 ** 7 ) / 5 )) for i in range (1 , 6 )),
677- * (int (i * ((10 ** 8 ) / 5 )) for i in range (1 , 6 )),
676+ # *(int(i * ((10**7) / 5)) for i in range(1, 6)),
677+ # *(int(i * ((10**8) / 5)) for i in range(1, 6)),
678678 # *(int(i * ((10**9) / 5)) for i in range(1, 6))
679679 ]
680680
@@ -1095,9 +1095,9 @@ def test_indexes_final(self):
10951095 with tqdm (total = self .CHECK_POINTS [- 1 ]) as pbar :
10961096 check_point = self .CHECK_POINTS [- 1 ]
10971097 self .create_rows (check_point , pbar )
1098- import ipdb
1098+ # import ipdb
10991099
1100- ipdb .set_trace ()
1100+ # ipdb.set_trace()
11011101
11021102 def drop_indexes (self ):
11031103 def drop_index (table , index ):
You can’t perform that action at this time.
0 commit comments