Lines Matching +full:step +full:- +full:up
84 /// Performs a single migration step.
90 /// \param file Database on which to apply the migration step.
139 /// Given a historical database, chunks it up into results files.
142 /// split up into various different files.
148 PRE(get_schema_version(old_file) == first_chunked_schema_version - 1); in chunk_database()
150 LI(F("Need to split %s into per-action files") % old_file); in chunk_database()
168 while (actions_stmt.step()) { in chunk_database()
176 if (!start_time_stmt.step()) { in chunk_database()
200 first_chunked_schema_version - 1, in chunk_database()
231 /// Backs up a database for schema migration purposes.
237 /// \param source Location of the database to be backed up.
247 LI(F("Backing up database %s to %s") % source % target); in backup_database()
258 /// The algorithm implemented here performs a migration step for every
282 for (i = version_from; i < first_chunked_schema_version - 1; ++i) { in migrate_schema()