Overview
| SHA1 Hash: | 4f1061230e0e5a66038a4db99f1ee6203e4d2b9f |
|---|---|
| Date: | 2012-10-30 14:44:14 |
| User: | drh |
| Comment: | Fix a typo in the header comment for the OpenPseudo opcode. |
Tags And Properties
- branch=subquery-as-coroutine inherited from [7af3acbbd4]
- sym-subquery-as-coroutine inherited from [7af3acbbd4]
Changes
Changes to src/vdbe.c
3319 #else 3319 #else 3320 pOp->opcode = OP_OpenEphemeral; 3320 pOp->opcode = OP_OpenEphemeral; 3321 pc--; 3321 pc--; 3322 #endif 3322 #endif 3323 break; 3323 break; 3324 } 3324 } 3325 3325 3326 /* Opcode: OpenPseudo P1 P2 P3 * * | 3326 /* Opcode: OpenPseudo P1 P2 P3 * P5 3327 ** 3327 ** 3328 ** Open a new cursor that points to a fake table that contains a single 3328 ** Open a new cursor that points to a fake table that contains a single 3329 ** row of data. The content of that one row in the content of memory 3329 ** row of data. The content of that one row in the content of memory 3330 ** register P2 when P5==0. In other words, cursor P1 becomes an alias for the 3330 ** register P2 when P5==0. In other words, cursor P1 becomes an alias for the 3331 ** MEM_Blob content contained in register P2. When P5==1, then the 3331 ** MEM_Blob content contained in register P2. When P5==1, then the 3332 ** row is represented by P3 consecutive registers beginning with P2. 3332 ** row is represented by P3 consecutive registers beginning with P2. 3333 ** 3333 **