From nw141292@sac.sfbay.sun.com Sun Feb 17 14:57:59 2008
Received: from sunmail4.singapore.sun.com (sunmail4.Singapore.Sun.COM [129.158.71.19])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1HMvwRk015014
	for <psarc-ext@sac.sfbay.Sun.COM>; Sun, 17 Feb 2008 14:57:58 -0800 (PST)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail4.singapore.sun.com (8.13.4+Sun/8.13.3/ENSMAIL,v2.2) with ESMTP id m1HMvs9U006014;
	Mon, 18 Feb 2008 06:57:57 +0800 (SGT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWE00H01NSJBA00@nwk-avmta-1.sfbay.Sun.COM>; Sun,
 17 Feb 2008 14:57:55 -0800 (PST)
Received: from dm-sfbay-02.sfbay.sun.com ([129.146.11.31])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWE00FQ6NSJUFD0@nwk-avmta-1.sfbay.Sun.COM>; Sun,
 17 Feb 2008 14:57:55 -0800 (PST)
Received: from sac.sfbay.sun.com (new-sac.SFBay.Sun.COM [129.146.175.65])
	by dm-sfbay-02.sfbay.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2)
 with ESMTP id m1HMvpYe026018; Sun, 17 Feb 2008 14:57:52 -0800 (PST)
Received: from sac.sfbay.sun.com (localhost [127.0.0.1])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1HMoKWI014678; Sun,
 17 Feb 2008 14:50:20 -0800 (PST)
Received: (from nw141292@localhost)
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8/Submit) id m1HMoKOj014674; Sun,
 17 Feb 2008 14:50:20 -0800 (PST)
Date: Sun, 17 Feb 2008 14:50:20 -0800 (PST)
From: Nicolas Williams <nw141292@sac.sfbay.sun.com>
Subject: SQLite3.x [PSARC/2008/120 FastTrack timeout 02/27/2008]
To: PSARC-ext@sun.com
Cc: Brian.Lu@sun.com, Darren.Kenny@sun.com, Elaine.Xiong@sun.com,
        Evan.Yan@sun.com, Nicolas.Williams@sun.com
Message-id: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.2.0.264296
Status: RO
Content-Length: 8428


