diff options
author | drh <drh@noemail.net> | 2010-04-05 15:11:08 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2010-04-05 15:11:08 +0000 |
commit | 25d3adbb6a85526db761b6face6ee3fa384a5e45 (patch) | |
tree | dc34dafca3377395988731418a2b9ea5cb7cecb7 /src | |
parent | 8d83c0fdd55575b58ca39da25882ff77e11391fb (diff) | |
download | sqlite-25d3adbb6a85526db761b6face6ee3fa384a5e45.tar.gz sqlite-25d3adbb6a85526db761b6face6ee3fa384a5e45.zip |
Minor comment changes to the OP_OpenEphemeral header. No changes to code.
FossilOrigin-Name: 8e1d7ef47f643503aa823d9986a931a83c63648b
Diffstat (limited to 'src')
-rw-r--r-- | src/vdbe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vdbe.c b/src/vdbe.c index d038902fb..d5e4b4d19 100644 --- a/src/vdbe.c +++ b/src/vdbe.c @@ -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. |