1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Enhancements to the DELETE command (CVS 194)

FossilOrigin-Name: daea156e2430762e683ff5460f9f8bb3204ae168
This commit is contained in:
drh
2001-03-20 22:05:00 +00:00
parent 8721f00485
commit 0353cedda4
12 changed files with 211 additions and 236 deletions

View File

@ -17,6 +17,15 @@ proc chng {date desc} {
puts "<DD><P><UL>$desc</UL></P></DD>"
}
chng {2001 Mar 20 (1.0.27)} {
<li>When doing DELETE and UPDATE, the library used to write the record
numbers of records to be deleted or updated into a temporary file.
This is changed so that the record numbers are held in memory.</li>
<li>The DELETE command without a WHILE clause just removes the database
files from the disk, rather than going through and deleting record
by record.</li>
}
chng {2001 Mar 20 (1.0.26)} {
<li>A serious bug fixed on Windows. Windows users should upgrade.
No impact to Unix.</li>