You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -292,6 +297,7 @@ function foreach(table, name, callback)
292
297
else
293
298
forfield, valueinsafe_pairs(table) do
294
299
ifis_exceeding_maxlength(index) then
300
+
print_truncation_msg(name, index)
295
301
return
296
302
end
297
303
callback(field, value)
@@ -431,8 +437,8 @@ function processArguments()
431
437
elseifargs.dumbthen
432
438
args.maxlength=10000
433
439
else
434
-
--257 was chosen with the intent of capturing all enums. Or hopefully most of them.
435
-
args.maxlength=257
440
+
--2048 was chosen as it was the smallest power of 2 that can query the `df` table entirely, and it seems likely it'll be able to query most structures fully
441
+
args.maxlength=2048
436
442
end
437
443
438
444
new_value=toType(args.setvalue)
@@ -740,7 +746,9 @@ function printParents(path, field, value)
0 commit comments