CoolFace
Modelpublic

AryaWu/sqlite

sourceHugging Faceupdated 9mo agoView on Hugging Face
0likes
dbpage_injectable_functions.json47 linesDownload Raw Back to injectable_functions
1[2  {3    "function_name": "dbpageConnect",4    "function_signature": "static int dbpageConnect(\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_dbpage_dbpageConnect.c"6  },7  {8    "function_name": "dbpageBestIndex",9    "function_signature": "static int dbpageBestIndex(sqlite3_vtab *tab, sqlite3_index_info *pIdxInfo)",10    "test_filename": "tests_dbpage_dbpageBestIndex.c"11  },12  {13    "function_name": "dbpageOpen",14    "function_signature": "static int dbpageOpen(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor)",15    "test_filename": "tests_dbpage_dbpageOpen.c"16  },17  {18    "function_name": "dbpageFilter",19    "function_signature": "static int dbpageFilter(\n  sqlite3_vtab_cursor *pCursor,\n  int idxNum, const char *idxStr,\n  int argc, sqlite3_value **argv\n)",20    "test_filename": "tests_dbpage_dbpageFilter.c"21  },22  {23    "function_name": "dbpageColumn",24    "function_signature": "static int dbpageColumn(\n  sqlite3_vtab_cursor *pCursor,\n  sqlite3_context *ctx,\n  int i\n)",25    "test_filename": "tests_dbpage_dbpageColumn.c"26  },27  {28    "function_name": "dbpageBeginTrans",29    "function_signature": "static int dbpageBeginTrans(DbpageTable *pTab)",30    "test_filename": "tests_dbpage_dbpageBeginTrans.c"31  },32  {33    "function_name": "dbpageUpdate",34    "function_signature": "static int dbpageUpdate(\n  sqlite3_vtab *pVtab,\n  int argc,\n  sqlite3_value **argv,\n  sqlite_int64 *pRowid\n)",35    "test_filename": "tests_dbpage_dbpageUpdate.c"36  },37  {38    "function_name": "dbpageSync",39    "function_signature": "static int dbpageSync(sqlite3_vtab *pVtab)",40    "test_filename": "tests_dbpage_dbpageSync.c"41  },42  {43    "function_name": "sqlite3DbpageRegister",44    "function_signature": "int sqlite3DbpageRegister(sqlite3 *db)",45    "test_filename": "tests_dbpage_sqlite3DbpageRegister.c"46  }47]