1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +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

@@ -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.