Basic implementation of 'resolve skew aref' feature

This commit is contained in:
Matthias Koefferlein
2021-05-21 00:08:02 +02:00
parent 6496a71b5b
commit eb26b6ed34
12 changed files with 127 additions and 57 deletions
+5
View File
@@ -64,6 +64,11 @@ class DBReadersTests(unittest.TestCase):
opt.gds2_allow_multi_xy_records = False
self.assertEqual(opt.gds2_allow_multi_xy_records, False)
opt.gds2_resolve_skew_arrays = True
self.assertEqual(opt.gds2_resolve_skew_arrays, True)
opt.gds2_resolve_skew_arrays = False
self.assertEqual(opt.gds2_resolve_skew_arrays, False)
opt.gds2_allow_big_records = True
self.assertEqual(opt.gds2_allow_big_records, True)
opt.gds2_allow_big_records = False