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

Test cases added. Comments fixed. Proposed solution for

ticket [05f43be8fdda9fbd9].

FossilOrigin-Name: 6b993bd54035b67f4d84941e3f444ca79b7feee1
This commit is contained in:
drh
2015-03-06 20:49:52 +00:00
parent 8f1a7ed33f
commit a9c18a9067
8 changed files with 105 additions and 35 deletions

View File

@@ -1053,9 +1053,9 @@ case OP_String8: { /* same as TK_STRING, out2-prerelease */
** The string value P4 of length P1 (bytes) is stored in register P2.
**
** If P5!=0 and the content of register P3 is greater than zero, then
** the datatype of the register P2 is convert to BLOB. The content is
** the same string text, it is merely interpreted as a BLOB as if it
** had been CAST.
** the datatype of the register P2 is converted to BLOB. The content is
** the same sequence of bytes, it is merely interpreted as a BLOB instead
** of a string, as if it had been CAST.
*/
case OP_String: { /* out2-prerelease */
assert( pOp->p4.z!=0 );