Re: [sqlite] OMIT_VIRTUALTABLE

2011-09-14 Thread Baruch Burstein
I did this. This produces a customized amalgamation. This is the amalgamation I was referring to. Please see my follow-up mail. On Wed, Sep 14, 2011 at 11:57 AM, Dan Kennedy wrote: > On 09/14/2011 03:38 PM, Baruch Burstein wrote: > >> When using OMIT_VIRTUALTABLE, I get a

Re: [sqlite] OMIT_VIRTUALTABLE

2011-09-14 Thread Dan Kennedy
On 09/14/2011 03:38 PM, Baruch Burstein wrote: When using OMIT_VIRTUALTABLE, I get a warning at line 11688 (3.7.7.1 amalgamation) that sqlite3GetVTable is used but never defined. If I add #ifndef SQLITE_OMIT_VIRTUALTABLE #endif around it, I get an error at line 81609, because this function is

Re: [sqlite] OMIT_VIRTUALTABLE

2011-09-14 Thread Baruch Burstein
I just realized the line numbers I gave are meaningless as they apply to my custom amalgamation (generated with a bunch of OMIT_*). Here is a better explanation of where to find these lines: The first is near the end (4 lines up) of a block that starts with #ifdef SQLITE_OMIT_VIRTUALTABLE > #

[sqlite] OMIT_VIRTUALTABLE

2011-09-14 Thread Baruch Burstein
When using OMIT_VIRTUALTABLE, I get a warning at line 11688 (3.7.7.1 amalgamation) that sqlite3GetVTable is used but never defined. If I add #ifndef SQLITE_OMIT_VIRTUALTABLE #endif around it, I get an error at line 81609, because this function is actually used there! a) Is this a bug, and when