Searched refs:pTestCompare (Results 1 – 1 of 1) sorted by relevance
308 sqlite3_stmt *pTestCompare /* COLLATE comparison statement or NULL */ in sameValue() argument341 if( pTestCompare ){ in sameValue()342 sqlite3_bind_value(pTestCompare, 1, sqlite3_column_value(pS1,i1)); in sameValue()343 sqlite3_bind_value(pTestCompare, 2, sqlite3_column_value(pS2,i2)); in sameValue()344 x = sqlite3_step(pTestCompare)==SQLITE_ROW in sameValue()345 && sqlite3_column_int(pTestCompare,0)!=0; in sameValue()346 sqlite3_reset(pTestCompare); in sameValue()