diff options
author | adam <adam@pkgsrc.org> | 2021-11-28 20:48:28 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2021-11-28 20:48:28 +0000 |
commit | 471d8dcbc701bcee3bfe5232e3d1834e5ef99bd7 (patch) | |
tree | b895504f1a189b2b48122e95307f28c9e6e8eca3 /databases/sqlite3/Makefile | |
parent | d5721ed56d34bca0c6872447cb251d74f84e8eb2 (diff) | |
download | pkgsrc-471d8dcbc701bcee3bfe5232e3d1834e5ef99bd7.tar.gz |
sqlite3: updated to 3.37.0
SQLite Release 3.37.0 On 2021-11-27
STRICT tables provide a prescriptive style of data type management, for developers who prefer that kind of thing.
When adding columns that contain a CHECK constraint or a generated column containing a NOT NULL constraint, the ALTER TABLE ADD COLUMN now checks new constraints against preexisting rows in the database and will only proceed if no constraints are violated.
Added the PRAGMA table_list statement.
CLI enhancements:
Add the .connection command, allowing the CLI to keep multiple database connections open at the same time.
Add the --safe command-line option that disables dot-commands and SQL statements that might cause side-effects that extend beyond the single database file named on the command-line.
Performance improvements when reading SQL statements that span many lines.
Added the sqlite3_autovacuum_pages() interface.
The sqlite3_deserialize() does not and has never worked for the TEMP database. That limitation is now noted in the documentation.
The query planner now omits ORDER BY clauses on subqueries and views if removing those clauses does not change the semantics of the query.
The generate_series table-valued function extension is modified so that the first parameter ("START") is now required. This is done as a way to demonstrate how to write table-valued functions with required parameters. The legacy behavior is available using the -DZERO_ARGUMENT_GENERATE_SERIES compile-time option.
Added new sqlite3_changes64() and sqlite3_total_changes64() interfaces.
Added the SQLITE_OPEN_EXRESCODE flag option to sqlite3_open_v2().
Use less memory to hold the database schema.
Diffstat (limited to 'databases/sqlite3/Makefile')
-rw-r--r-- | databases/sqlite3/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile index 9b20f15141a..5807175e4bd 100644 --- a/databases/sqlite3/Makefile +++ b/databases/sqlite3/Makefile @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.142 2021/10/17 07:14:27 wiz Exp $ +# $NetBSD: Makefile,v 1.143 2021/11/28 20:48:28 adam Exp $ .include "Makefile.common" DISTNAME= sqlite-autoconf-${SQLITE3_DISTVERSION} PKGNAME= sqlite3-${SQLITE3_VERSION} -PKGREVISION= 1 CATEGORIES= databases MAINTAINER= pkgsrc-users@NetBSD.org |