Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Remove duplicate secure_delete pragma implemention. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | wal |
Files: | files | file ages | folders |
SHA1: |
c15fda145b621fc86402914aa5b015e5 |
User & Date: | drh 2010-04-12 19:32:00.000 |
Context
2010-04-13
| ||
06:20 | Sync wal branch with [012cf101bf]. (check-in: 9d690f24f6 user: dan tags: wal) | |
2010-04-12
| ||
19:32 | Remove duplicate secure_delete pragma implemention. (check-in: c15fda145b user: drh tags: wal) | |
19:05 | Add "log.h", which should have been part of the previous commit. (check-in: 8de9f01004 user: dan tags: wal) | |
Changes
Changes to src/pragma.c.
︙ | ︙ | |||
416 417 418 419 420 421 422 | } if( ALWAYS(pBt) ){ newMax = sqlite3BtreeMaxPageCount(pBt, newMax); } returnSingleInt(pParse, "max_page_count", newMax); }else | < < < < < < < < < < < < < < < < < < < < < < < < < | 416 417 418 419 420 421 422 423 424 425 426 427 428 429 | } if( ALWAYS(pBt) ){ newMax = sqlite3BtreeMaxPageCount(pBt, newMax); } returnSingleInt(pParse, "max_page_count", newMax); }else /* ** PRAGMA [database.]secure_delete ** PRAGMA [database.]secure_delete=ON/OFF ** ** The first form reports the current setting for the ** secure_delete flag. The second form changes the secure_delete ** flag setting and reports thenew value. |
︙ | ︙ |