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

Unified Diff: third_party/sqlite/src/parse.y

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/preprocessed/parse.c ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/src/parse.y
===================================================================
--- third_party/sqlite/src/parse.y (revision 31762)
+++ third_party/sqlite/src/parse.y (working copy)
@@ -121,12 +121,7 @@
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;}
« no previous file with comments | « third_party/sqlite/preprocessed/parse.c ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698