diff options
author | Kegsay <kegan@matrix.org> | 2020-05-13 17:28:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-13 17:28:42 +0100 |
commit | a25d477cdb8f1ba49b3b5e9d931f808ae45b4853 (patch) | |
tree | 3f61860296096112f6993c68233a4b71673ff4ca /syncapi/storage/postgres/account_data_table.go | |
parent | bdddd83753e31c69e99a695b01cf9009ba7cb6c8 (diff) |
Initial syncapi storage refactor to share pq/sqlite code (#1030)
* Initial syncapi storage refactor to share pq/sqlite code
This goes down a different route than https://github.com/matrix-org/dendrite/pull/985
which tried to even reduce the boilerplate of `ExecContext` etc. The previous pattern
fails badly when there are subtle differences in parameters and hence the shared
boilerplate to read from `QueryContext` breaks. Rather than attacking it at that level,
the main place where we want to reuse code is for the `syncserver.go` itself - the
database implementation which has lots of complex logic. So instead, this commit:
- Makes `invites_table.go` an interface.
- Makes `SyncServerDatasource` use that interface
- This means some functions are now identical for pq/sqlite, so factor them out
to a temporary `shared.Database` struct which will grow until it replaces all of
`SyncServerDatasource`.
* Missing files
Diffstat (limited to 'syncapi/storage/postgres/account_data_table.go')
0 files changed, 0 insertions, 0 deletions