mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-02 05:54:29 +03:00
Add versions of OP_MakeRecord and OP_Column that use manifest typing (not
activated yet). (CVS 1334) FossilOrigin-Name: 8a66a502ba09e3d858d2f45df9b3b665ebb85d5b
This commit is contained in:
@@ -1100,6 +1100,33 @@ int sqlite2BtreeKeyCompare(
|
||||
return rc;
|
||||
}
|
||||
|
||||
/*
|
||||
** Write the serialized form of the value held by pMem into zBuf. Return
|
||||
** the number of bytes written.
|
||||
*/
|
||||
int sqlite3VdbeSerialize(
|
||||
const Mem *pMem, /* Pointer to vdbe value to serialize */
|
||||
unsigned char *zBuf /* Buffer to write to */
|
||||
){
|
||||
}
|
||||
|
||||
/*
|
||||
** Return the number of bytes that would be consumed by the serialized
|
||||
** form of the value held by pMem. Return negative if an error occurs.
|
||||
*/
|
||||
int sqlite3VdbeSerialLen(const Mem *pMem){
|
||||
}
|
||||
|
||||
/*
|
||||
** Deserialize a value from zBuf and store it in *pMem. Return the number
|
||||
** of bytes written, or negative if an error occurs.
|
||||
*/
|
||||
int sqlite3VdbeDeserialize(
|
||||
Mem *pMem, /* structure to write new value to */
|
||||
const unsigned char *zBuf /* Buffer to read from */
|
||||
){
|
||||
}
|
||||
|
||||
/*
|
||||
** The following is the comparison function for (non-integer)
|
||||
** keys in the btrees. This function returns negative, zero, or
|
||||
|
||||
Reference in New Issue
Block a user