mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-07 02:42:48 +03:00
Add built-in functions numeric(), text(), and blob() that coerce types.
Ticket #1287. (CVS 2524) FossilOrigin-Name: affb0fa2e8c5ff497838ba3c2994cdb1f6f50c68
This commit is contained in:
@@ -84,7 +84,7 @@ void sqlite3_result_blob(
|
||||
int n,
|
||||
void (*xDel)(void *)
|
||||
){
|
||||
assert( n>0 );
|
||||
assert( n>=0 );
|
||||
sqlite3VdbeMemSetStr(&pCtx->s, z, n, 0, xDel);
|
||||
}
|
||||
void sqlite3_result_double(sqlite3_context *pCtx, double rVal){
|
||||
|
Reference in New Issue
Block a user