Home
last modified time | relevance | path

Searched refs:azConfig (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/ext/lsm1/lsm-test/
H A Dlsmtest2.c308 const char *azConfig[2] = { in crash_test1() local
321 zCfg = testMallocPrintf("%s automerge=7", azConfig[bCompress]); in crash_test1()
333 testrc = tdb_lsm_open(azConfig[bCompress], DBNAME, 0, &pDb); in crash_test1()
/sqlite-3.40.0/ext/fts5/
H A Dfts5_expr.c2654 const char **azConfig; /* Array of arguments for Fts5Config */ in fts5ExprFunction() local
2675 azConfig = (const char**)sqlite3_malloc64(sizeof(char*) * nConfig); in fts5ExprFunction()
2676 if( azConfig==0 ){ in fts5ExprFunction()
2680 azConfig[0] = 0; in fts5ExprFunction()
2681 azConfig[1] = "main"; in fts5ExprFunction()
2682 azConfig[2] = "tbl"; in fts5ExprFunction()
2685 azConfig[i++] = (z ? z : ""); in fts5ExprFunction()
2691 rc = sqlite3Fts5ConfigParse(pGlobal, db, nConfig, azConfig, &pConfig, &zErr); in fts5ExprFunction()
2720 sqlite3_free((void *)azConfig); in fts5ExprFunction()
H A Dfts5_main.c366 const char **azConfig = (const char**)argv; in fts5InitVtab() local
374 rc = sqlite3Fts5ConfigParse(pGlobal, db, argc, azConfig, &pConfig, pzErr); in fts5InitVtab()