Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | One minor documentation enhancement. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | quota-stdio |
Files: | files | file ages | folders |
SHA1: |
8cfd3575c8d9f5361c5276d6b83aba47 |
User & Date: | drh 2011-12-02 15:31:07.596 |
Context
2011-12-03
| ||
00:13 | Add the sqlite3_quota_fflush() interface. Enhance sqlite3_quota_remove() so that it can remove entire directories. (check-in: abcb65af4c user: drh tags: quota-stdio) | |
2011-12-02
| ||
15:31 | One minor documentation enhancement. (check-in: 8cfd3575c8 user: drh tags: quota-stdio) | |
15:27 | Documentation improvements and additional test cases. (check-in: fa71896089 user: drh tags: quota-stdio) | |
Changes
Changes to src/test_quota.h.
︙ | ︙ | |||
82 83 84 85 86 87 88 89 90 91 92 93 94 95 | ** / Matches either / or \. This allows glob patterns ** containing / to work on both unix and windows. ** ** Note that, unlike unix shell globbing, the directory separator "/" ** can match a wildcard. So, for example, the pattern "/abc/xyz/" "*" ** matches any files anywhere in the directory hierarchy beneath ** /abc/xyz. ** ** If the iLimit for a quota group is set to zero, then the quota group ** is disabled and will be deleted when the last database connection using ** the quota group is closed. ** ** Calling this routine on a zPattern that does not exist and with a ** zero iLimit is a no-op. | > > > | 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | ** / Matches either / or \. This allows glob patterns ** containing / to work on both unix and windows. ** ** Note that, unlike unix shell globbing, the directory separator "/" ** can match a wildcard. So, for example, the pattern "/abc/xyz/" "*" ** matches any files anywhere in the directory hierarchy beneath ** /abc/xyz. ** ** The glob algorithm works on bytes. Multi-byte UTF8 characters are ** matched as if each byte were a separate character. ** ** If the iLimit for a quota group is set to zero, then the quota group ** is disabled and will be deleted when the last database connection using ** the quota group is closed. ** ** Calling this routine on a zPattern that does not exist and with a ** zero iLimit is a no-op. |
︙ | ︙ |