Searched refs:compareInfo (Results 1 – 1 of 1) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | func.c | 619 struct compareInfo { struct 639 static const struct compareInfo globInfo = { '*', '?', '[', 0 }; argument 642 static const struct compareInfo likeInfoNorm = { '%', '_', 0, 1 }; 645 static const struct compareInfo likeInfoAlt = { '%', '_', 0, 0 }; 695 const struct compareInfo *pInfo, /* Information about how to do the compare */ in patternCompare() 880 struct compareInfo *pInfo = sqlite3_user_data(context); in likeFunc() 881 struct compareInfo backupInfo; in likeFunc() 1938 struct compareInfo *pInfo; in sqlite3RegisterLikeFunctions() 1941 pInfo = (struct compareInfo*)&likeInfoAlt; in sqlite3RegisterLikeFunctions() 1944 pInfo = (struct compareInfo*)&likeInfoNorm; in sqlite3RegisterLikeFunctions()
|