1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-05 15:55:57 +03:00

Changes to allow libsqlite3.a and libsqlite.a to be both linked into the

same program at the same time. (CVS 1621)

FossilOrigin-Name: 2590fffcaa92adc619f7a927d2b5169d8dfef50a
This commit is contained in:
drh
2004-06-18 17:10:16 +00:00
parent 43d0578e04
commit 38f8271f81
12 changed files with 54 additions and 48 deletions

View File

@@ -551,7 +551,7 @@ static int checkColumnOverLap(IdList *pIdList, ExprList *pEList){
* The pragma is not documented since it is not really part of the interface
* to SQLite, just the test procedure.
*/
int always_code_trigger_setup = 0;
int sqlite3_always_code_trigger_setup = 0;
/*
* Returns true if a trigger matching op, tr_tm and foreach that is NOT already
@@ -568,7 +568,7 @@ int sqlite3TriggersExist(
){
Trigger * pTriggerCursor;
if( always_code_trigger_setup ){
if( sqlite3_always_code_trigger_setup ){
return 1;
}