Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Do not short-circuit the update command if the --verbose option is used. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
3b5db9a10ef653cc3115bc8caf050e63 |
| User & Date: | drh 2011-05-20 12:29:36.901 |
Context
|
2011-05-20
| ||
| 14:17 | Convert the return value of getcwd() from MBCS into UTF8 before using it. check-in: ef04076777 user: drh tags: trunk | |
| 12:29 | Do not short-circuit the update command if the --verbose option is used. check-in: 3b5db9a10e user: drh tags: trunk | |
| 11:39 | Update the built-in SQLite to the latest 3.7.7 alpha that includes the fix for disappearing WAL transactions. check-in: c60e143f28 user: drh tags: trunk | |
Changes
Changes to src/update.c.
| ︙ | ︙ | |||
175 176 177 178 179 180 181 |
}
}
tid = db_int(0, "SELECT rid FROM leaves, event"
" WHERE event.objid=leaves.rid"
" ORDER BY event.mtime DESC");
}
| | | 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
}
}
tid = db_int(0, "SELECT rid FROM leaves, event"
" WHERE event.objid=leaves.rid"
" ORDER BY event.mtime DESC");
}
if( tid==vid && !verboseFlag ) return; /* Nothing to update */
db_begin_transaction();
vfile_check_signature(vid, 1, 0);
if( !nochangeFlag && !internalUpdate ) undo_begin();
load_vfile_from_rid(tid);
/*
** The record.fn field is used to match files against each other. The
|
| ︙ | ︙ |