diff options
author | shaneh <shaneh@noemail.net> | 2011-03-12 04:58:55 +0000 |
---|---|---|
committer | shaneh <shaneh@noemail.net> | 2011-03-12 04:58:55 +0000 |
commit | 11c58f7d8e3b17c674acbfc2ce5b51c0e71121e2 (patch) | |
tree | ceb3c1508f3cc1743f12ba01b18060dfb5b472d5 /src/ctime.c | |
parent | ca6b9d5bbed35d6cf743d8d63b14412391983ec0 (diff) | |
download | sqlite-11c58f7d8e3b17c674acbfc2ce5b51c0e71121e2.tar.gz sqlite-11c58f7d8e3b17c674acbfc2ce5b51c0e71121e2.zip |
More tests for SQLITE_OMIT_UNIQUE_ENFORCEMENT and minor change to implementation.
FossilOrigin-Name: b86999436ec2414c990ba720441fe316f647eef6
Diffstat (limited to 'src/ctime.c')
-rw-r--r-- | src/ctime.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ctime.c b/src/ctime.c index a128f61a6..a04c567b4 100644 --- a/src/ctime.c +++ b/src/ctime.c @@ -302,6 +302,9 @@ static const char * const azCompileOpt[] = { #ifdef SQLITE_OMIT_TRUNCATE_OPTIMIZATION "OMIT_TRUNCATE_OPTIMIZATION", #endif +#ifdef SQLITE_OMIT_UNIQUE_ENFORCEMENT + "OMIT_UNIQUE_ENFORCEMENT", +#endif #ifdef SQLITE_OMIT_UTF16 "OMIT_UTF16", #endif |