diff options
author | Kegsay <kegan@matrix.org> | 2020-09-14 16:39:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-14 16:39:38 +0100 |
commit | 8dc95062101b3906ffb83604e2abca02d9a3dd03 (patch) | |
tree | bdd5ec08d14c113346dd7d731e51403e83e5940b /go.mod | |
parent | 913020e4b7ceeaf67b4c7ed8e0778126989846ef (diff) |
Don't use more than 999 variables in SQLite querys. (#1425)
* Don't use more than 999 variables in SQLite querys.
Solve this problem in a more general and reusable way.
Also fix #1369
Add some unit tests.
Signed-off-by: Henrik Sölver <henrik.solver@gmail.com>
* Don't rely on testify for basic assertions
* Readability improvements and linting
Co-authored-by: Henrik Sölver <henrik.solver@gmail.com>
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,6 +1,7 @@ module github.com/matrix-org/dendrite require ( + github.com/DATA-DOG/go-sqlmock v1.5.0 github.com/Shopify/sarama v1.27.0 github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect github.com/gologme/log v1.2.0 |