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

Unified Diff: third_party/sqlite/misc.patch

Issue 387030: Revert the patch that makes SQLite interpret BEGIN as BEGIN IMMEDIATE,... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Final version. Had to sync README.chromium. Created 11 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/sqlite/google_generate_preprocessed.sh ('k') | third_party/sqlite/preprocessed/parse.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/misc.patch
===================================================================
--- third_party/sqlite/misc.patch (revision 31762)
+++ third_party/sqlite/misc.patch (working copy)
@@ -295,23 +295,6 @@
+}
+
#endif /* SQLITE_OS_WIN */
-Index: src/parse.y
-===================================================================
---- src/parse.y 2009-09-04 13:37:42.000000000 -0700
-+++ src/parse.y 2009-09-15 11:32:03.000000000 -0700
-@@ -121,7 +121,12 @@
- trans_opt ::= TRANSACTION.
- trans_opt ::= TRANSACTION nm.
- %type transtype {int}
-+%ifdef SQLITE_TRANSACTION_DEFAULT_IMMEDIATE
-+transtype(A) ::= . {A = TK_IMMEDIATE;}
-+%endif SQLITE_TRANSACTION_DEFAULT_IMMEDIATE
-+%ifndef SQLITE_TRANSACTION_DEFAULT_IMMEDIATE
- transtype(A) ::= . {A = TK_DEFERRED;}
-+%endif SQLITE_TRANSACTION_DEFAULT_IMMEDIATE
- transtype(A) ::= DEFERRED(X). {A = @X;}
- transtype(A) ::= IMMEDIATE(X). {A = @X;}
- transtype(A) ::= EXCLUSIVE(X). {A = @X;}
Index: src/pcache.c
===================================================================
--- src/pcache.c 2009-09-04 13:37:42.000000000 -0700
« no previous file with comments | « third_party/sqlite/google_generate_preprocessed.sh ('k') | third_party/sqlite/preprocessed/parse.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698