Home
last modified time | relevance | path

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

/sqlite-3.40.0/test/
H A Dfuzzinvariants.c308 sqlite3_stmt *pTestCompare /* COLLATE comparison statement or NULL */ in sameValue() argument
341 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()