sqlite / injectable_functions /carray_injectable_functions.json
AryaWu's picture
Upload folder using huggingface_hub
7510827 verified
[
{
"function_name": "carrayConnect",
"function_signature": "static int carrayConnect(\n sqlite3 *db,\n void *pAux,\n int argc, const char *const*argv,\n sqlite3_vtab **ppVtab,\n char **pzErr\n)",
"test_filename": "tests_carray_carrayConnect.c"
},
{
"function_name": "carrayColumn",
"function_signature": "static int carrayColumn(\n sqlite3_vtab_cursor *cur, /* The cursor */\n sqlite3_context *ctx, /* First argument to sqlite3_result_...() */\n int i /* Which column to return */\n)",
"test_filename": "tests_carray_carrayColumn.c"
},
{
"function_name": "carrayFilter",
"function_signature": "static int carrayFilter(\n sqlite3_vtab_cursor *pVtabCursor, \n int idxNum, const char *idxStr,\n int argc, sqlite3_value **argv\n)",
"test_filename": "tests_carray_carrayFilter.c"
},
{
"function_name": "carrayBestIndex",
"function_signature": "static int carrayBestIndex(\n sqlite3_vtab *tab,\n sqlite3_index_info *pIdxInfo\n)",
"test_filename": "tests_carray_carrayBestIndex.c"
},
{
"function_name": "sqlite3_carray_bind",
"function_signature": "SQLITE_API int sqlite3_carray_bind(\n sqlite3_stmt *pStmt,\n int idx,\n void *aData,\n int nData,\n int mFlags,\n void (*xDestroy)(void*)\n)",
"test_filename": "tests_carray_sqlite3_carray_bind.c"
}
]