Commit graph

122 commits

Author SHA1 Message Date
Kim Alvefur
a32b5ceb45 mod_storage_sql: Implement archive summary API 2019-02-25 15:51:55 +01:00
Kim Alvefur
8cc789c796 mod_storage_sql: No archive item limit by default 2019-03-22 16:30:53 +01:00
Kim Alvefur
9393931a25 mod_storage_sql: Return cached count if only this is queried for 2019-03-22 02:18:54 +01:00
Kim Alvefur
5029870d3e mod_storage_sql: Cache total count if it's calculated as part of the current query 2019-03-22 02:13:27 +01:00
Kim Alvefur
56a9e395ad mod_storage_sql: Skip cache write
This would cause the cache to be wrong in case the the later INSERT
fails and the transaction is aborted.
2019-03-22 02:12:02 +01:00
Kim Alvefur
61edbdb90f mod_storage_sql: Fix to use currently queried store
Was using the previously queried store due to this being cached in an
upvalue.
2019-03-22 02:10:46 +01:00
Kim Alvefur
3e5243f2d2 mod_storage_sql: Don't increment counter twice (fixes accounting error) 2019-03-22 02:09:38 +01:00
Kim Alvefur
9eb4885f38 mod_storage_internal,_sql: Key item count cache on both username and store 2019-03-22 18:02:27 +01:00
Kim Alvefur
0028ea46e2 mod_storage_internal,_sql: Expose archive capabilities feature set
This was planned to be added long ago but was forgotten.
2019-03-22 18:01:24 +01:00
Matthew Wild
d7761bd914 mod_storage_internal,_sql: Add limit to number of items in an archive store (fixes #733) 2017-10-20 12:53:53 +02:00
Kim Alvefur
2b289f34f9 various: Don't rely on _G.unpack existing 2018-12-08 17:09:55 +01:00
Matthew Wild
813f69fd2b mod_storage_sql: Catch errors during schema upgrade (thanks Nothing4You) 2018-11-15 21:55:16 +00:00
Kim Alvefur
c5d487e42d mod_storage_sql: Handle Lua 5.3 move of unpack function 2018-10-21 21:12:38 +02:00
Matthew Wild
fcdc8d9ff1 mod_storage_sql: Fix issue number in comment that was fixed by 55b40f3fa659 (fixes #1073) 2018-10-13 08:17:58 +01:00
Matthew Wild
1faf1773a3 mod_storage_sql: Keep prosodyarchive_index unique constraint on non-MySQL DBs 2018-10-12 21:59:15 +01:00
Matthew Wild
06cdd9edcd mod_storage_sql: Change prosodyarchive_index to be non-unique (fixes #1087)
MySQL requires that the first 20 bytes are unique, even if they differ after
the first 20 bytes. This breaks e.g. pubsub/PEP nodes longer than 20 characters
that have common prefixes.
2018-10-11 19:23:21 +01:00
Matthew Wild
9423dbfdb3 mod_storage_sql: Have :users() throw an error on failure instead of returning non-iterator values 2018-10-11 19:15:46 +01:00
Matthew Wild
21e358c847 mod_storage_sql: Workaround MySQL not supporting LIMIT subquery in archive truncate operations, fixes #1200 2018-10-11 18:20:09 +01:00
Kim Alvefur
c7ef245c0b mod_storage_sql: Remove unused function argument [luacheck]
What was the intent of this argument anyways?
2018-10-10 21:23:35 +02:00
Kim Alvefur
18b6b5c90b mod_storage_sql: Catch and report value deserialization errors 2018-02-24 11:50:08 +01:00
Kim Alvefur
689f3d3009 Merge 0.10->trunk 2017-12-22 01:02:05 +01:00
Kim Alvefur
cf3af7a85c mod_storage_sql: Index over contact and timestamp (happy now Ge0rg?) 2017-12-12 01:40:09 +01:00
Kim Alvefur
852564c14e mod_storage_sql: Remove ability to override name of key-value table (unreachable and would not work) 2017-12-11 22:45:03 +01:00
Kim Alvefur
cbfe174fa4 Merge 0.10->trunk 2017-11-21 23:16:16 +01:00
Kim Alvefur
a7693939d4 mod_storage_sql: Add indices that include the with and when columns of archives 2017-11-21 14:46:21 +01:00
Kim Alvefur
01d628a547 mod_storage_sql: Add support for truncating deletion 2017-11-09 16:50:36 +01:00
Kim Alvefur
5c1f8cfc4b Merge 0.10->trunk 2017-10-05 18:06:04 +02:00
Kim Alvefur
ce996cdb1c mod_storage_sql: Also clear the prosodyarchive table when an user is deleted (fixes #1009) 2017-10-05 17:44:47 +02:00
Kim Alvefur
50611461f2 mod_storage_sql: Remove return values from purge method 2017-10-05 17:22:42 +02:00
Matthew Wild
4812b7e07c mod_storage_sql: Fix logic error introduced by variable rename in aa9f198cb3c9 (thanks waqas) 2017-04-30 10:44:53 +01:00
Kim Alvefur
caf3175a5f mod_storage_sql: Limit encoding check to current database 2017-04-13 01:29:35 +02:00
Kim Alvefur
8aaba12933 mod_storage_sql: Break long lines 2017-04-12 23:16:23 +02:00
Kim Alvefur
d938b42d8f mod_storage_sql: Pass charset and collation names via variable binding 2017-04-12 21:53:21 +02:00
Kim Alvefur
a03638bd16 mod_storage_sql: Quote some field names 2017-04-12 21:51:17 +02:00
Kim Alvefur
c49d0d5b77 mod_storage_sql: Raise error if encoding check query fails 2017-04-12 17:26:13 +02:00
Kim Alvefur
91baabfede SQL: Use standard quotes for columns and other identifiers, rewrite to grave accents for MySQL only (fixes #885) 2017-04-10 23:13:39 +02:00
Kim Alvefur
32e5f29192 mod_storage_sql: Fix to use correct SQL query (thanks carlos) 2017-04-03 00:34:37 +02:00
Kim Alvefur
9b9d6a9ba9 Merge 0.10->trunk 2017-05-17 01:06:20 +02:00
Kim Alvefur
9548228ec8 Merge 0.10->trunk 2017-04-13 01:30:24 +02:00
Kim Alvefur
a22c6725be Merge 0.10->trunk 2017-04-12 20:59:18 +02:00
Kim Alvefur
8a9dd05b08 Merge 0.10->trunk 2017-04-10 23:16:13 +02:00
Kim Alvefur
8962d239ed Merge 0.10->trunk 2017-04-03 00:59:44 +02:00
Kim Alvefur
2364604bc1 Merge 0.10->trunk 2017-04-01 21:48:54 +02:00
Kim Alvefur
67572368f2 mod_storage_sql: Remove unused return values (should those actually be used?) 2017-04-01 19:47:02 +02:00
Kim Alvefur
dd86b147bf mod_storage_sql: Ignore name clash [luacheck] 2017-04-01 19:45:47 +02:00
Kim Alvefur
ee705afbef mod_storage_sql: Split long lines [luacheck] 2017-04-01 19:45:37 +02:00
Kim Alvefur
d5205416d5 mod_storage_sql: Ignore name clash [luacheck] 2017-04-01 19:45:20 +02:00
Kim Alvefur
29c30180ee mod_storage_sql: Pass SQL engine as an argument to upgrade and table creator functions 2017-04-01 19:39:20 +02:00
Kim Alvefur
61d955084f mod_storage_sql: Move SQL queries into multiline strings for readability [luacheck] 2017-04-01 19:26:27 +02:00
Kim Alvefur
fbd4f04b73 mod_storage_sql: Rename variables to avoid name clashes [luacheck] 2017-04-01 19:25:34 +02:00