Template Version: @(#)sac_nextcase 1.64 07/13/07 SMI
This information is Copyright 2008 Sun Microsystems
1. Introduction
    1.1. Project/Component Working Name:
	 SQLite3.x
    1.2. Name of Document Author/Supplier:
	 Author:  Nicolas Williams
    1.3  Date of This Document:
	17 February, 2008
4. Technical Description
I'm sponsoring this case for myself.  I've set the timer to expire on
2008-02-27.

--------------------------------------------------------------------------------

PROPOSAL
--------

I propose to integrate SQLite 3.x into Solaris via the SFW
consolidation.  If 3.5.7 is released in time then I'll integrate that,
else I'll integrate 3.5.4.

INTRODUCTION
------------

SQLite3 is an open source (public domain) embeddable database that
supports a large subset of SQL92 (and extensions), with a C/C++ API and
a command-line SQL shell.  There are many open source projects that
use SQLite, and bindings for a large number of programming languages.

For much more information about SQLite3 see:

	http://sqlite.org/

The first consumers of SQLite3 in Solaris will be Fifrefox and
Thunderbird.  Python bindings will be provided by PSARC/2008/081.  We
expect a number of possible future consumers of SQLite3 in Solaris and
OpenSolaris, such the SMB server (PSARC/2006/715) and the ID mapping
system (PSARC/2006/315), and perhaps even Solaris Kerberos.

DETAILS
-------

The SQLite3 C/C++ API, SQL syntax and pragmas will be available mostly
as Uncommitted, with some parts of it as Obsolete Volatile and other
parts as Volatile, with the accorded stabilities derived from the
SQLite3 API documentation's use of "internal," "obsolete" and
"experimental" adjectives.  The stability for some aspects of SQLite3.x
is not obvious, such as the CLI's options, some of the pragmata, and
some of SQLite3's advanced thread features.

A more complete listing of interfaces and stabilities is below.

There is some risk is using Uncommitted for SQLite3 interfaces, but
given the SQLite community's record on compatibility this risk seems
low.

IF the SQLite3 community should make a release which breaks interfaces
whose stability we've marked as Uncommitted, and should we need to ship
such a version of SQLite3 prior to a new minor release of Solaris, then
we may have to spend resources to restore the old interface or else,
most likely, ship multiple versions of SQLite (multiple shared objects,
perhaps multiple CLIs, but only the latest version's header files).

Build configuration options will be:

    ./configure --enable-threadsafe --enable-cross-thread-connections --enable-threads-override-locks --enable-debug --enable-shared

Note that one feature will be excluded:

 o readline support for the SQLite3 command shell

No features will be omitted through the use of SQLITE_OMIT_* cpp macros.

No compile-time settable parameters will be set (all have reasonable
defaults, and all can be set at run-time).

Also, neither the "icu" nor "fts2" extensions will be included.  The
former provides better Unicode support via ICU, while the latter
provides a text indexing tool.  A future case may include these, and/or
an extension for use of Solaris' native Unicode APIs.

Note: --enable-threads-override-locks enables a run-time check for
      whether a thread can override another's POSIX advisory file lock.
      Reading the large block comment in SQLite3's src/os_unix.c leads
      me to conclude that a run-time sanity check of this behavior is
      best.

The SQLite3 command shell, shared library and header files will be
delivered as follows:

Note that the version number of the libsqlite3 shared object comes from
SQLite3's build system; it is unclear what it ("0.8.6") means.

    +-------------------------------------+--------------+
    |  Filesystem object                  |  Stability   |
    +-------------------------------------+--------------+
    |                                     |              |
    |   /usr/bin/sqlite3                  |  Committed   |
    |   /usr/lib/libsqlite3.so            |  Committed   |
    |   /usr/lib/libsqlite3.so.0          |  Uncommitted |
    |   /usr/lib/libsqlite3.so.0.8.6      |  Uncommitted |
    |   /usr/lib/pkgconfig/sqlite3.pc     |  Volatile    |
    |   /usr/include/sqlite3.h            |  Committed   |
    |   /usr/include/sqlite3ext.h         |  Committed   |
    |   /usr/share/man/man1/sqlite3.1     |  Committed   |
    |   /usr/share/doc/sqlite3/index.html |  Uncommitted |
    |   /usr/share/doc/sqlite3/*          |  Volatile    |
    |   SUNWsqlite3                       |  Uncommitted |
    |                                     |              |
    +-------------------------------------+--------------+

    +--------------------------+---------------+
    |  Interface               |  Stability    |
    +--------------------------+---------------+
    |                          |               |
    |   CLI options            |  Volatile     |
    |   CLI arguments          |  Uncommitted  |
    |                          |               |
    +--------------------------+---------------+
    |   C/C++ API              |  Uncommitted  |
    |    excluding internal,   |               |
    |    obsolete and          |               |
    |    experimental          |               |
    |    portions (see below)  |               |
    +--------------------------+---------------+
    |   C/C++ API              |  Obsolete     |
    |    obsolete portions     |  Volatile     |
    +--------------------------+---------------+
    |   C/C++ API              |  Volatile     |
    |    experimental portions |               |
    +--------------------------+---------------+
    |   C/C++ API              |  Project      |
    |    internal portions     |  Private      |
    +--------------------------+---------------+
    |   PRAGMAs                |  Volatile     |
    |    excluding obsolete    |               |
    |    and experimental      |               |
    |    portions              |               |
    +--------------------------+---------------+
    |   PRAGMAs                |  Volatile     |
    |    experimental portions |               |
    +--------------------------+---------------+
    |   SQL syntax and         |  Uncommitted  |
    |    features              |               |
    +--------------------------+---------------+
    |   EXPLAIN QUERY PLAN     |  Volatile     |
    |    output                |               |
    +--------------------------+---------------+
    |   EXPLAIN output         |  Volatile     |
    +--------------------------+---------------+

    +--------------------------------------+
    |  Uncommitted interfaces              |
    +--------------------------------------+
    |                                      |
    |   Too many to list -- see notes      |
    |                                      |
    +--------------------------------------+
    |  Obsolete interfaces                 |
    +--------------------------------------+
    |                                      |
    |   sqlite3_aggregate_count()          |
    |   sqlite3_expired()                  |
    |   sqlite3_transfer_bindings()        |
    |   sqlite3_global_recover()           |
    |   sqlite3_thread_cleanup()           |
    |   sqlite3_memory_alarm()             |
    |                                      |
    +--------------------------------------+
    |  Experimental interfaces             |
    +--------------------------------------+
    |                                      |
    |   sqlite3_commit_hook()              |
    |   sqlite3_rollback_hook()            |
    |   sqlite3_trace()                    |
    |   sqlite3_profile()                  |
    |   sqlite3_auto_extension()           |
    |   sqlite3_reset_auto_extension()     |
    |   sqlite3_mutex_held()               |
    |   sqlite3_mutex_notheld()            |
    |                                      |
    |   Incremental VACCUM                 |
    |    (PRAGMA incremental_vacuum(N))    |
    |                                      |
    |   VM tracing and profiling           |
    |                                      |
    +--------------------------------------+


6. Resources and Schedule
    6.4. Steering Committee requested information
   	6.4.1. Consolidation C-team Name:
		SFW
    6.5. ARC review type: FastTrack
    6.6. ARC Exposure: open


From Nicolas.Williams@sun.com Sun Feb 17 15:01:15 2008
Received: from sunmail5.uk.sun.com (sunmail5.UK.Sun.COM [129.156.85.165])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1HN1EhV015108
	for <psarc-ext@sac.sfbay.sun.com>; Sun, 17 Feb 2008 15:01:15 -0800 (PST)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail5.uk.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2) with ESMTP id m1HN17oE001056;
	Sun, 17 Feb 2008 23:01:11 GMT
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWE00H0JNXZMU00@nwk-avmta-1.sfbay.Sun.COM>; Sun,
 17 Feb 2008 15:01:11 -0800 (PST)
Received: from binky.Central.Sun.COM ([129.153.128.104])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWE00FLJNXJUCE0@nwk-avmta-1.sfbay.Sun.COM>; Sun,
 17 Feb 2008 15:00:55 -0800 (PST)
Received: from binky.Central.Sun.COM (localhost [127.0.0.1])
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1) with ESMTP id m1HN0p6F012942;
 Sun, 17 Feb 2008 17:00:51 -0600 (CST)
Received: (from nw141292@localhost)
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1/Submit) id m1HN0oJe012941; Sun,
 17 Feb 2008 17:00:50 -0600 (CST)
Date: Sun, 17 Feb 2008 17:00:50 -0600
From: Nicolas Williams <Nicolas.Williams@sun.com>
Subject: Re: SQLite3.x [PSARC/2008/120 FastTrack timeout 02/27/2008]
In-reply-to: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
To: Nicolas Williams <nw141292@sac.sfbay.sun.com>
Cc: PSARC-ext@sun.com, Brian.Lu@sun.com, Darren.Kenny@sun.com,
        Elaine.Xiong@sun.com, Evan.Yan@sun.com
Mail-followup-to: Nicolas Williams <nw141292@sac.sfbay.sun.com>,
 PSARC-ext@sun.com, Brian.Lu@sun.com, Darren.Kenny@sun.com,
 Elaine.Xiong@sun.com, Evan.Yan@sun.com
Message-id: <20080217230050.GP17042@Sun.COM>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.2.0.264296
References: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
X-Authentication-warning: binky.Central.Sun.COM: nw141292 set sender to
 Nicolas.Williams@sun.com using -f
User-Agent: Mutt/1.5.7i
Status: RO
Content-Length: 466

On Sun, Feb 17, 2008 at 02:50:20PM -0800, Nicolas Williams wrote:
> The first consumers of SQLite3 in Solaris will be Fifrefox and
> Thunderbird.  Python bindings will be provided by PSARC/2008/081.  We

Er, that should be PSARC/2008/117, not PSARC/2008/081.

> expect a number of possible future consumers of SQLite3 in Solaris and
> OpenSolaris, such the SMB server (PSARC/2006/715) and the ID mapping
> system (PSARC/2006/315), and perhaps even Solaris Kerberos.

From Nicolas.Williams@sun.com Sun Feb 17 15:01:46 2008
Received: from sunmail5.uk.sun.com (sunmail5.UK.Sun.COM [129.156.85.165])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1HN1jPk015127
	for <psarc-ext@sac.sfbay.sun.com>; Sun, 17 Feb 2008 15:01:46 -0800 (PST)
Received: from nwk-avmta-2.sfbay.sun.com (nwk-avmta-2.SFBay.Sun.COM [129.145.155.6])
	by sunmail5.uk.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2) with ESMTP id m1HN1Pjq001231;
	Sun, 17 Feb 2008 23:01:43 GMT
Received: from pmxchannel-daemon.nwk-avmta-2.sfbay.sun.com by
 nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWE0013FNYTRQ00@nwk-avmta-2.sfbay.sun.com>; Sun,
 17 Feb 2008 15:01:41 -0800 (PST)
Received: from binky.Central.Sun.COM ([129.153.128.104])
 by nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWE009JGNYMSWB0@nwk-avmta-2.sfbay.sun.com>; Sun,
 17 Feb 2008 15:01:35 -0800 (PST)
Received: from binky.Central.Sun.COM (localhost [127.0.0.1])
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1) with ESMTP id m1HN1YUt012951;
 Sun, 17 Feb 2008 17:01:34 -0600 (CST)
Received: (from nw141292@localhost)
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1/Submit) id m1HN1YY4012950; Sun,
 17 Feb 2008 17:01:34 -0600 (CST)
Date: Sun, 17 Feb 2008 17:01:34 -0600
From: Nicolas Williams <Nicolas.Williams@sun.com>
Subject: Re: SQLite3.x [PSARC/2008/120 FastTrack timeout 02/27/2008]
In-reply-to: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
To: Nicolas Williams <nw141292@sac.sfbay.sun.com>
Cc: PSARC-ext@sun.com, Brian.Lu@sun.com, Darren.Kenny@sun.com,
        Elaine.Xiong@sun.com, Evan.Yan@sun.com
Mail-followup-to: Nicolas Williams <nw141292@sac.sfbay.sun.com>,
 PSARC-ext@sun.com, Brian.Lu@sun.com, Darren.Kenny@sun.com,
 Elaine.Xiong@sun.com, Evan.Yan@sun.com
Message-id: <20080217230133.GQ17042@Sun.COM>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.2.0.264296
References: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
X-Authentication-warning: binky.Central.Sun.COM: nw141292 set sender to
 Nicolas.Williams@sun.com using -f
User-Agent: Mutt/1.5.7i
Status: RO
Content-Length: 55

I left out the release binding requested: patch/micro.

From dduvall@zruty.sfbay.sun.com Sun Feb 17 16:44:22 2008
Received: from sunmail2sca.sfbay.sun.com (sunmail2sca [129.145.155.234])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1I0iMH5016892
	for <psarc-ext@sac.sfbay.sun.com>; Sun, 17 Feb 2008 16:44:22 -0800 (PST)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail2sca.sfbay.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id m1I0iISf006475;
	Sun, 17 Feb 2008 16:44:18 -0800 (PST)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWE00501SPT3F00@nwk-avmta-1.sfbay.Sun.COM>; Sun,
 17 Feb 2008 16:44:17 -0800 (PST)
Received: from zruty.sfbay.sun.com ([129.146.168.40])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWE00M1ZSPTXYA0@nwk-avmta-1.sfbay.Sun.COM>; Sun,
 17 Feb 2008 16:44:17 -0800 (PST)
Received: from zruty.sfbay.sun.com (localhost [127.0.0.1])
	by zruty.sfbay.sun.com (8.14.2+Sun/8.14.2) with ESMTP id m1I0iHbw007281; Sun,
 17 Feb 2008 16:44:17 -0800 (PST)
Received: (from dduvall@localhost)
	by zruty.sfbay.sun.com (8.14.2+Sun/8.14.2/Submit) id m1I0iGX3007280; Sun,
 17 Feb 2008 16:44:17 -0800 (PST)
Date: Sun, 17 Feb 2008 16:44:16 -0800
From: Danek Duvall <danek.duvall@sun.com>
Subject: Re: SQLite3.x [PSARC/2008/120 FastTrack timeout 02/27/2008]
In-reply-to: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
To: Nicolas Williams <nw141292@sac.sfbay.sun.com>
Cc: PSARC-ext@sun.com, Brian.Lu@sun.com, Darren.Kenny@sun.com,
        Elaine.Xiong@sun.com, Evan.Yan@sun.com, Nicolas.Williams@sun.com
Message-id: <20080218004416.GB6010@zruty.sfbay.sun.com>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.2.0.264296
References: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
User-Agent: Mutt/1.5.16 (2007-06-27)
Status: RO
Content-Length: 1251

On Sun, Feb 17, 2008 at 02:50:20PM -0800, Nicolas Williams wrote:

> Note that the version number of the libsqlite3 shared object comes from
> SQLite3's build system; it is unclear what it ("0.8.6") means.
> 
>     +-------------------------------------+--------------+
>     |  Filesystem object                  |  Stability   |
>     +-------------------------------------+--------------+
>     |                                     |              |
>     |   /usr/bin/sqlite3                  |  Committed   |
>     |   /usr/lib/libsqlite3.so            |  Committed   |
>     |   /usr/lib/libsqlite3.so.0          |  Uncommitted |
>     |   /usr/lib/libsqlite3.so.0.8.6      |  Uncommitted |

What's the SONAME in the library?  If it's just "libsqlite.so.0", then
there's little point in shipping the .0.8.6 file at all.  Conversely, if
the SONAME is "libsqlite.so.0.8.6", then there's no point in shipping the
.0 file.

>     |   /usr/lib/pkgconfig/sqlite3.pc     |  Volatile    |

Why is this Volatile?  It seems to me that the pkg-config module names are
among the most stable of the interfaces in most opensource projects.
Almost certainly more stable than the "0.8.6" in the library name, which I
bet changes from release to release.

Danek

From Nicolas.Williams@sun.com Sun Feb 17 20:50:57 2008
Received: from sunmail4.singapore.sun.com (sunmail4.Singapore.Sun.COM [129.158.71.19])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1I4ou2g023206
	for <psarc-ext@sac.sfbay.Sun.COM>; Sun, 17 Feb 2008 20:50:56 -0800 (PST)
Received: from nwk-avmta-2.sfbay.sun.com (nwk-avmta-2.SFBay.Sun.COM [129.145.155.6])
	by sunmail4.singapore.sun.com (8.13.4+Sun/8.13.3/ENSMAIL,v2.2) with ESMTP id m1I4ooCP024619;
	Mon, 18 Feb 2008 12:50:51 +0800 (SGT)
Received: from pmxchannel-daemon.nwk-avmta-2.sfbay.sun.com by
 nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWF00I0144QMN00@nwk-avmta-2.sfbay.sun.com>; Sun,
 17 Feb 2008 20:50:50 -0800 (PST)
Received: from binky.Central.Sun.COM ([129.153.128.104])
 by nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWF00DAV44PDK70@nwk-avmta-2.sfbay.sun.com>; Sun,
 17 Feb 2008 20:50:50 -0800 (PST)
Received: from binky.Central.Sun.COM (localhost [127.0.0.1])
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1) with ESMTP id m1I4onXO013134;
 Sun, 17 Feb 2008 22:50:49 -0600 (CST)
Received: (from nw141292@localhost)
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1/Submit) id m1I4om20013133; Sun,
 17 Feb 2008 22:50:48 -0600 (CST)
Date: Sun, 17 Feb 2008 22:50:48 -0600
From: Nicolas Williams <Nicolas.Williams@sun.com>
Subject: Re: SQLite3.x [PSARC/2008/120 FastTrack timeout 02/27/2008]
In-reply-to: <20080218004416.GB6010@zruty.sfbay.sun.com>
To: Danek Duvall <Danek.Duvall@sun.com>
Cc: Nicolas Williams <nw141292@sac.sfbay.sun.com>, PSARC-ext@sun.com,
        Brian.Lu@sun.com, Darren.Kenny@sun.com, Elaine.Xiong@sun.com,
        Evan.Yan@sun.com
Mail-followup-to: Danek Duvall <Danek.Duvall@Sun.COM>,
 Nicolas Williams <nw141292@sac.sfbay.sun.com>, PSARC-ext@sun.com,
 Brian.Lu@sun.com, Darren.Kenny@sun.com, Elaine.Xiong@sun.com, Evan.Yan@sun.com
Message-id: <20080218045048.GS17042@Sun.COM>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.2.0.264296
References: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
 <20080218004416.GB6010@zruty.sfbay.sun.com>
X-Authentication-warning: binky.Central.Sun.COM: nw141292 set sender to
 Nicolas.Williams@sun.com using -f
User-Agent: Mutt/1.5.7i
Status: RO
Content-Length: 1500

On Sun, Feb 17, 2008 at 04:44:16PM -0800, Danek Duvall wrote:
> On Sun, Feb 17, 2008 at 02:50:20PM -0800, Nicolas Williams wrote:
> 
> > Note that the version number of the libsqlite3 shared object comes from
> > SQLite3's build system; it is unclear what it ("0.8.6") means.
> > 
> >     +-------------------------------------+--------------+
> >     |  Filesystem object                  |  Stability   |
> >     +-------------------------------------+--------------+
> >     |                                     |              |
> >     |   /usr/bin/sqlite3                  |  Committed   |
> >     |   /usr/lib/libsqlite3.so            |  Committed   |
> >     |   /usr/lib/libsqlite3.so.0          |  Uncommitted |
> >     |   /usr/lib/libsqlite3.so.0.8.6      |  Uncommitted |
> 
> What's the SONAME in the library?  If it's just "libsqlite.so.0", then
> there's little point in shipping the .0.8.6 file at all.  Conversely, if
> the SONAME is "libsqlite.so.0.8.6", then there's no point in shipping the
> .0 file.

It's "libsqlite3.so.0".

So I agree, I'll remove the .0.8.6 version.

> >     |   /usr/lib/pkgconfig/sqlite3.pc     |  Volatile    |
> 
> Why is this Volatile?  It seems to me that the pkg-config module names are
> among the most stable of the interfaces in most opensource projects.

That's a mistake.  It'll be Committed.

> Almost certainly more stable than the "0.8.6" in the library name, which I
> bet changes from release to release.

It doesn't, so far as I can tell.

From jyri@buye.red.iplanet.com Tue Feb 19 16:41:24 2008
Received: from newsunmail1brm.central.sun.com (newsunmail1brm.Central.Sun.COM [129.147.62.245])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1K0fOIl009958
	for <psarc-ext@sac.sfbay.sun.com>; Tue, 19 Feb 2008 16:41:24 -0800 (PST)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by newsunmail1brm.central.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id m1K0fHXd051276;
	Tue, 19 Feb 2008 17:41:20 -0700 (MST)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWI00005HWU2P00@nwk-avmta-1.sfbay.Sun.COM>; Tue,
 19 Feb 2008 16:41:18 -0800 (PST)
Received: from buye.red.iplanet.com ([192.18.65.224])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWI00DTXHWUI190@nwk-avmta-1.sfbay.Sun.COM>; Tue,
 19 Feb 2008 16:41:18 -0800 (PST)
Received: from buye.red.iplanet.com (localhost [127.0.0.1])
	by buye.red.iplanet.com (8.13.7+Sun/8.13.7) with ESMTP id m1K0fH0h012293; Tue,
 19 Feb 2008 16:41:17 -0800 (PST)
Received: (from jyri@localhost)
	by buye.red.iplanet.com (8.13.7+Sun/8.13.7/Submit) id m1K0fHbm012292; Tue,
 19 Feb 2008 16:41:17 -0800 (PST)
Date: Tue, 19 Feb 2008 16:41:17 -0800
From: Jyri Virkki <Jyri.Virkki@sun.com>
Subject: Re: SQLite3.x [PSARC/2008/120 FastTrack timeout 02/27/2008]
In-reply-to: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
To: Nicolas Williams <nw141292@sac.sfbay.sun.com>
Cc: PSARC-ext@sun.com, Brian.Lu@sun.com, Darren.Kenny@sun.com,
        Elaine.Xiong@sun.com, Evan.Yan@sun.com, Nicolas.Williams@sun.com
Message-id: <20080220004117.GT11415@sun.com>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.2.0.264296
References: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
User-Agent: Mutt/1.5.11
Status: RO
Content-Length: 248

Nicolas Williams wrote:
>
>     1.1. Project/Component Working Name:
> 	 SQLite3.x

What's the relationship of this SQLite3.x case with the SQLite 3.x
case still open as LSARC/2008/059?


-- 
Jyri J. Virkki - jyri.virkki@sun.com - Sun Microsystems

From Darren.Kenny@sun.com Wed Feb 20 03:55:30 2008
Received: from sunmail4.singapore.sun.com (sunmail4.Singapore.Sun.COM [129.158.71.19])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1KBtTX4027483
	for <psarc-ext@sac.sfbay.Sun.COM>; Wed, 20 Feb 2008 03:55:30 -0800 (PST)
Received: from brm-avmta-1.central.sun.com (brm-avmta-1.Central.Sun.COM [129.147.4.11])
	by sunmail4.singapore.sun.com (8.13.4+Sun/8.13.3/ENSMAIL,v2.2) with ESMTP id m1KBtPMB009880
	for <@sunmail2sca.sfbay.sun.com:PSARC-ext@sun.com>; Wed, 20 Feb 2008 19:55:29 +0800 (SGT)
Received: from pmxchannel-daemon.brm-avmta-1.central.sun.com by
 brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWJ00M03D4FGN00@brm-avmta-1.central.sun.com> for PSARC-ext@sun.com
 (ORCPT PSARC-ext@sun.com); Wed, 20 Feb 2008 04:55:27 -0700 (MST)
Received: from gmp-eb-mail-2.sun.com ([192.18.6.24])
 by brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWJ00943D4EL1B0@brm-avmta-1.central.sun.com> for
 PSARC-ext@sun.com (ORCPT PSARC-ext@sun.com); Wed,
 20 Feb 2008 04:55:27 -0700 (MST)
Received: from fe-emea-10.sun.com (gmp-eb-lb-2-fe1.eu.sun.com [192.18.6.10])
	by gmp-eb-mail-2.sun.com (8.13.7+Sun/8.12.9) with ESMTP id m1KBtPFk013548	for
 <PSARC-ext@sun.com>; Wed, 20 Feb 2008 11:55:26 +0000 (GMT)
Received: from conversion-daemon.fe-emea-10.sun.com by fe-emea-10.sun.com
 (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007))
 id <0JWJ00N01D0G4K00@fe-emea-10.sun.com>
 (original mail from Darren.Kenny@Sun.COM)
 for PSARC-ext@sun.com (ORCPT PSARC-ext@sun.com); Wed,
 20 Feb 2008 11:55:25 +0000 (GMT)
Received: from [129.150.121.192] by fe-emea-10.sun.com
 (Sun Java System Messaging Server 6.2-8.04 (built Feb 28 2007))
 with ESMTPSA id <0JWJ009KLD4CKM40@fe-emea-10.sun.com>; Wed,
 20 Feb 2008 11:55:25 +0000 (GMT)
Date: Wed, 20 Feb 2008 11:55:07 +0000
From: Darren Kenny <Darren.Kenny@sun.com>
Subject: Re: SQLite3.x [PSARC/2008/120 FastTrack timeout 02/27/2008]
In-reply-to: <20080220004117.GT11415@sun.com>
Sender: Darren.Kenny@sun.com
To: Jyri Virkki <Jyri.Virkki@sun.com>
Cc: Nicolas Williams <nw141292@sac.sfbay.sun.com>, psarc-ext@sun.com,
        Brian.Lu@sun.com, Elaine.Xiong@sun.com, Evan.Yan@sun.com,
        Nicolas.Williams@sun.com
Message-id: <47BC151B.8050302@Sun.COM>
MIME-version: 1.0
Content-type: text/plain; charset=ISO-8859-1
Content-transfer-encoding: 7BIT
X-PMX-Version: 5.2.0.264296
References: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
 <20080220004117.GT11415@sun.com>
User-Agent: Thunderbird 2.0.0.9 (X11/20080128)
Status: RO
Content-Length: 298

Hi Jyri,

As I understand it, this project supersedes that project.

Darren.


Jyri Virkki wrote:
> Nicolas Williams wrote:
>>     1.1. Project/Component Working Name:
>> 	 SQLite3.x
> 
> What's the relationship of this SQLite3.x case with the SQLite 3.x
> case still open as LSARC/2008/059?
> 
> 

From Nicolas.Williams@sun.com Wed Feb 20 05:42:50 2008
Received: from sunmail2sca.sfbay.sun.com (sunmail2sca [129.145.155.234])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1KDgnqr000069
	for <psarc-ext@sac.sfbay.sun.com>; Wed, 20 Feb 2008 05:42:50 -0800 (PST)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail2sca.sfbay.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id m1KDgkcV027112;
	Wed, 20 Feb 2008 05:42:46 -0800 (PST)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWJ00B03I39ED00@nwk-avmta-1.sfbay.Sun.COM>; Wed,
 20 Feb 2008 05:42:45 -0800 (PST)
Received: from binky.Central.Sun.COM ([129.153.128.104])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWJ001PUI38Y040@nwk-avmta-1.sfbay.Sun.COM>; Wed,
 20 Feb 2008 05:42:45 -0800 (PST)
Received: from binky.Central.Sun.COM (localhost [127.0.0.1])
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1) with ESMTP id m1KDgiu7015045;
 Wed, 20 Feb 2008 07:42:44 -0600 (CST)
Received: (from nw141292@localhost)
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1/Submit) id m1KDgi4q015044; Wed,
 20 Feb 2008 07:42:44 -0600 (CST)
Date: Wed, 20 Feb 2008 07:42:44 -0600
From: Nicolas Williams <Nicolas.Williams@sun.com>
Subject: Re: SQLite3.x [PSARC/2008/120 FastTrack timeout 02/27/2008]
In-reply-to: <47BC151B.8050302@Sun.COM>
To: Darren Kenny <Darren.Kenny@sun.com>
Cc: Jyri Virkki <Jyri.Virkki@sun.com>,
        Nicolas Williams <nw141292@sac.sfbay.sun.com>, psarc-ext@sun.com,
        Brian.Lu@sun.com, Elaine.Xiong@sun.com, Evan.Yan@sun.com
Mail-followup-to: Darren Kenny <Darren.Kenny@Sun.COM>,
 Jyri Virkki <Jyri.Virkki@sun.com>,
 Nicolas Williams <nw141292@sac.sfbay.sun.com>, psarc-ext@sun.com,
 Brian.Lu@sun.com, Elaine.Xiong@sun.com, Evan.Yan@sun.com
Message-id: <20080220134243.GS14350@Sun.COM>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.2.0.264296
References: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
 <20080220004117.GT11415@sun.com> <47BC151B.8050302@Sun.COM>
X-Authentication-warning: binky.Central.Sun.COM: nw141292 set sender to
 Nicolas.Williams@sun.com using -f
User-Agent: Mutt/1.5.7i
Status: RO
Content-Length: 444

On Wed, Feb 20, 2008 at 11:55:07AM +0000, Darren Kenny wrote:
> As I understand it, this project supersedes that project.

Yes, it does.  I don't know when LSARC/2008/059 will be so marked, but
it will be.

> Jyri Virkki wrote:
> > Nicolas Williams wrote:
> >>     1.1. Project/Component Working Name:
> >> 	 SQLite3.x
> > 
> > What's the relationship of this SQLite3.x case with the SQLite 3.x
> > case still open as LSARC/2008/059?
> > 
> > 

From Nicolas.Williams@sun.com Wed Feb 20 08:37:02 2008
Received: from newsunmail1brm.central.sun.com (newsunmail1brm.Central.Sun.COM [129.147.62.245])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1KGb1ZL006061
	for <psarc-ext@sac.sfbay.sun.com>; Wed, 20 Feb 2008 08:37:02 -0800 (PST)
Received: from nwk-avmta-2.sfbay.sun.com (nwk-avmta-2.SFBay.Sun.COM [129.145.155.6])
	by newsunmail1brm.central.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id m1KGauNM046977;
	Wed, 20 Feb 2008 09:36:56 -0700 (MST)
Received: from pmxchannel-daemon.nwk-avmta-2.sfbay.sun.com by
 nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWJ00M0TQ5KKX00@nwk-avmta-2.sfbay.sun.com>; Wed,
 20 Feb 2008 08:36:56 -0800 (PST)
Received: from binky.Central.Sun.COM ([129.153.128.104])
 by nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWJ00G0TQ5JWBA0@nwk-avmta-2.sfbay.sun.com>; Wed,
 20 Feb 2008 08:36:55 -0800 (PST)
Received: from binky.Central.Sun.COM (localhost [127.0.0.1])
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1) with ESMTP id m1KGat3Y015231;
 Wed, 20 Feb 2008 10:36:55 -0600 (CST)
Received: (from nw141292@localhost)
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1/Submit) id m1KGas6I015230; Wed,
 20 Feb 2008 10:36:54 -0600 (CST)
Date: Wed, 20 Feb 2008 10:36:54 -0600
From: Nicolas Williams <Nicolas.Williams@sun.com>
Subject: Re: SQLite3.x [PSARC/2008/120 FastTrack timeout 02/27/2008]
In-reply-to: <20080217230050.GP17042@Sun.COM>
To: Nicolas Williams <nw141292@sac.sfbay.sun.com>, PSARC-ext@sun.com,
        Brian.Lu@sun.com, Darren.Kenny@sun.com, Elaine.Xiong@sun.com,
        Evan.Yan@sun.com
Mail-followup-to: Nicolas Williams <nw141292@sac.sfbay.sun.com>,
 PSARC-ext@sun.com, Brian.Lu@Sun.COM, Darren.Kenny@Sun.COM,
 Elaine.Xiong@Sun.COM, Evan.Yan@Sun.COM
Message-id: <20080220163654.GX14350@Sun.COM>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.2.0.264296
References: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
 <20080217230050.GP17042@Sun.COM>
X-Authentication-warning: binky.Central.Sun.COM: nw141292 set sender to
 Nicolas.Williams@sun.com using -f
User-Agent: Mutt/1.5.7i
Status: RO
Content-Length: 473

I forgot to include the 64-bit version of libsqlite3 in the materials.
Consider it added, with the expected filesystem objects and stability
attributes.

I notice too that SQLite3 includes Tcl bindings, and these appear to be
as stable as the main C/C++ API.  These will be included, though in a
separate package, SUNWsqlite3tcl, with the same staility attribute as
SUNWsqlite3.  The SQLite3 Tcl bindings will have the same stability
attributes as the C/C++ API.

Nico
-- 

From jyri@buye.red.iplanet.com Wed Feb 20 14:46:23 2008
Received: from sunmail5.uk.sun.com (sunmail5.UK.Sun.COM [129.156.85.165])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1KMkMaq009657
	for <psarc-ext@sac.sfbay.sun.com>; Wed, 20 Feb 2008 14:46:23 -0800 (PST)
Received: from nwk-avmta-2.sfbay.sun.com (nwk-avmta-2.SFBay.Sun.COM [129.145.155.6])
	by sunmail5.uk.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2) with ESMTP id m1KMk8Qa006414;
	Wed, 20 Feb 2008 22:46:18 GMT
Received: from pmxchannel-daemon.nwk-avmta-2.sfbay.sun.com by
 nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWK00D0D794XZ00@nwk-avmta-2.sfbay.sun.com>; Wed,
 20 Feb 2008 14:46:16 -0800 (PST)
Received: from buye.red.iplanet.com ([192.18.65.224])
 by nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWK00D5O794SP00@nwk-avmta-2.sfbay.sun.com>; Wed,
 20 Feb 2008 14:46:16 -0800 (PST)
Received: from buye.red.iplanet.com (localhost [127.0.0.1])
	by buye.red.iplanet.com (8.13.7+Sun/8.13.7) with ESMTP id m1KMkGCe016047; Wed,
 20 Feb 2008 14:46:16 -0800 (PST)
Received: (from jyri@localhost)
	by buye.red.iplanet.com (8.13.7+Sun/8.13.7/Submit) id m1KMkG7P016046; Wed,
 20 Feb 2008 14:46:16 -0800 (PST)
Date: Wed, 20 Feb 2008 14:46:16 -0800
From: Jyri Virkki <Jyri.Virkki@sun.com>
Subject: Re: SQLite3.x [PSARC/2008/120 FastTrack timeout 02/27/2008]
In-reply-to: <20080220134243.GS14350@Sun.COM>
To: Darren Kenny <Darren.Kenny@sun.com>, Jyri Virkki <Jyri.Virkki@sun.com>,
        Nicolas Williams <nw141292@sac.sfbay.sun.com>, psarc-ext@sun.com,
        Brian.Lu@sun.com, Elaine.Xiong@sun.com, Evan.Yan@sun.com
Message-id: <20080220224615.GG15615@sun.com>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.2.0.264296
References: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
 <20080220004117.GT11415@sun.com> <47BC151B.8050302@Sun.COM>
 <20080220134243.GS14350@Sun.COM>
User-Agent: Mutt/1.5.11
Status: RO
Content-Length: 789

Nicolas Williams wrote:
>
> > > What's the relationship of this SQLite3.x case with the SQLite 3.x
> > > case still open as LSARC/2008/059?
> 
> On Wed, Feb 20, 2008 at 11:55:07AM +0000, Darren Kenny wrote:
> > As I understand it, this project supersedes that project.
> 
> Yes, it does.  I don't know when LSARC/2008/059 will be so marked, but
> it will be.

It does seem odd a new case comes superseding the old one in such
short notice but ok!

Please send an email to the old case (i.e. lsarc-ext with subject
containing "LSARC/2008/059") stating that case is superseded by this
one, so there's a pointer in the mail log explaining what happened.

Also work with the case owner so it gets marked closed superseded.

Thanks..
-- 
Jyri J. Virkki - jyri.virkki@sun.com - Sun Microsystems

From Nicolas.Williams@sun.com Wed Feb 20 15:00:24 2008
Received: from sunmail3mpk.sfbay.sun.com (sunmail3mpk [129.146.11.52])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1KN0NOu011459
	for <psarc-ext@sac.sfbay.sun.com>; Wed, 20 Feb 2008 15:00:23 -0800 (PST)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail3mpk.sfbay.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id m1KN0KTX021262;
	Wed, 20 Feb 2008 15:00:20 -0800 (PST)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWK00F0X7WIHW00@nwk-avmta-1.sfbay.Sun.COM>; Wed,
 20 Feb 2008 15:00:19 -0800 (PST)
Received: from binky.Central.Sun.COM ([129.153.128.104])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWK00DY57W5SRE0@nwk-avmta-1.sfbay.Sun.COM>; Wed,
 20 Feb 2008 15:00:06 -0800 (PST)
Received: from binky.Central.Sun.COM (localhost [127.0.0.1])
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1) with ESMTP id m1KN04at015729;
 Wed, 20 Feb 2008 17:00:04 -0600 (CST)
Received: (from nw141292@localhost)
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1/Submit) id m1KN04hl015728; Wed,
 20 Feb 2008 17:00:04 -0600 (CST)
Date: Wed, 20 Feb 2008 17:00:04 -0600
From: Nicolas Williams <Nicolas.Williams@sun.com>
Subject: Re: SQLite3.x [PSARC/2008/120 FastTrack timeout 02/27/2008]
In-reply-to: <20080220224615.GG15615@sun.com>
To: Jyri Virkki <Jyri.Virkki@sun.com>
Cc: Darren Kenny <Darren.Kenny@sun.com>,
        Nicolas Williams <nw141292@sac.sfbay.sun.com>, psarc-ext@sun.com,
        Brian.Lu@sun.com, Elaine.Xiong@sun.com, Evan.Yan@sun.com
Mail-followup-to: Jyri Virkki <Jyri.Virkki@Sun.COM>,
 Darren Kenny <Darren.Kenny@sun.com>,
 Nicolas Williams <nw141292@sac.sfbay.sun.com>, psarc-ext@sun.com,
 Brian.Lu@sun.com, Elaine.Xiong@sun.com, Evan.Yan@sun.com
Message-id: <20080220230004.GU14350@Sun.COM>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.2.0.264296
References: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
 <20080220004117.GT11415@sun.com> <47BC151B.8050302@Sun.COM>
 <20080220134243.GS14350@Sun.COM> <20080220224615.GG15615@sun.com>
X-Authentication-warning: binky.Central.Sun.COM: nw141292 set sender to
 Nicolas.Williams@sun.com using -f
User-Agent: Mutt/1.5.7i
Status: RO
Content-Length: 1170

On Wed, Feb 20, 2008 at 02:46:16PM -0800, Jyri Virkki wrote:
> Nicolas Williams wrote:
> >
> > > > What's the relationship of this SQLite3.x case with the SQLite 3.x
> > > > case still open as LSARC/2008/059?
> > 
> > On Wed, Feb 20, 2008 at 11:55:07AM +0000, Darren Kenny wrote:
> > > As I understand it, this project supersedes that project.
> > 
> > Yes, it does.  I don't know when LSARC/2008/059 will be so marked, but
> > it will be.
> 
> It does seem odd a new case comes superseding the old one in such
> short notice but ok!

Did you read the e-mail record for that case?

> Please send an email to the old case (i.e. lsarc-ext with subject
> containing "LSARC/2008/059") stating that case is superseded by this
> one, so there's a pointer in the mail log explaining what happened.

It's my intention that either I or John Fischer will do that.  We've not
decided when -- e.g., when this case is approved, perhaps.

The mail record for LSARC/2008/059 should already have e-mail indicating
that the i-team ceded the case to me and that I'd either take it over or
file a new case.

> Also work with the case owner so it gets marked closed superseded.

See above.

From jyri@buye.red.iplanet.com Wed Feb 20 15:14:21 2008
Received: from newsunmail1brm.central.sun.com (newsunmail1brm.Central.Sun.COM [129.147.62.245])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1KNELDs012232
	for <psarc-ext@sac.sfbay.sun.com>; Wed, 20 Feb 2008 15:14:21 -0800 (PST)
Received: from nwk-avmta-2.sfbay.sun.com (nwk-avmta-2.SFBay.Sun.COM [129.145.155.6])
	by newsunmail1brm.central.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id m1KNEEQv030869;
	Wed, 20 Feb 2008 16:14:17 -0700 (MST)
Received: from pmxchannel-daemon.nwk-avmta-2.sfbay.sun.com by
 nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWK00F0X8JS2000@nwk-avmta-2.sfbay.sun.com>; Wed,
 20 Feb 2008 15:14:16 -0800 (PST)
Received: from buye.red.iplanet.com ([192.18.65.224])
 by nwk-avmta-2.sfbay.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWK00DEN8JQST20@nwk-avmta-2.sfbay.sun.com>; Wed,
 20 Feb 2008 15:14:14 -0800 (PST)
Received: from buye.red.iplanet.com (localhost [127.0.0.1])
	by buye.red.iplanet.com (8.13.7+Sun/8.13.7) with ESMTP id m1KNEEtD016119; Wed,
 20 Feb 2008 15:14:14 -0800 (PST)
Received: (from jyri@localhost)
	by buye.red.iplanet.com (8.13.7+Sun/8.13.7/Submit) id m1KNEE3W016118; Wed,
 20 Feb 2008 15:14:14 -0800 (PST)
Date: Wed, 20 Feb 2008 15:14:14 -0800
From: Jyri Virkki <Jyri.Virkki@sun.com>
Subject: Re: SQLite3.x [PSARC/2008/120 FastTrack timeout 02/27/2008]
 (LSARC/2008/059)
In-reply-to: <20080220230004.GU14350@Sun.COM>
To: Jyri Virkki <Jyri.Virkki@sun.com>, Darren Kenny <Darren.Kenny@sun.com>,
        Nicolas Williams <nw141292@sac.sfbay.sun.com>, psarc-ext@sun.com,
        Brian.Lu@sun.com, Elaine.Xiong@sun.com, Evan.Yan@sun.com
Message-id: <20080220231414.GL15615@sun.com>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.2.0.264296
References: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
 <20080220004117.GT11415@sun.com> <47BC151B.8050302@Sun.COM>
 <20080220134243.GS14350@Sun.COM> <20080220224615.GG15615@sun.com>
 <20080220230004.GU14350@Sun.COM>
User-Agent: Mutt/1.5.11
Status: RO
Content-Length: 837

Nicolas Williams wrote:
>
> It's my intention that either I or John Fischer will do that.  We've not
> decided when -- e.g., when this case is approved, perhaps.
> 
> The mail record for LSARC/2008/059 should already have e-mail indicating
> that the i-team ceded the case to me and that I'd either take it over or
> file a new case.

There isn't any hint yet in email log of LSARC/2008/059 that it has been
superseded nor any pointer to this new case (I just re-read it).

Should LSARC continue reviewing 2008/059?  Or should in fact it be
closed approved given it is showing a timeout date of 2/15?

Probably not, given this case, but I'm only finding out by hanging out
in psarc-ext... there isn't anything in LSARC/2008/059 record stating
LSARC should stop processing it.

-- 
Jyri J. Virkki - jyri.virkki@sun.com - Sun Microsystems

From Nicolas.Williams@sun.com Wed Feb 20 15:21:47 2008
Received: from sunmail4.singapore.sun.com (sunmail4.Singapore.Sun.COM [129.158.71.19])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1KNLk3F012374
	for <psarc-ext@sac.sfbay.Sun.COM>; Wed, 20 Feb 2008 15:21:46 -0800 (PST)
Received: from nwk-avmta-1.SFBay.Sun.COM (nwk-avmta-1.SFBay.Sun.COM [129.146.11.74])
	by sunmail4.singapore.sun.com (8.13.4+Sun/8.13.3/ENSMAIL,v2.2) with ESMTP id m1KNLQiC020042;
	Thu, 21 Feb 2008 07:21:41 +0800 (SGT)
Received: from pmxchannel-daemon.nwk-avmta-1.sfbay.Sun.COM by
 nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWK00H038W4E400@nwk-avmta-1.sfbay.Sun.COM>; Wed,
 20 Feb 2008 15:21:40 -0800 (PST)
Received: from binky.Central.Sun.COM ([129.153.128.104])
 by nwk-avmta-1.sfbay.Sun.COM
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWK00GFW8W3G400@nwk-avmta-1.sfbay.Sun.COM>; Wed,
 20 Feb 2008 15:21:39 -0800 (PST)
Received: from binky.Central.Sun.COM (localhost [127.0.0.1])
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1) with ESMTP id m1KNLcxo015763;
 Wed, 20 Feb 2008 17:21:38 -0600 (CST)
Received: (from nw141292@localhost)
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1/Submit) id m1KNLcvP015762; Wed,
 20 Feb 2008 17:21:38 -0600 (CST)
Date: Wed, 20 Feb 2008 17:21:38 -0600
From: Nicolas Williams <Nicolas.Williams@sun.com>
Subject: Re: SQLite3.x [PSARC/2008/120 FastTrack timeout 02/27/2008]
 (LSARC/2008/059)
In-reply-to: <20080220231414.GL15615@sun.com>
To: Jyri Virkki <Jyri.Virkki@sun.com>
Cc: Darren Kenny <Darren.Kenny@sun.com>,
        Nicolas Williams <nw141292@sac.sfbay.sun.com>, psarc-ext@sun.com,
        Brian.Lu@sun.com, Elaine.Xiong@sun.com, Evan.Yan@sun.com,
        John Fischer <John.Fischer@sun.com>
Mail-followup-to: Jyri Virkki <Jyri.Virkki@Sun.COM>,
 Darren Kenny <Darren.Kenny@sun.com>,
 Nicolas Williams <nw141292@sac.sfbay.sun.com>, psarc-ext@sun.com,
 Brian.Lu@sun.com, Elaine.Xiong@sun.com, Evan.Yan@sun.com,
 John Fischer <John.Fischer@sun.com>
Message-id: <20080220232138.GW14350@Sun.COM>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.2.0.264296
References: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
 <20080220004117.GT11415@sun.com> <47BC151B.8050302@Sun.COM>
 <20080220134243.GS14350@Sun.COM> <20080220224615.GG15615@sun.com>
 <20080220230004.GU14350@Sun.COM> <20080220231414.GL15615@sun.com>
X-Authentication-warning: binky.Central.Sun.COM: nw141292 set sender to
 Nicolas.Williams@sun.com using -f
User-Agent: Mutt/1.5.7i
Status: RO
Content-Length: 982

On Wed, Feb 20, 2008 at 03:14:14PM -0800, Jyri Virkki wrote:
> Nicolas Williams wrote:
> >
> > It's my intention that either I or John Fischer will do that.  We've not
> > decided when -- e.g., when this case is approved, perhaps.
> > 
> > The mail record for LSARC/2008/059 should already have e-mail indicating
> > that the i-team ceded the case to me and that I'd either take it over or
> > file a new case.
> 
> There isn't any hint yet in email log of LSARC/2008/059 that it has been
> superseded nor any pointer to this new case (I just re-read it).

Hmmm, maybe those e-mails did not cc the case record.  I will send a
heads up.

> Should LSARC continue reviewing 2008/059?  Or should in fact it be
> closed approved given it is showing a timeout date of 2/15?
> 
> Probably not, given this case, but I'm only finding out by hanging out
> in psarc-ext... there isn't anything in LSARC/2008/059 record stating
> LSARC should stop processing it.

Yeah, probably not.

Nico
-- 

From Nicolas.Williams@sun.com Wed Feb 20 16:26:22 2008
Received: from sunmail5.uk.sun.com (sunmail5.UK.Sun.COM [129.156.85.165])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m1L0QLcP018140
	for <psarc-ext@sac.sfbay.sun.com>; Wed, 20 Feb 2008 16:26:21 -0800 (PST)
Received: from brm-avmta-1.central.sun.com (brm-avmta-1.Central.Sun.COM [129.147.4.11])
	by sunmail5.uk.sun.com (8.13.8+Sun/8.13.8/ENSMAIL,v2.2) with ESMTP id m1L0QGFM018225;
	Thu, 21 Feb 2008 00:26:18 GMT
Received: from pmxchannel-daemon.brm-avmta-1.central.sun.com by
 brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JWK00B03BVT1J00@brm-avmta-1.central.sun.com>; Wed,
 20 Feb 2008 17:26:17 -0700 (MST)
Received: from binky.Central.Sun.COM ([129.153.128.104])
 by brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JWK00M0MBVTFA90@brm-avmta-1.central.sun.com>; Wed,
 20 Feb 2008 17:26:17 -0700 (MST)
Received: from binky.Central.Sun.COM (localhost [127.0.0.1])
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1) with ESMTP id m1L0QDft015847;
 Wed, 20 Feb 2008 18:26:13 -0600 (CST)
Received: (from nw141292@localhost)
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1/Submit) id m1L0QCEd015846; Wed,
 20 Feb 2008 18:26:12 -0600 (CST)
Date: Wed, 20 Feb 2008 18:26:12 -0600
From: Nicolas Williams <Nicolas.Williams@sun.com>
Subject: Re: SQLite3.x [PSARC/2008/120 FastTrack timeout 02/27/2008]
In-reply-to: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
To: Nicolas Williams <nw141292@sac.sfbay.sun.com>
Cc: psarc-ext@sun.com, Brian.Lu@sun.com, Darren.Kenny@sun.com,
        Elaine.Xiong@sun.com, Evan.Yan@sun.com
Mail-followup-to: Nicolas Williams <nw141292@sac.sfbay.sun.com>,
 psarc-ext@Sun.COM, Brian.Lu@sun.com, Darren.Kenny@Sun.COM,
 Elaine.Xiong@sun.com, Evan.Yan@sun.com
Message-id: <20080221002612.GB14350@Sun.COM>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.2.0.264296
References: <200802172250.m1HMoKOj014674@sac.sfbay.sun.com>
X-Authentication-warning: binky.Central.Sun.COM: nw141292 set sender to
 Nicolas.Williams@sun.com using -f
User-Agent: Mutt/1.5.7i
Status: RO
Content-Length: 101

This case was just approved during the open ARC business portion of
today's PSARC meeting.

Nico
-- 

From Nicolas.Williams@sun.com Fri Mar 21 11:49:57 2008
Received: from sunmail3mpk.sfbay.sun.com (sunmail3mpk.SFBay.Sun.COM [129.146.11.52])
	by sac.sfbay.sun.com (8.13.8+Sun/8.13.8) with ESMTP id m2LInvkD019621
	for <psarc-ext@sac.sfbay.sun.com>; Fri, 21 Mar 2008 11:49:57 -0700 (PDT)
Received: from brm-avmta-1.central.sun.com (brm-avmta-1.Central.Sun.COM [129.147.4.11])
	by sunmail3mpk.sfbay.sun.com (8.13.7+Sun/8.13.7/ENSMAIL,v2.2) with ESMTP id m2LIntlX014435
	for <@sunmail2sca.sfbay.sun.com:psarc-ext@sun.com>; Fri, 21 Mar 2008 11:49:57 -0700 (PDT)
Received: from pmxchannel-daemon.brm-avmta-1.central.sun.com by
 brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 id <0JY300D0HGB8U000@brm-avmta-1.central.sun.com> for psarc-ext@sun.com
 (ORCPT psarc-ext@sun.com); Fri, 21 Mar 2008 12:49:56 -0600 (MDT)
Received: from binky.Central.Sun.COM ([129.153.128.104])
 by brm-avmta-1.central.sun.com
 (Sun Java System Messaging Server 6.2-3.04 (built Jul 15 2005))
 with ESMTP id <0JY300D0GGB6TO00@brm-avmta-1.central.sun.com> for
 psarc-ext@sun.com (ORCPT psarc-ext@sun.com); Fri,
 21 Mar 2008 12:49:54 -0600 (MDT)
Received: from binky.Central.Sun.COM (localhost [127.0.0.1])
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1) with ESMTP id m2LInsls022313	for
 <psarc-ext@sun.com>; Fri, 21 Mar 2008 13:49:54 -0500 (CDT)
Received: (from nw141292@localhost)
	by binky.Central.Sun.COM (8.14.1+Sun/8.14.1/Submit)
 id m2LIns94022312	for psarc-ext@sun.com; Fri, 21 Mar 2008 13:49:54 -0500 (CDT)
Date: Fri, 21 Mar 2008 13:49:54 -0500
From: Nicolas Williams <Nicolas.Williams@sun.com>
Subject: SQLite3 docs in separate pkg [PSARC/2008/120]
To: psarc-ext@sun.com
Mail-followup-to: psarc-ext@sun.com
Message-id: <20080321184954.GT16998@Sun.COM>
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-PMX-Version: 5.4.1.325704
X-Authentication-warning: binky.Central.Sun.COM: nw141292 set sender to
 Nicolas.Williams@sun.com using -f
User-Agent: Mutt/1.5.7i
Status: RO
Content-Length: 364

During the c-team review for the integration of SQLite3 into SFWNV it
became clear that it would be desirable to move the SQLite3
documentation out of the main pkg (SUNWsqlite3) so that SUNWsqlite3 may
eventually move into a core cluster with minimal impact.  Therefore we
added SUNWsqlite3docs with the same pkg name interface stability as
SUNWsqlite3.

Nico
-- 

