CoolFace
Modelpublic

AryaWu/sqlite

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
vdbevtab_injectable_functions.json37 linesDownload Raw Back to injectable_functions
1[2  {3    "function_name": "bytecodevtabConnect",4    "function_signature": "static int bytecodevtabConnect(\n  sqlite3 *db,\n  void *pAux,\n  int argc, const char *const*argv,\n  sqlite3_vtab **ppVtab,\n  char **pzErr\n)",5    "test_filename": "tests_vdbevtab_bytecodevtabConnect.c"6  },7  {8    "function_name": "bytecodevtabOpen",9    "function_signature": "static int bytecodevtabOpen(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor)",10    "test_filename": "tests_vdbevtab_bytecodevtabOpen.c"11  },12  {13    "function_name": "bytecodevtabCursorClear",14    "function_signature": "static void bytecodevtabCursorClear(bytecodevtab_cursor *pCur)",15    "test_filename": "tests_vdbevtab_bytecodevtabCursorClear.c"16  },17  {18    "function_name": "bytecodevtabNext",19    "function_signature": "static int bytecodevtabNext(sqlite3_vtab_cursor *cur)",20    "test_filename": "tests_vdbevtab_bytecodevtabNext.c"21  },22  {23    "function_name": "bytecodevtabColumn",24    "function_signature": "static int bytecodevtabColumn(\n  sqlite3_vtab_cursor *cur,   /* The cursor */\n  sqlite3_context *ctx,       /* First argument to sqlite3_result_...() */\n  int i                       /* Which column to return */\n)",25    "test_filename": "tests_vdbevtab_bytecodevtabColumn.c"26  },27  {28    "function_name": "bytecodevtabFilter",29    "function_signature": "static int bytecodevtabFilter(\n  sqlite3_vtab_cursor *pVtabCursor, \n  int idxNum, const char *idxStr,\n  int argc, sqlite3_value **argv\n)",30    "test_filename": "tests_vdbevtab_bytecodevtabFilter.c"31  },32  {33    "function_name": "bytecodevtabBestIndex",34    "function_signature": "static int bytecodevtabBestIndex(\n  sqlite3_vtab *tab,\n  sqlite3_index_info *pIdxInfo\n)",35    "test_filename": "tests_vdbevtab_bytecodevtabBestIndex.c"36  }37]