1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-10 01:02:56 +03:00

Minor comment changes to the OP_OpenEphemeral header. No changes to code.

FossilOrigin-Name: 8e1d7ef47f643503aa823d9986a931a83c63648b
This commit is contained in:
drh
2010-04-05 15:11:08 +00:00
parent 8d83c0fdd5
commit 25d3adbb6a
3 changed files with 12 additions and 12 deletions

View File

@@ -1,8 +1,8 @@
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
C Silently\sabandon\sa\srollback\sif\sthe\sjournal\shas\sbeen\struncated.
D 2010-04-03T13:08:10
C Minor\scomment\schanges\sto\sthe\sOP_OpenEphemeral\sheader.\s\sNo\schanges\sto\scode.
D 2010-04-05T15:11:09
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
F Makefile.in 4f2f967b7e58a35bb74fb7ec8ae90e0f4ca7868b
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -214,7 +214,7 @@ F src/update.c c0dc6b75ad28b76b619042d934f337b02acee208
F src/utf.c 1baeeac91707a4df97ccc6141ec0f808278af685
F src/util.c 32aebf04c10e51ad3977a928b7416bed671b620b
F src/vacuum.c b1d542c8919d4d11119f78069e1906a1ad07e0ee
F src/vdbe.c 760a0857cdcc000759bd3a5b8e2907dd351072bc
F src/vdbe.c 011f41a5bd40181657322d24590b92874cf8c21e
F src/vdbe.h 471f6a3dcec4817ca33596fe7f6654d56c0e75f3
F src/vdbeInt.h ae1e6ba0dd3fb4a886898d2829d748be701b01f8
F src/vdbeapi.c 74c25680046a116b24b95393914d3669c23305dc
@@ -797,14 +797,14 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
P d64d181c79aee3501be6f7eb8c11ab2cc9a8d63c
R 3bdad3b76e18f681c1678d561acddbce
P 7626f6c9ea04d1a5690dd11bb13e8c3c04e3b0f5
R 7574ff68df940c097a866f6ea89a3e67
U drh
Z ebdfae7bcabbf0ea17047bbf6cf050c7
Z 3884eb3fe925e145d62f7694fcdbcd7c
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.6 (GNU/Linux)
iD8DBQFLtz29oxKgR168RlERAuqsAJ4hKN76txIcKQDlFSgIapQDRryKkQCePyBi
S7/nszC7vd1px1L9m9QGYc0=
=nWWr
iD8DBQFLuf2PoxKgR168RlERAhtIAJ4wSDsh22CmL13qm7/vfHF3OmeAxACdGGuL
ibV3jSAoADhGppE/Y69Waw8=
=Odb9
-----END PGP SIGNATURE-----

View File

@@ -1 +1 @@
7626f6c9ea04d1a5690dd11bb13e8c3c04e3b0f5
8e1d7ef47f643503aa823d9986a931a83c63648b

View File

@@ -3068,10 +3068,10 @@ case OP_OpenWrite: {
**
** Open a new cursor P1 to a transient table.
** The cursor is always opened read/write even if
** the main database is read-only. The transient or virtual
** the main database is read-only. The ephemeral
** table is deleted automatically when the cursor is closed.
**
** P2 is the number of columns in the virtual table.
** P2 is the number of columns in the ephemeral table.
** The cursor points to a BTree table if P4==0 and to a BTree index
** if P4 is not 0. If P4 is not NULL, it points to a KeyInfo structure
** that defines the format of keys in the index.