Anvil.tables.query autocomplete doesn't show fetch_only and only_c

When using the autocomple for query object, it’s still not showing the autocomplete options for fetch_only or only_cols, which were added with the accelerated tables.

I don’t know if this is intended, since the accelerated tables feature is optional, but could also just be a simple omission.

from anvil.tables import query as q
# both below don't appear as suggestions on the autcomplete
q.fetch_only()
q.only_cols()
2 Likes