Re: [sqlite] REGEXP implementation with pcre

2007-07-18 Thread Alexey Tourbin
On Wed, Jul 11, 2007 at 09:07:39AM -0500, Neil Best wrote: > see code from original post at > http://article.gmane.org/gmane.comp.db.sqlite.general/23584 BTW, the code has been released under the same terms as SQLite itself. http://git.altlinux.org/people/at/packages/?p=sqlite3-pcre.git git://git.

Re: [sqlite] Version 3.3.15

2007-04-09 Thread Alexey Tourbin
On Mon, Apr 09, 2007 at 08:31:48PM +, [EMAIL PROTECTED] wrote: > > corrupt3-1.3...*** stack smashing detected ***: ./testfixture terminated > > make: *** [test] Aborted > > http://www.sqlite.org/cvstrac/chngview?cn=3832 Thanks. pgphnce3I6sXZ.pgp Description: PGP signature

Re: [sqlite] Version 3.3.15

2007-04-09 Thread Alexey Tourbin
On Mon, Apr 09, 2007 at 02:07:24PM +, [EMAIL PROTECTED] wrote: > SQLite version 3.3.15 is now available on the website corrupt3-1.3...*** stack smashing detected ***: ./testfixture terminated make: *** [test] Aborted pgpdiEyWVpdsH.pgp Description: PGP signature

Re: [sqlite] exclusive2.test failures

2007-04-03 Thread Alexey Tourbin
On Tue, Apr 03, 2007 at 11:03:54PM +0700, Dan Kennedy wrote: > > exclusive2-1.7... > > Expected: [1] > > Got: [2] > > exclusive2-1.9... > > Expected: [1] > > Got: [0] > > exclusive2-1.10... Ok > > exclusive2-1.11... Ok > > exclusive2-2.1... Ok > > exclusive2-2.2... Ok > > exclusive2-2.3..

Re: [sqlite] exclusive2.test failures

2007-04-03 Thread Alexey Tourbin
On Tue, Apr 03, 2007 at 01:52:30PM +, [EMAIL PROTECTED] wrote: > Alexey Tourbin <[EMAIL PROTECTED]> wrote: > > > > I have a few other modifications in which my sqlite3 snapshot differs > > from that of cvs, which are > > 1) debian patch for lemon, > > 2

Re: [sqlite] exclusive2.test failures

2007-04-03 Thread Alexey Tourbin
On Tue, Apr 03, 2007 at 12:20:27PM +, [EMAIL PROTECTED] wrote: > Some tests fail *for you*. Other people report that everything > is working fine, and indeed, we do not have any test failures Sure. The implied question was whether the test failures are easily reproducible, and if they are, t

[sqlite] exclusive2.test failures

2007-04-03 Thread Alexey Tourbin
Hello, With most recent sqlite3 cvs snapshot, some exclusive2 tests fail: $ ./testfixture test/exclusive2.test exclusive2-1.0... Ok exclusive2-1.1... Ok exclusive2-1.2... Ok exclusive2-1.3... Ok exclusive2-1.4... Ok exclusive2-1.5... Ok exclusive2-1.6... Ok exclusive2-1.7... Expected: [1] Go

[sqlite] types3-1.3 fails on x86_64

2007-02-21 Thread Alexey Tourbin
Hello, All tests pass on i386 but the following test fails on x86_64: types3-1.3... Expected: [wideInt integer] Got: [int integer] pgpOit3QhrHc1.pgp Description: PGP signature

[sqlite] REGEXP implementation with pcre

2006-11-14 Thread Alexey Tourbin
Hello, I've just written sqlite3 loadable module which implements REGEXP operator with Perl-Compatible Regular Expressions library. It has LRU cache for compiled regular expressions, so it is probably fast. $ cflags=`pkg-config --cflags sqlite3 libpcre` $ libs=`pkg-config --libs sqlite3 libpcre`