aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2010-02-26 16:37:47 +0000
committerdrh <drh@noemail.net>2010-02-26 16:37:47 +0000
commit8bb76d39a0e9622deb0f92745698f3850406159c (patch)
tree3361ad0ea57ab1c6111841a9b0f1e5a347746205 /src
parent71caabf0cc0c163472cd59c13fd7b96de64e171e (diff)
downloadsqlite-8bb76d39a0e9622deb0f92745698f3850406159c.tar.gz
sqlite-8bb76d39a0e9622deb0f92745698f3850406159c.zip
Rename the sqlite_compile_option_*() SQL functions to sqlite_compileoption_*()
for consistency with the C/C++ interface. FossilOrigin-Name: dd4962aa34c4dd118d2cb15465384636eacc64d5
Diffstat (limited to 'src')
-rw-r--r--src/func.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/func.c b/src/func.c
index 12ee5168b..7ff1fecb0 100644
--- a/src/func.c
+++ b/src/func.c
@@ -1549,8 +1549,8 @@ void sqlite3RegisterGlobalFunctions(void){
FUNCTION(sqlite_version, 0, 0, 0, versionFunc ),
FUNCTION(sqlite_source_id, 0, 0, 0, sourceidFunc ),
#ifndef SQLITE_OMIT_COMPILEOPTION_DIAGS
- FUNCTION(sqlite_compile_option_used,1, 0, 0, compileoptionusedFunc ),
- FUNCTION(sqlite_compile_option_get, 1, 0, 0, compileoptiongetFunc ),
+ FUNCTION(sqlite_compileoption_used,1, 0, 0, compileoptionusedFunc ),
+ FUNCTION(sqlite_compileoption_get, 1, 0, 0, compileoptiongetFunc ),
#endif /* SQLITE_OMIT_COMPILEOPTION_DIAGS */
FUNCTION(quote, 1, 0, 0, quoteFunc ),
FUNCTION(last_insert_rowid, 0, 0, 0, last_insert_rowid),