Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(666)

Side by Side Diff: third_party/sqlite/src/src/sqliteInt.h

Issue 1022423004: [sqlite backport] Fix collation dequoting. (Closed) Base URL: http://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/sqlite/src/src/parse.y ('k') | third_party/sqlite/src/src/where.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 ** 2001 September 15 2 ** 2001 September 15
3 ** 3 **
4 ** The author disclaims copyright to this source code. In place of 4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing: 5 ** a legal notice, here is a blessing:
6 ** 6 **
7 ** May you do good and not evil. 7 ** May you do good and not evil.
8 ** May you find forgiveness for yourself and forgive others. 8 ** May you find forgiveness for yourself and forgive others.
9 ** May you share freely, never taking more than you give. 9 ** May you share freely, never taking more than you give.
10 ** 10 **
(...skipping 3444 matching lines...) Expand 10 before | Expand all | Expand 10 after
3455 3455
3456 #if defined(SQLITE_TEST) 3456 #if defined(SQLITE_TEST)
3457 const char *sqlite3ErrName(int); 3457 const char *sqlite3ErrName(int);
3458 #endif 3458 #endif
3459 3459
3460 const char *sqlite3ErrStr(int); 3460 const char *sqlite3ErrStr(int);
3461 int sqlite3ReadSchema(Parse *pParse); 3461 int sqlite3ReadSchema(Parse *pParse);
3462 CollSeq *sqlite3FindCollSeq(sqlite3*,u8 enc, const char*,int); 3462 CollSeq *sqlite3FindCollSeq(sqlite3*,u8 enc, const char*,int);
3463 CollSeq *sqlite3LocateCollSeq(Parse *pParse, const char*zName); 3463 CollSeq *sqlite3LocateCollSeq(Parse *pParse, const char*zName);
3464 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr); 3464 CollSeq *sqlite3ExprCollSeq(Parse *pParse, Expr *pExpr);
3465 Expr *sqlite3ExprAddCollateToken(Parse *pParse, Expr*, const Token*); 3465 Expr *sqlite3ExprAddCollateToken(Parse *pParse, Expr*, const Token*, int);
3466 Expr *sqlite3ExprAddCollateString(Parse*,Expr*,const char*); 3466 Expr *sqlite3ExprAddCollateString(Parse*,Expr*,const char*);
3467 Expr *sqlite3ExprSkipCollate(Expr*); 3467 Expr *sqlite3ExprSkipCollate(Expr*);
3468 int sqlite3CheckCollSeq(Parse *, CollSeq *); 3468 int sqlite3CheckCollSeq(Parse *, CollSeq *);
3469 int sqlite3CheckObjectName(Parse *, const char *); 3469 int sqlite3CheckObjectName(Parse *, const char *);
3470 void sqlite3VdbeSetChanges(sqlite3 *, int); 3470 void sqlite3VdbeSetChanges(sqlite3 *, int);
3471 int sqlite3AddInt64(i64*,i64); 3471 int sqlite3AddInt64(i64*,i64);
3472 int sqlite3SubInt64(i64*,i64); 3472 int sqlite3SubInt64(i64*,i64);
3473 int sqlite3MulInt64(i64*,i64); 3473 int sqlite3MulInt64(i64*,i64);
3474 int sqlite3AbsInt32(int); 3474 int sqlite3AbsInt32(int);
3475 #ifdef SQLITE_ENABLE_8_3_NAMES 3475 #ifdef SQLITE_ENABLE_8_3_NAMES
(...skipping 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
3816 3816
3817 /* 3817 /*
3818 ** Threading interface 3818 ** Threading interface
3819 */ 3819 */
3820 #if SQLITE_MAX_WORKER_THREADS>0 3820 #if SQLITE_MAX_WORKER_THREADS>0
3821 int sqlite3ThreadCreate(SQLiteThread**,void*(*)(void*),void*); 3821 int sqlite3ThreadCreate(SQLiteThread**,void*(*)(void*),void*);
3822 int sqlite3ThreadJoin(SQLiteThread*, void**); 3822 int sqlite3ThreadJoin(SQLiteThread*, void**);
3823 #endif 3823 #endif
3824 3824
3825 #endif /* _SQLITEINT_H_ */ 3825 #endif /* _SQLITEINT_H_ */
OLDNEW
« no previous file with comments | « third_party/sqlite/src/src/parse.y ('k') | third_party/sqlite/src/src/where.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698