matrix-org / synapse

Synapse: Matrix homeserver written in Python/Twisted.
https://matrix-org.github.io/synapse
Apache License 2.0
11.82k stars 2.13k forks source link

Convert simple_select_one_txn and simple_select_one to return tuples. #16612

Closed clokep closed 11 months ago

clokep commented 11 months ago

This is the last simple_* API that automatically creates dictionaries of the provided columns.

The vast majority of the time we return only a couple of columns and immediately unpack the dictionary. This is wasteful and a continuation of #16431.

Builds on #16611.

clokep commented 11 months ago

Rebased after merge of #16611.