I have a project that compiles SQLite with the following options:

  -DSQLITE_SECURE_DELETE=1
  -DSQLITE_THREADSAFE=1
  -DSQLITE_CORE=1
  -DSQLITE_ENABLE_FTS3=1
  -DSQLITE_ENABLE_UNLOCK_NOTIFY=1
  -DSQLITE_DEFAULT_PAGE_SIZE=32768
  -DSQLITE_MAX_DEFAULT_PAGE_SIZE=32768
  -DSQLITE_MAX_SCHEMA_RETRY=25

and sometimes:

  -DSQLITE_ENABLE_LOCKING_STYLE=1

The project is stable and makes heavy use of SQLite. I'd like to enable the R-Tree index (-DSQLITE_ENABLE_RTREE=1), can I expect any impact to the project beyond allowing the use of R-Tree indexes? Will any existing code work differently (gotchas, stability issues, etc)?

I don't believe this is the case (the docs make no mention of it), but confirmation from someone with greater knowledge of the internals would be appreciated.

Thank you for your time.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to