Update sbroad submodule to commit with this feature, description from that commit:
Examples:
explain select a from t
->
projection ("t"."a"::integer -> "a")
scan "t"
execution options:
vdbe_max_steps = 45000
vtable_max_rows = 5000
buckets = [1-3000]
explain select id from _pico_table
->
projection ("_pico_table"."id"::unsigned -> "id")
scan "_pico_table"
execution options:
vdbe_max_steps = 45000
vtable_max_rows = 5000
buckets = any
explain insert into t values (1, 2)
->
insert "t" on conflict: fail
motion [policy: segment([ref("COLUMN_1")])]
values
value row (...)
execution options:
vdbe_max_steps = 45000
vtable_max_rows = 5000
buckets = unknown