HomeSort by relevance Sort by last modified time
    Searched full:vacuum (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /external/chromium_org/third_party/sqlite/src/test/
vacuum.test 12 # focus of this file is testing the VACUUM statement.
14 # $Id: vacuum.test,v 1.43 2009/01/31 14:54:07 danielk1977 Exp $
19 # If the VACUUM statement is disabled in the current build, skip all
22 ifcapable {!vacuum} {
23 omit_test vacuum.test {Compiled with SQLITE_OMIT_VACUUM}
28 omit_test vacuum.test {Auto-vacuum is enabled}
34 do_test vacuum-1.1 {
59 # internally by VACUUM, to ensure that VACUUM falls bac
    [all...]
vacuum2.test 12 # focus of this file is testing the VACUUM statement.
24 # If the VACUUM statement is disabled in the current build, skip all
27 ifcapable {!vacuum||!autoinc} {
36 # Ticket #1121 - make sure vacuum works if all autoincrement tables
43 VACUUM;
47 # Ticket #2518. Make sure vacuum increments the change counter
60 VACUUM
67 # autovacuum setting, do a VACUUM, and the new setting takes effect.
94 VACUUM;
116 VACUUM;
    [all...]
e_vacuum.test 68 # EVIDENCE-OF: R-63707-33375 -- syntax diagram vacuum-stmt
70 do_execsql_test e_vacuum-0.1 { VACUUM } {}
77 # EVIDENCE-OF: R-60541-63059 Running VACUUM to rebuild the database
106 do_execsql_test e_vacuum-1.1.$tn.4 {VACUUM} {}
116 # EVIDENCE-OF: R-05791-54928 Running VACUUM ensures that each table and
121 # e_vacuum-1.2.3 - Run VACUUM.
138 do_execsql_test e_vacuum-1.2.3 { VACUUM } {}
171 execsql VACUUM
176 # auto_vacuum support property can be changed using VACUUM.
186 execsql VACUUM
    [all...]
tkt1512.test 20 ifcapable {!vacuum || !autovacuum} {
48 VACUUM;
pagerfault3.test 41 VACUUM;
46 # Now do the page-size change and VACUUM with IO error injection. When
56 VACUUM;
vacuum3.test 13 # VACUUM statement.
20 # If the VACUUM statement is disabled in the current build, skip all
23 ifcapable !vacuum {
61 VACUUM;
83 VACUUM;
110 VACUUM;
185 VACUUM;
216 VACUUM;
226 VACUUM;
233 VACUUM;
    [all...]
ioerr4.test 13 # during incremental vacuum with a shared cache.
20 # This test requires both shared cache and incremental vacuum.
27 # Enable shared cache mode and incremental vacuum.
77 # Set up for an I/O error on incremental vacuum
incrvacuum2.test 12 # focus of this file is testing the incremental vacuum feature.
19 # If this build of the library does not support auto-vacuum, omit this
28 # Create a database in incremental vacuum mode that has many
42 # Vacuum off a single page.
51 # Vacuum off five pages
60 # Vacuum off all the rest
69 # Make sure incremental vacuum works on attached databases.
139 # free-list (e.g. during an incremental-vacuum), all trunk pages that
tkt-5d863f876e.test 29 VACUUM;
42 VACUUM;
vacuum4.test 20 # If the VACUUM statement is disabled in the current build, skip all
23 ifcapable !vacuum {
65 VACUUM;
tkt-d82e3f3721.test 50 VACUUM;
74 VACUUM;
tkt3762.test 12 # Ticket #3762: Make sure that an incremental vacuum that reduces the
41 VACUUM;
pagesize.test 120 ifcapable {vacuum} {
122 execsql {VACUUM}
183 ifcapable {vacuum} {execsql VACUUM}
188 ifcapable {vacuum} {execsql VACUUM}
incrvacuum.test 12 # focus of this file is testing the incremental vacuum feature.
14 # Note: There are also some tests for incremental vacuum and IO
22 # If this build of the library does not support auto-vacuum, omit this
170 # Try to run a very simple incremental vacuum. Also verify that
172 # does not support auto-vacuum.
199 # The following tests - incrvacuum-5.* - test incremental vacuum
240 PRAGMA incremental_vacuum; -- Vacuum up the two pages.
263 # Two new databases are opened, one with incremental vacuum enabled,
264 # the other with no auto-vacuum completely disabled. After executing
361 # vacuum while another statement (a read) is being executed
    [all...]
incrvacuum_ioerr.test 23 # If this build of the library does not support auto-vacuum, omit this
140 # has before running incremental-vacuum.
145 # Now run incremental-vacuum to vacuum 5 pages from the db file.
tkt3761.test 12 # Ticket #3761: Make sure that an incremental vacuum on an in-memory
fts3b.test 12 # script tests for the fts2 rowid-versus-vacuum problem (ticket #2566).
41 db eval {VACUUM}
43 # The VACUUM renumbered the t1_content table in fts2, which breaks
96 db eval {VACUUM}
98 # The VACUUM renumbered the t2_segment table in fts2, which would
fallocate.test 103 execsql { VACUUM }
118 VACUUM;
whereA.test 53 VACUUM;
67 VACUUM;
keyword1.test 80 vacuum
recover2.test 73 db eval {VACUUM}
98 db eval {VACUUM}
123 db eval {VACUUM}
148 db eval {VACUUM}
tkt3918.test 45 # Incrementally vacuum the database to reduce its size by a single
  /external/chromium_org/third_party/sqlite/src/ext/rtree/
rtree7.test 22 ifcapable !rtree||!vacuum {
40 VACUUM;
53 VACUUM;
  /external/chromium_org/third_party/sqlite/src/src/
vacuum.c 12 ** This file contains code used to implement the VACUUM command.
75 ** The non-standard VACUUM command is used to clean up the database,
76 ** collapse free space, etc. It is modelled after the VACUUM command
79 ** In version 1.0.x of SQLite, the VACUUM command would call
98 Btree *pTemp; /* The temporary database we vacuum into */
104 Db *pDb = 0; /* Database to detach at end of vacuum */
110 sqlite3SetString(pzErrMsg, db, "cannot VACUUM from within a transaction");
114 sqlite3SetString(pzErrMsg, db,"cannot VACUUM - SQL statements in progress");
140 ** that actually made the VACUUM run slower. Very little journalling
141 ** actually occurs when doing a vacuum since the vacuum_db is initiall
    [all...]
btree.h 25 ** If defined as non-zero, auto-vacuum is enabled by default. Otherwise
32 #define BTREE_AUTOVACUUM_NONE 0 /* Do not do auto-vacuum */
33 #define BTREE_AUTOVACUUM_FULL 1 /* Do full auto-vacuum */
34 #define BTREE_AUTOVACUUM_INCR 2 /* Incremental vacuum */
126 ** the database file header. The incr-vacuum-flag field is located at

Completed in 2702 milliseconds

1 2 3 4 5 6