From: drh Date: Wed, 1 Sep 2010 15:26:18 +0000 (+0000) Subject: Boundary value fix to the descriptive comment at the top of test_quota.c. X-Git-Tag: experimental~86 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9237a258d0894069ca42be1603552c9f57d8373d;p=thirdparty%2Fsqlite.git Boundary value fix to the descriptive comment at the top of test_quota.c. FossilOrigin-Name: 7f6072f0827e3aafd17f5f2bac9e3a3f8482e5f6 --- diff --git a/manifest b/manifest index 2265958571..59b3554eaf 100644 --- a/manifest +++ b/manifest @@ -1,8 +1,8 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -C Merge\sthe\stest_quota.c\smodule\sinto\sthe\strunk. -D 2010-09-01T15:22:56 +C Boundary\svalue\sfix\sto\sthe\sdescriptive\scomment\sat\sthe\stop\sof\stest_quota.c. +D 2010-09-01T15:26:18 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f F Makefile.in c599a15d268b1db2aeadea19df2adc3bf2eb6bee F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23 @@ -211,7 +211,7 @@ F src/test_mutex.c ce06b59aca168cd8c520b77159a24352a7469bd3 F src/test_onefile.c 40cf9e212a377a6511469384a64b01e6e34b2eec F src/test_osinst.c f408c6a181f2fb04c56273afd5c3e1e82f60392c F src/test_pcache.c 7bf828972ac0d2403f5cfa4cd14da41f8ebe73d8 -F src/test_quota.c 91cacc8c0d8f55814a9ad5b90ad501c53a3e1efa +F src/test_quota.c 4b0c51fc8492e3879103cbed781e5c7822fa33f1 F src/test_rtree.c e957a603a98871dcf005c1e96ae791cfe74eb7f6 F src/test_schema.c 8c06ef9ddb240c7a0fcd31bc221a6a2aade58bf0 F src/test_server.c bbba05c144b5fc4b52ff650a4328027b3fa5fcc6 @@ -856,14 +856,14 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f -P 740adca34e7fd309f0f761b8cc8581a9b7890793 19e95f63359589766da673aac99d19a355a92678 -R 49d7c0965e9aa38b9a7b200ccf905b34 +P 2e1a02026a0635fe05ba55a6d4d36dd7fd0ae8e9 +R 9727013208f74b5846192ddd802d89a5 U drh -Z d2e178175efa127228d59b10ca5432e5 +Z ca12cd7daf2cb402fea27724b9ab87c5 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (GNU/Linux) -iD8DBQFMfm/SoxKgR168RlERAhKeAJ9GTWSgyTP43+AwCZCijdeOHh+pSACdFsL8 -/nKn+kepTG8lPD+3DrG/4No= -=GTcD +iD8DBQFMfnCdoxKgR168RlERAp/3AJ9sMV19uGCPmQnx/xpMir6Lynzx9wCdGQfk +0rZF++wLzBd8e8l03xX/LSg= +=CiYA -----END PGP SIGNATURE----- diff --git a/manifest.uuid b/manifest.uuid index 358bec311c..84636e20cb 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -2e1a02026a0635fe05ba55a6d4d36dd7fd0ae8e9 \ No newline at end of file +7f6072f0827e3aafd17f5f2bac9e3a3f8482e5f6 \ No newline at end of file diff --git a/src/test_quota.c b/src/test_quota.c index 2eb62dd954..b8b8ff6b02 100644 --- a/src/test_quota.c +++ b/src/test_quota.c @@ -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.