1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Boundary value fix to the descriptive comment at the top of test_quota.c.

FossilOrigin-Name: 7f6072f0827e3aafd17f5f2bac9e3a3f8482e5f6
This commit is contained in:
drh
2010-09-01 15:26:18 +00:00
parent 6e19e91e84
commit 9237a258d0
3 changed files with 12 additions and 12 deletions

View File

@@ -17,8 +17,8 @@
** database files are in a "quota group" that is defined by a GLOB
** pattern. A quota is set for the combined size of all files in the
** the group. A quota of zero means "no limit". If the total size
** of all files in the quota group is greater than or equal to the limit,
** then write requests that attempt to enlarge a file fail with SQLITE_FULL.
** of all files in the quota group is greater than the limit, then
** write requests that attempt to enlarge a file fail with SQLITE_FULL.
**
** However, before returning SQLITE_FULL, the write requests invoke
** a callback function that is configurable for each quota group.