File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 26
26
ENUM_PROPERTIES_INSTALLED = False
27
27
28
28
29
- BENCHMARK_FILE = Path (__file__ ).parent .parent . parent / "benchmarks.json"
29
+ BENCHMARK_FILE = Path (__file__ ).parent .parent / "benchmarks.json"
30
30
31
31
patch_oracle ()
32
32
@@ -673,8 +673,8 @@ class FlagIndexTests(CreateRowMixin, SimpleTestCase):
673
673
674
674
CHECK_POINTS = [
675
675
* (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)),
678
678
# *(int(i * ((10**9) / 5)) for i in range(1, 6))
679
679
]
680
680
@@ -1095,9 +1095,9 @@ def test_indexes_final(self):
1095
1095
with tqdm (total = self .CHECK_POINTS [- 1 ]) as pbar :
1096
1096
check_point = self .CHECK_POINTS [- 1 ]
1097
1097
self .create_rows (check_point , pbar )
1098
- import ipdb
1098
+ # import ipdb
1099
1099
1100
- ipdb .set_trace ()
1100
+ # ipdb.set_trace()
1101
1101
1102
1102
def drop_indexes (self ):
1103
1103
def drop_index (table , index ):
You can’t perform that action at this time.
0 commit comments