1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Remove the SQLITE_OMIT_CONFLICT_CLAUSE preprocessor define which was no

longer in use.

FossilOrigin-Name: 9024955973e90661c99efa2aad1f8c421ee93802
This commit is contained in:
drh
2011-06-20 20:15:53 +00:00
parent 7fd3392981
commit a1dd92c57f
3 changed files with 7 additions and 11 deletions

View File

@@ -225,11 +225,7 @@ static void set_options(Tcl_Interp *interp){
Tcl_SetVar2(interp, "sqlite_options", "compound", "1", TCL_GLOBAL_ONLY);
#endif
#ifdef SQLITE_OMIT_CONFLICT_CLAUSE
Tcl_SetVar2(interp, "sqlite_options", "conflict", "0", TCL_GLOBAL_ONLY);
#else
Tcl_SetVar2(interp, "sqlite_options", "conflict", "1", TCL_GLOBAL_ONLY);
#endif
#if SQLITE_OS_UNIX
Tcl_SetVar2(interp, "sqlite_options", "crashtest", "1", TCL_GLOBAL_ONLY);