Up to [cvs.NetBSD.org] / pkgsrc / databases / sqlite3
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.153 / (download) - annotate - [select for diffs], Sat Nov 25 21:07:38 2023 UTC (11 days, 13 hours ago) by adam
Branch: MAIN
CVS Tags: HEAD
Changes since 1.152: +1 -2
lines
Diff to previous 1.152 (colored)
sqlite3: updated to 3.44.2 3.44.1 (2023-11-22): Change the CLI so that it uses UTF-16 for console I/O on Windows. This enables proper display of unicode text on old Windows7 machines. Other obscure bug fixes. 3.44.2 (2023-11-24): Fix a mistake in the CLI that was introduced by the fix (item 15 above) in 3.44.1. Fix a problem in FTS5 that was discovered during internal fuzz testing only minutes after the 3.44.1 release was tagged. Fix incomplete assert() statements that the fuzzer discovered the day after the previous release. Fix a couple of harmless compiler warnings that appeared in debug builds with GCC 16.
Revision 1.152 / (download) - annotate - [select for diffs], Wed Nov 8 13:18:37 2023 UTC (4 weeks ago) by wiz
Branch: MAIN
Changes since 1.151: +2 -1
lines
Diff to previous 1.151 (colored)
*: recursive bump for icu 74.1
Revision 1.151 / (download) - annotate - [select for diffs], Wed May 17 12:29:57 2023 UTC (6 months, 3 weeks ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2023Q3-base,
pkgsrc-2023Q3,
pkgsrc-2023Q2-base,
pkgsrc-2023Q2
Changes since 1.150: +1 -2
lines
Diff to previous 1.150 (colored)
sqlite3: updated to 3.42.0 SQLite Release 3.42.0 On 2023-05-16 Add the FTS5 secure-delete command. This option causes all forensic traces to be removed from the FTS5 inverted index when content is deleted. Enhance the JSON SQL functions to support JSON5 extensions. The SQLITE_CONFIG_LOG and SQLITE_CONFIG_PCACHE_HDRSZ calls to sqlite3_config() are now allowed to occur after sqlite3_initialize(). New sqlite3_db_config() options: SQLITE_DBCONFIG_STMT_SCANSTATUS and SQLITE_DBCONFIG_REVERSE_SCANORDER. Query planner improvements: Enable the "count-of-view" optimization by default. Avoid computing unused columns in subqueries. Improvements to the push-down optimization. Enhancements to the CLI: Add the --unsafe-testing command-line option. Without this option, some dot-commands (ex: ".testctrl") are now disabled because those commands that are intended for testing only and can cause malfunctions misused. Allow commands ".log on" and ".log off", even in --safe mode. "--" as a command-line argument means all subsequent arguments that start with "-" are interpreted as normal non-option argument. Magic parameters ":inf" and ":nan" bind to floating point literals Infinity and NaN, respectively. The --utf8 command-line option omits all translation to or from MBCS on the Windows console for interactive sessions, and sets the console code page for UTF-8 I/O during such sessions. The --utf8 option is a no-op on all other platforms. Add the ability for application-defined SQL functions to have the same name as join keywords: CROSS, FULL, INNER, LEFT, NATURAL, OUTER, or RIGHT. Enhancements to PRAGMA integrity_check: Detect and raise an error when a NaN value is stored in a NOT NULL column. Improved error message output identifies the root page of a b-tree when an error is found within a b-tree. Allow the session extension to be configured to capture changes from tables that lack an explicit ROWID. Added the subsecond modifier to the date and time functions. Negative values passed into sqlite3_sleep() are henceforth interpreted as 0. The maximum recursion depth for JSON arrays and objects is lowered from 2000 to 1000. Extended the built-in printf() function so the comma option now works with floating-point conversions in addition to integer conversions. Miscellaneous bug fixes and performance optimizations
Revision 1.150 / (download) - annotate - [select for diffs], Wed Apr 19 08:08:08 2023 UTC (7 months, 2 weeks ago) by adam
Branch: MAIN
Changes since 1.149: +2 -1
lines
Diff to previous 1.149 (colored)
revbump after textproc/icu update
Revision 1.149 / (download) - annotate - [select for diffs], Wed Dec 28 22:26:06 2022 UTC (11 months, 1 week ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2023Q1-base,
pkgsrc-2023Q1
Changes since 1.148: +1 -2
lines
Diff to previous 1.148 (colored)
sqlite3: updated to 3.40.1 3.40.1 (2022-12-28): Fix the --safe command-line option to the CLI such that it correctly disallows the use of SQL functions like writefile() that can cause harmful side-effects. Fix a potential infinite loop in the memsys5 alternative memory allocator. This bug was introduced by a performance optimization in version 3.39.0. Various other obscure fixes.
Revision 1.148 / (download) - annotate - [select for diffs], Wed Nov 23 16:18:36 2022 UTC (12 months, 1 week ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2022Q4-base,
pkgsrc-2022Q4
Changes since 1.147: +2 -1
lines
Diff to previous 1.147 (colored)
massive revision bump after textproc/icu update
Revision 1.147 / (download) - annotate - [select for diffs], Wed Apr 27 17:12:17 2022 UTC (19 months, 1 week ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2022Q3-base,
pkgsrc-2022Q3,
pkgsrc-2022Q2-base,
pkgsrc-2022Q2
Changes since 1.146: +1 -2
lines
Diff to previous 1.146 (colored)
sqlite3: updated to 3.38.3 changes in version 3.38.3 (2022-04-27): Fix a case of the query planner be overly aggressive with optimizing automatic-index and Bloom-filter construction, using inappropriate ON clause terms to restrict the size of the automatic-index or Bloom filter, and resulting in missing rows in the output. Forum thread 0d3200f4f3bcd3a3. Other minor patches. See the timeline for details.
Revision 1.146 / (download) - annotate - [select for diffs], Mon Apr 18 19:09:43 2022 UTC (19 months, 2 weeks ago) by adam
Branch: MAIN
Changes since 1.145: +2 -1
lines
Diff to previous 1.145 (colored)
revbump for textproc/icu update
Revision 1.145 / (download) - annotate - [select for diffs], Thu Dec 30 20:31:51 2021 UTC (23 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2022Q1-base,
pkgsrc-2022Q1
Changes since 1.144: +1 -2
lines
Diff to previous 1.144 (colored)
sqlite3: updated to 3.37.1 version 3.37.1 Fix a bug introduced by the UPSERT enhancements of version 3.35.0 that can cause incorrect byte-code to be generated for some obscure but valid SQL, possibly resulting in a NULL-pointer dereference. Fix an OOB read that can occur in FTS5 when reading corrupt database files. Improved robustness of the --safe option in the CLI. Other minor fixes to assert() statements and test cases.
Revision 1.144 / (download) - annotate - [select for diffs], Wed Dec 8 16:01:49 2021 UTC (23 months, 4 weeks ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q4-base,
pkgsrc-2021Q4
Changes since 1.143: +2 -1
lines
Diff to previous 1.143 (colored)
revbump for icu and libffi
Revision 1.143 / (download) - annotate - [select for diffs], Sun Nov 28 20:48:28 2021 UTC (2 years ago) by adam
Branch: MAIN
Changes since 1.142: +1 -2
lines
Diff to previous 1.142 (colored)
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.
Revision 1.141.2.1 / (download) - annotate - [select for diffs], Sun Oct 17 10:12:02 2021 UTC (2 years, 1 month ago) by tm
Branch: pkgsrc-2021Q3
Changes since 1.141: +2 -1
lines
Diff to previous 1.141 (colored) next main 1.142 (colored)
Pullup ticket #6520 - requested by wiz databases/sqlite3: segfault fix Revisions pulled up: - databases/sqlite3/Makefile 1.142 - databases/sqlite3/distinfo 1.173 - databases/sqlite3/patches/patch-shell.c 1.1 --- Module Name: pkgsrc Committed By: wiz Date: Sun Oct 17 07:14:27 UTC 2021 Modified Files: pkgsrc/databases/sqlite3: Makefile distinfo Added Files: pkgsrc/databases/sqlite3/patches: patch-shell.c Log Message: sqlite3: fix (disputed) CVE-2021-36690 Bump PKGREVISION.
Revision 1.142 / (download) - annotate - [select for diffs], Sun Oct 17 07:14:27 2021 UTC (2 years, 1 month ago) by wiz
Branch: MAIN
Changes since 1.141: +2 -1
lines
Diff to previous 1.141 (colored)
sqlite3: fix (disputed) CVE-2021-36690 Bump PKGREVISION.
Revision 1.141 / (download) - annotate - [select for diffs], Fri Jun 25 21:21:31 2021 UTC (2 years, 5 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q3-base
Branch point for: pkgsrc-2021Q3
Changes since 1.140: +1 -2
lines
Diff to previous 1.140 (colored)
sqlite3: updated to 3.36.0 SQLite Release 3.36.0 On 2021-06-18 Improvement to the EXPLAIN QUERY PLAN output to make it easier to understand. Byte-order marks at the start of a token are skipped as if they were whitespace. An error is raised on any attempt to access the rowid of a VIEW or subquery. Formerly, the rowid of a VIEW would be indeterminate and often would be NULL. The -DSQLITE_ALLOW_ROWID_IN_VIEW compile-time option is available to restore the legacy behavior for applications that need it. The sqlite3_deserialize() and sqlite3_serialize() interfaces are now enabled by default. The -DSQLITE_ENABLE_DESERIALIZE compile-time option is no longer required. Instead, there is is a new -DSQLITE_OMIT_DESERIALIZE compile-time option to omit those interfaces. The "memdb" VFS now allows the same in-memory database to be shared among multiple database connections in the same process as long as the database name begins with "/". Back out the EXISTS-to-IN optimization (item 8b in the SQLite 3.35.0 change log) as it was found to slow down queries more often than speed them up. Improve the constant-propagation optimization so that it works on non-join queries. The REGEXP extension is now included in CLI builds.
Revision 1.140 / (download) - annotate - [select for diffs], Wed Apr 21 11:40:15 2021 UTC (2 years, 7 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q2-base,
pkgsrc-2021Q2
Changes since 1.139: +2 -1
lines
Diff to previous 1.139 (colored)
revbump for textproc/icu
Revision 1.139 / (download) - annotate - [select for diffs], Mon Mar 15 14:51:00 2021 UTC (2 years, 8 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2021Q1-base,
pkgsrc-2021Q1
Changes since 1.138: +3 -1
lines
Diff to previous 1.138 (colored)
sqlite3: updated to 3.35.0 SQLite Release 3.35.0 On 2021-03-12 Added built-in SQL math functions(). (Requires the -DSQLITE_ENABLE_MATH_FUNCTIONS compile-time option.) Added support for ALTER TABLE DROP COLUMN. Generalize UPSERT: Allow multiple ON CONFLICT clauses that are evaluated in order, The final ON CONFLICT clause may omit the conflict target and yet still use DO UPDATE. Add support for the RETURNING clause on DELETE, INSERT, and UPDATE statements. Use less memory when running VACUUM on databases containing very large TEXT or BLOB values. It is no longer necessary to hold the entire TEXT or BLOB in memory all at once. Add support for the MATERIALIZED and NOT MATERIALIZED hints when specifying common table expressions. The default behavior was formerly NOT MATERIALIZED, but is now changed to MATERIALIZED for CTEs that are used more than once. The SQLITE_DBCONFIG_ENABLE_TRIGGER and SQLITE_DBCONFIG_ENABLE_VIEW settings are modified so that they only control triggers and views in the main database schema or in attached database schemas and not in the TEMP schema. TEMP triggers and views are always allowed. Query planner/optimizer improvements: Enhancements to the min/max optimization so that it works better with the IN operator and the OP_SeekScan optimization of the previous release. Attempt to process EXISTS operators in the WHERE clause as if they were IN operators, in cases where this is a valid transformation and seems likely to improve performance. Allow UNION ALL sub-queries to be flattened even if the parent query is a join. Use an index, if appropriate, on IS NOT NULL expressions in the WHERE clause, even if STAT4 is disabled. Expressions of the form "x IS NULL" or "x IS NOT NULL" might be converted to simply FALSE or TRUE, if "x" is a column that has a "NOT NULL" constraint and is not involved in an outer join. Avoid checking foreign key constraints on an UPDATE statement if the UPDATE does not modify any columns associated with the foreign key. Allow WHERE terms to be pushed down into sub-queries that contain window functions, as long as the WHERE term is made up of entirely of constants and copies of expressions found in the PARTITION BY clauses of all window functions in the sub-query. CLI enhancements: Enhance the ".stats" command to accept new arguments "stmt" and "vmstep", causing prepare statement statistics and only the virtual-machine step count to be shown, respectively. Add the ".filectrl data_version" command. Enhance the ".once" and ".output" commands so that if the destination argument begins with "|" (indicating that output is redirected into a pipe) then the argument does not need to be quoted. Bug fixes: Fix a potential NULL pointer dereference when processing a syntactically incorrect SELECT statement with a correlated WHERE clause and a "HAVING 0" clause. (Also fixed in the 3.34.1 patch release.) Fix a bug in the IN-operator optimization of version 3.33.0 that can cause an incorrect answer. Fix incorrect answers from the LIKE operator if the pattern ends with "%" and there is an "ESCAPE '_'" clause.
Revision 1.138 / (download) - annotate - [select for diffs], Wed Dec 2 07:57:19 2020 UTC (3 years ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2020Q4-base,
pkgsrc-2020Q4
Changes since 1.137: +1 -2
lines
Diff to previous 1.137 (colored)
sqlite3: updated to 3.34.0 SQLite Release 3.34.0 Added the sqlite3_txn_state() interface for reporting on the current transaction state of the database connection. Enhance recursive common table expressions to support two or more recursive terms as is done by SQL Server, since this helps make queries against graphs easier to write and faster to execute. Improved error messages on CHECK constraint failures. CLI enhancements: The .read dot-command now accepts a pipeline in addition to a filename. Added options --data-only and --nosys to the .dump dot-command. Added the --nosys option to the .schema dot-command. Table name quoting works correctly for the .import dot-command. The generate_series(START,END,STEP) table-valued function extension is now built into the CLI. The .databases dot-command now show the status of each database file as determined by sqlite3_db_readonly() and sqlite3_txn_state(). Added the --tabs command-line option that sets .mode tabs. The --init option reports an error if the file named as its argument cannot be opened. The --init option also now honors the --bail option. Query planner improvements: Improved estimates for the cost of running a DISTINCT operator. When doing an UPDATE or DELETE using a multi-column index where only a few of the earlier columns of the index are useful for the index lookup, postpone doing the main table seek until after all WHERE clause constraints have been evaluated, in case those constraints can be covered by unused later terms of the index, thus avoiding unnecessary main table seeks. The new OP_SeekScan opcode is used to improve performance of multi-column index look-ups when later columns are constrained by an IN operator. The BEGIN IMMEDIATE and BEGIN EXCLUSIVE commands now work even if one or more attached database files are read-only. Enhanced FTS5 to support trigram indexes. Improved performance of WAL mode locking primitives in cases where there are hundreds of connections all accessing the same database file at once. Enhanced the carray() table-valued function to include a single-argument form that is bound using the auxiliary sqlite3_carray_bind() interface. The substr() SQL function can now also be called "substring()" for compatibility with SQL Server. The syntax diagrams are now implemented as Pikchr scripts and rendered as SVG for improved legibility and ease of maintenance.
Revision 1.137 / (download) - annotate - [select for diffs], Thu Nov 5 09:06:45 2020 UTC (3 years, 1 month ago) by ryoon
Branch: MAIN
Changes since 1.136: +2 -1
lines
Diff to previous 1.136 (colored)
*: Recursive revbump from textproc/icu-68.1
Revision 1.136 / (download) - annotate - [select for diffs], Fri Jun 5 07:48:07 2020 UTC (3 years, 6 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2020Q3-base,
pkgsrc-2020Q3,
pkgsrc-2020Q2-base,
pkgsrc-2020Q2
Changes since 1.135: +1 -2
lines
Diff to previous 1.135 (colored)
sqlite3: updated to 3.32.2 3.32.2: Fix a long-standing bug in the byte-code engine that can cause a COMMIT command report as success when in fact it failed to commit.
Revision 1.135 / (download) - annotate - [select for diffs], Tue Jun 2 08:22:34 2020 UTC (3 years, 6 months ago) by adam
Branch: MAIN
Changes since 1.134: +2 -1
lines
Diff to previous 1.134 (colored)
Revbump for icu
Revision 1.134 / (download) - annotate - [select for diffs], Sat May 23 07:38:00 2020 UTC (3 years, 6 months ago) by adam
Branch: MAIN
Changes since 1.133: +1 -2
lines
Diff to previous 1.133 (colored)
sqlite3: updated to 3.32.0 SQLite Release 3.32.0: Added support for approximate ANALYZE using the PRAGMA analysis_limit command. Added the bytecode virtual table. Add the checksum VFS shim to the set of run-time loadable extensions included in the source tree. Added the iif() SQL function. INSERT and UPDATE statements now always apply column affinity before computing CHECK constraints. This bug fix could, in theory, cause problems for legacy databases with unorthodox CHECK constraints the require the input type for an INSERT is different from the declared column type. See ticket 86ba67afafded936 for more information. Added the sqlite3_create_filename(), sqlite3_free_filename(), and sqlite3_database_file_object() interfaces to better support of VFS shim implementations. Increase the default upper bound on the number of parameters from 999 to 32766. Added code for the UINT collating sequence as an optional loadable extension. Enhancements to the CLI: Add options to the .import command: --csv, --ascii, --skip The .dump command now accepts multiple LIKE-pattern arguments and outputs the union of all matching tables. Add the .oom command in debugging builds Add the --bom option to the .excel, .output, and .once commands. Enhance the .filectrl command to support the --schema option. The UINT collating sequence extension is automatically loaded The ESCAPE clause of a LIKE operator now overrides wildcard characters, so that the behavior now matches what PostgreSQL does.
Revision 1.133 / (download) - annotate - [select for diffs], Sun Apr 12 08:27:50 2020 UTC (3 years, 7 months ago) by adam
Branch: MAIN
Changes since 1.132: +2 -1
lines
Diff to previous 1.132 (colored)
Recursive revision bump after textproc/icu update
Revision 1.132 / (download) - annotate - [select for diffs], Sat Jan 4 02:32:13 2020 UTC (3 years, 11 months ago) by gutteridge
Branch: MAIN
CVS Tags: pkgsrc-2020Q1-base,
pkgsrc-2020Q1
Changes since 1.131: +1 -5
lines
Diff to previous 1.131 (colored)
sqlite3: remove a workaround that's no longer needed There have been multiple version updates to this package since that was added and it was already fixed upstream.
Revision 1.131 / (download) - annotate - [select for diffs], Thu Apr 18 10:10:03 2019 UTC (4 years, 7 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2019Q4-base,
pkgsrc-2019Q4,
pkgsrc-2019Q3-base,
pkgsrc-2019Q3,
pkgsrc-2019Q2-base,
pkgsrc-2019Q2
Changes since 1.130: +1 -2
lines
Diff to previous 1.130 (colored)
sqlite3: updated to 3.28.0 SQLite Release 3.28.0: Enhanced window functions: Add support the EXCLUDE clause. Add support for window chaining. Add support for GROUPS frames. Add support for "<expr> PRECEDING" and "<expr> FOLLOWING" boundaries in RANGE frames. Added the new sqlite3_stmt_isexplain(S) interface for determining whether or not a prepared statement is an EXPLAIN. Enhanced VACUUM INTO so that it works for read-only databases. New query optimizations: Enable the LIKE optimization for cases when the ESCAPE keyword is present and PRAGMA case_sensitive_like is on. In queries that are driven by a partial index, avoid unnecessary tests of the constraint named in the WHERE clause of the partial index, since we know that constraint must always be true. Enhancements to the TCL Interface: Added the -returntype option to the function method. Added the new bind_fallback method. Enhancements to the CLI: Added support for bound parameters and the .parameter command. Fix the readfile() function so that it returns an empty BLOB rather than throwing an out-of-memory error when reading an empty file. Fix the writefile() function so that when it creates new directories along the path of a new file, it gives them umask permissions rather than the same permissions as the file. Change --update option in the .archive command so that it skips files that are already in the archive and are unchanged. Add the new --insert option that works like --update used to work. Added the fossildelta.c extension that can create, apply, and deconstruct the Fossil DVCS file delta format that is used by the RBU extension. Added the SQLITE_DBCONFIG_WRITABLE_SCHEMA verb for the sqlite3_db_config() interface, that does the same work as PRAGMA writable_schema without using the SQL parser. Added the sqlite3_value_frombind() API for determining if the argument to an SQL function is from a bound parameter. Security and compatibilities enhancements to fts3_tokenizer(): The fts3_tokenizer() function always returns NULL unless either the legacy application-defined FTS3 tokenizers interface are enabled using the sqlite3_db_config(SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER) setting, or unless the first argument to fts3_tokenizer() is a bound parameter. The two-argument version of fts3_tokenizer() accepts a pointer to the tokenizer method object even without the sqlite3_db_config(SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER) setting if the second argument is a bound parameter Improved robustness against corrupt database files. Miscellaneous performance enhancements
Revision 1.130 / (download) - annotate - [select for diffs], Wed Apr 3 00:32:32 2019 UTC (4 years, 8 months ago) by ryoon
Branch: MAIN
Changes since 1.129: +2 -1
lines
Diff to previous 1.129 (colored)
Recursive revbump from textproc/icu
Revision 1.129 / (download) - annotate - [select for diffs], Mon Feb 11 10:45:20 2019 UTC (4 years, 9 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2019Q1-base,
pkgsrc-2019Q1
Changes since 1.128: +1 -2
lines
Diff to previous 1.128 (colored)
sqlite3: updated to 3.27.1 SQLite Release 3.27.1: Fix a bug in the query optimizer: an adverse interaction between the OR optimization and the optimization that tries to use values read directly from an expression index instead of recomputing the expression. Hashes: Changes carried forward from version 3.27.0: Added the VACUUM INTO command Issue an SQLITE_WARNING message on the error log if a double-quoted string literal is used. The sqlite3_normalized_sql() interface works on any prepared statement created using sqlite3_prepare_v2() or sqlite3_prepare_v3(). It is no longer necessary to use sqlite3_prepare_v3() with SQLITE_PREPARE_NORMALIZE in order to use sqlite3_normalized_sql(). Added the remove_diacritics=2 option to FTS3 and FTS5. Added the SQLITE_PREPARE_NO_VTAB option to sqlite3_prepare_v3(). Use that option to prevent circular references to shadow tables from causing resource leaks. Enhancements to the sqlite3_deserialize() interface: Add the SQLITE_FCNTL_SIZE_LIMIT file-control for setting an upper bound on the size of the in-memory database created by sqlite3_deserialize. The default upper bound is 1GiB, or whatever alternative value is specified by sqlite3_config(SQLITE_CONFIG_MEMDB_MAXSIZE) and/or SQLITE_MEMDB_DEFAULT_MAXSIZE. Honor the SQLITE_DESERIALIZE_READONLY flag, which was previously described in the documentation, but was previously a no-op. Enhance the "deserialize" command of the TCL Interface to give it new "--maxsize N" and "--readonly BOOLEAN" options. Enhancements to the CLI, mostly to support testing and debugging of the SQLite library itself: Add support for ".open --hexdb". The "dbtotxt" utility program used to generate the text for the "hexdb" is added to the source tree. Add support for the "--maxsize N" option on ".open --deserialize". Add the "--memtrace" command-line option, to show all memory allocations and deallocations. Add the ".eqp trace" option on builds with SQLITE_DEBUG, to enable bytecode program listing with indentation and PRAGMA vdbe_trace all in one step. Add the ".progress" command for accessing the sqlite3_progress_handler() interface. Add the "--async" option to the ".backup" command. Add options "--expanded", "--normalized", "--plain", "--profile", "--row", "--stmt", and "--close" to the ".trace" command. Increased robustness against malicious SQL that is run against a maliciously corrupted database. Bug fixes: Do not use a partial index to do a table scan on an IN operator. Fix the query flattener so that it works on queries that contain subqueries that use window functions. Ensure that ALTER TABLE modifies table and column names embedded in WITH clauses that are part of views and triggers. Fix a parser bug that prevented the use of parentheses around table-valued functions. Fix a problem with the OR optimization on indexes on expressions. Fix a problem with the LEFT JOIN strength reduction optimization in which the optimization was being applied inappropriately due to an IS NOT NULL operator. Fix the REPLACE command so that it is no longer able to sneak a NULL value into a NOT NULL column even if the NOT NULL column has a default value of NULL. Fix a problem with the use of window functions used within correlated subqueries. Fix the ALTER TABLE RENAME COLUMN command so that it works for tables that have redundant UNIQUE constraints. Fix a bug that caused zeroblob values to be truncated when inserted into a table that uses an expression index.
Revision 1.128 / (download) - annotate - [select for diffs], Sun Dec 9 18:51:59 2018 UTC (4 years, 11 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2018Q4-base,
pkgsrc-2018Q4
Changes since 1.127: +2 -1
lines
Diff to previous 1.127 (colored)
revbump after updating textproc/icu
Revision 1.127 / (download) - annotate - [select for diffs], Sun Dec 9 03:04:34 2018 UTC (4 years, 11 months ago) by sevan
Branch: MAIN
Changes since 1.126: +2 -1
lines
Diff to previous 1.126 (colored)
Need pthread support, make sure a substitue is present if OS lacks support natively, e.g Minix at present.
Revision 1.126 / (download) - annotate - [select for diffs], Mon Sep 17 16:14:07 2018 UTC (5 years, 2 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2018Q3-base,
pkgsrc-2018Q3
Changes since 1.125: +1 -2
lines
Diff to previous 1.125 (colored)
sqlite3: updated to 3.25.0 SQLite Release 3.25.0: Add support for window functions Enhancements the ALTER TABLE command: - Add support for renaming columns within a table using ALTER TABLE table RENAME COLUMN oldname TO newname. - Fix table rename feature so that it also updates references to the renamed table in triggers and views. Query optimizer improvements: - Avoid unnecessary loads of columns in an aggregate query that are not within an aggregate function and that are not part of the GROUP BY clause. - The IN-early-out optimization: When doing a look-up on a multi-column index and an IN operator is used on a column other than the left-most column, then if no rows match against the first IN value, check to make sure there exist rows that match the columns to the right before continuing with the next IN value. - Use the transitive property to try to propagate constant values within the WHERE clause. For example, convert "a=99 AND b=a" into "a=99 AND b=99". Use a separate mutex on every inode in the unix VFS, rather than a single mutex shared among them all, for slightly better concurrency in multi-threaded environments. Enhance the PRAGMA integrity_check command for improved detection of problems on the page freelist. Output infinity as 1e999 in the ".dump" command of the command-line shell. Added the SQLITE_FCNTL_DATA_VERSION file-control. Added the Geopoly module Bug fixes: The ORDER BY LIMIT optimization might have caused an infinite loop in the byte code of the prepared statement under very obscure circumstances, due to a confluence of minor defects in the query optimizer. On an UPSERT when the order of constraint checks is rearranged, ensure that the affinity transformations on the inserted content occur before any of the constraint checks. Avoid using a prepared statement for ".stats on" command of the CLI after it has been closed by the ".eqp full" logicc. The LIKE optimization was generating incorrect byte-code and hence getting the wrong answer if the left-hand operand has numeric affinity and the right-hand-side pattern is '/%' or if the pattern begins with the ESCAPE character.
Revision 1.125 / (download) - annotate - [select for diffs], Fri Jul 20 03:33:48 2018 UTC (5 years, 4 months ago) by ryoon
Branch: MAIN
Changes since 1.124: +2 -1
lines
Diff to previous 1.124 (colored)
Recursive revbump from textproc/icu-62.1
Revision 1.124 / (download) - annotate - [select for diffs], Thu Jun 7 07:36:49 2018 UTC (5 years, 6 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2018Q2-base,
pkgsrc-2018Q2
Changes since 1.123: +1 -2
lines
Diff to previous 1.123 (colored)
sqlite3: updated to 3.24.0 SQLite Release 3.24.0: Add support for PostgreSQL-style UPSERT. Add support for auxiliary columns in r-tree tables. Add C-language APIs for discovering SQL keywords used by SQLite: sqlite3_keyword_count(), sqlite3_keyword_name(), and sqlite3_keyword_check(). Add C-language APIs for dynamic strings based on the sqlite3_str object. Enhance ALTER TABLE so that it recognizes "true" and "false" as valid arguments to DEFAULT. Add the sorter-reference optimization as a compile-time option. Only available if compiled with SQLITE_ENABLE_SORTER_REFERENCES. Improve the format of the EXPLAIN QUERY PLAN raw output, so that it gives better information about the query plan and about the relationships between the various components of the plan. Added the SQLITE_DBCONFIG_RESET_DATABASE option to the sqlite3_db_config() API. CLI Enhancements: Automatically intercepts the raw EXPLAIN QUERY PLAN output and reformats it into an ASCII-art graph. Lines that begin with "#" and that are not in the middle of an SQL statement are interpreted as comments. Added the --append option to the ".backup" command. Added the ".dbconfig" command. Performance: UPDATE avoids unnecessary low-level disk writes when the contents of the database file do not actually change. For example, "UPDATE t1 SET x=25 WHERE y=?" generates no extra disk I/O if the value in column x is already 25. Similarly, when doing UPDATE on records that span multiple pages, only the subset of pages that actually change are written to disk. This is a low-level performance optimization only and does not affect the behavior of TRIGGERs or other higher level SQL structures. Queries that use ORDER BY and LIMIT now try to avoid computing rows that cannot possibly come in under the LIMIT. This can greatly improve performance of ORDER BY LIMIT queries, especially when the LIMIT is small relative to the number of unrestricted output rows. The OR optimization is allowed to proceed even if the OR expression has also been converted into an IN expression. Uses of the OR optimization are now also more clearly shown in the EXPLAIN QUERY PLAN output. The query planner is more aggressive about using automatic indexes for views and subqueries for which it is not possible to create a persistent index. Make use of the one-pass UPDATE and DELETE query plans in the R-Tree extension where appropriate. Performance improvements in the LEMON-generated parser. Bug fixes: For the right-hand table of a LEFT JOIN, compute the values of expressions directly rather than loading precomputed values out of an expression index as the expression index might not contain the correct value. Do not attempt to use terms from the WHERE clause to enable indexed lookup of the right-hand table of a LEFT JOIN. Fix a memory leak that can occur following a failure to open error in the CSV virtual table Fix a long-standing problem wherein a corrupt schema on the sqlite_sequence table used by AUTOINCREMENT can lead to a crash. Fix the json_each() function so that it returns valid results on its "fullkey" column when the input is a simple value rather than an array or object.
Revision 1.123 / (download) - annotate - [select for diffs], Sat Apr 14 07:33:53 2018 UTC (5 years, 7 months ago) by adam
Branch: MAIN
Changes since 1.122: +2 -1
lines
Diff to previous 1.122 (colored)
revbump after icu update
Revision 1.122 / (download) - annotate - [select for diffs], Tue Apr 3 19:58:19 2018 UTC (5 years, 8 months ago) by adam
Branch: MAIN
Changes since 1.121: +2 -1
lines
Diff to previous 1.121 (colored)
sqlite3: updated to 3.23.0 SQLite Release 3.23.0: Add the sqlite3_serialize() and sqlite3_deserialize() interfaces when the SQLITE_ENABLE_DESERIALIZE compile-time option is used. Recognize TRUE and FALSE as constants. (For compatibility, if there exist columns named "true" or "false", then the identifiers refer to the columns rather than Boolean constants.) Support operators IS TRUE, IS FALSE, IS NOT TRUE, and IS NOT FALSE. Added the SQLITE_DBSTATUS_CACHE_SPILL option to sqlite3_db_status() for reporting the number of cache spills that have occurred. The "alternate-form-2" flag ("!") on the built-in printf implementation now causes string substitutions to measure the width and precision in characters instead of bytes. If the xColumn method in a virtual table implementation returns an error message using sqlite3_result_error() then give that error message preference over internally-generated messages. Added the -A command-line option to the CLI to make it easier to manage SQLite Archive files. Add support for INSERT OR REPLACE, INSERT OR IGNORE, and UPDATE OR REPLACE in the Zipfile virtual table. Enhance the sqlite3changeset_apply() interface so that it is hardened against attacks from deliberately corrupted changeset objects. Added the sqlite3_normalize() extension function. Query optimizer enhancements: Improve the omit-left-join optimization so that it works in cases where the right-hand table is UNIQUE but not necessarily NOT NULL. Improve the push-down optimization so that it works for many LEFT JOINs. Add the LEFT JOIN strength reduction optimization that converts a LEFT JOIN into an ordinary JOIN if there exist terms in the WHERE clause that would prevent the extra all-NULL row of the LEFT JOIN from appearing in the output set. Avoid unnecessary writes to the sqlite_sequence table when an AUTOINCREMENT table is updated with an rowid that is less than the maximum. Bug fixes: Fix the parser to accept valid row value syntax. Fix the query planner so that it takes into account dependencies in the arguments to table-valued functions in subexpressions in the WHERE clause. Fix incorrect result with complex OR-connected WHERE and STAT4. Fix potential corruption in indexes on expressions due to automatic datatype conversions. Assertion fault in FTS4. Incorrect result on the less-than operator in row values. Always interpret non-zero floating-point values as TRUE, even if the integer part is zero. Fix an issue in the fsdir(PATH) table-valued function to the fileio.c extension, that caused a segfault if the fsdir() table was used as the inner table of a join. Issue an error rather instead of an assertion-fault or null-pointer dereference when the sqlite_master table is corrupted so that the sqlite_sequence table root page is really a btree-index page. Fix the ANALYZE command so that it computes statistics on tables whose names begin with "sqlite". Additional fixes for issues detected by OSSFuzz: Fix a possible infinite loop on VACUUM for corrupt database files. Disallow parameters in the WITH clause of triggers and views. Fix a potential memory leak in row value processing. Improve the performance of the replace() SQL function for cases where there are many substitutions on megabyte-sized strings, in an attempt to avoid OSSFuzz timeouts during testing. Provide an appropriate error message when the sqlite_master table contains a CREATE TABLE AS statement. Formerly this caused either an assertion fault or null pointer dereference. Problem found by OSSFuzz on the GDAL project. Incorrect assert() statement removed. Fix a problem with using the LIKE optimization on an INTEGER PRIMARY KEY.
Revision 1.121 / (download) - annotate - [select for diffs], Wed Jan 24 13:44:14 2018 UTC (5 years, 10 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2018Q1-base,
pkgsrc-2018Q1
Changes since 1.120: +1 -2
lines
Diff to previous 1.120 (colored)
sqlite3: updated to 3.22.0 Release 3.22.0: The output of sqlite3_trace_v2() now shows each individual SQL statement run within a trigger. Add the ability to read from WAL mode databases even if the application lacks write permission on the database and its containing directory, as long as the -shm and -wal files exist in that directory. Added the rtreecheck() scalar SQL function to the R-Tree extension. Added the sqlite3_vtab_nochange() and sqlite3_value_nochange() interfaces to help virtual table implementations optimize UPDATE operations. Added the sqlite3_vtab_collation() interface. Added support for the "^" initial token syntax in FTS5. New extensions: The Zipfile virtual table can read and write a ZIP Archive. Added the fsdir(PATH) table-valued function to the fileio.c extension, for listing the files in a directory. The sqlite_btreeinfo eponymous virtual table for introspecting and estimating the sizes of the btrees in a database. The Append VFS is a VFS shim that allows an SQLite database to be appended to some other file. This allows (for example) a database to be appended to an executable that then opens and reads the database. Query planner enhancements: The optimization that uses an index to quickly compute an aggregate min() or max() is extended to work with indexes on expressions. The decision of whether to implement a FROM-clause subquery as a co-routine or using query flattening now considers whether the result set of the outer query is "complex" (if it contains functions or expression subqueries). A complex result set biases the decision toward the use of co-routines. The planner avoids query plans that use indexes with unknown collating functions. The planner omits unused LEFT JOINs even if they are not the right-most joins of a query. Other performance optimizations: A smaller and faster implementation of text to floating-point conversion subroutine: sqlite3AtoF(). The Lemon parser generator creates a faster parser. Use the strcspn() C-library routine to speed up the LIKE and GLOB operators. Improvements to the command-line shell: The ".schema" command shows the structure of virtual tables. Added support for reading and writing SQL Archive files using the .archive command. Added the experimental .expert command Added the ".eqp trigger" variant of the ".eqp" command Enhance the ".lint fkey-indexes" command so that it works with WITHOUT ROWID tables. If the filename argument to the shell is a ZIP archive rather than an SQLite database, then the shell automatically opens that ZIP archive using the Zipfile virtual table. Added the edit() SQL function. Added the .excel command to simplify exporting database content to a spreadsheet. Databases are opened using Append VFS when the --append flag is used on the command line or with the .open command. Enhance the SQLITE_ENABLE_UPDATE_DELETE_LIMIT compile-time option so that it works for WITHOUT ROWID tables. Provide the sqlite_offset(X) SQL function that returns the byte offset into the database file to the beginning of the record holding value X, when compiling with -DSQLITE_ENABLE_OFFSET_SQL_FUNC. Bug fixes
Revision 1.120 / (download) - annotate - [select for diffs], Thu Nov 30 16:45:01 2017 UTC (6 years ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2017Q4-base,
pkgsrc-2017Q4
Changes since 1.119: +2 -1
lines
Diff to previous 1.119 (colored)
Revbump after textproc/icu update
Revision 1.119 / (download) - annotate - [select for diffs], Mon Oct 30 18:36:13 2017 UTC (6 years, 1 month ago) by adam
Branch: MAIN
Changes since 1.118: +1 -2
lines
Diff to previous 1.118 (colored)
sqlite3: updated to 3.21.0 Release 3.21.0: Take advantage of the atomic-write capabilities in the F2FS filesystem when available, for greatly reduced transaction overhead. This currently requires the SQLITE_ENABLE_BATCH_ATOMIC_WRITE compile-time option. Allow ATTACH and DETACH commands to work inside of a transaction. Allow WITHOUT ROWID virtual tables to be writable if the PRIMARY KEY contains exactly one column. The "fsync()" that occurs after the header is written in a WAL reset now uses the sync settings for checkpoints. This means it will use a "fullfsync" on macs if PRAGMA checkpoint_fullfsync set on. The sqlite3_sourceid() function tries to detect if the source code has been modified from what is checked into version control and if there are modifications, the last four characters of the version hash are shown as "alt1" or "alt2". The objective is to detect accidental and/or careless edits. A forger can subvert this feature. Improved de-quoting of column names for CREATE TABLE AS statements with an aggregate query on the right-hand side. Fewer "stat()" system calls issued by the unix VFS. Enhanced the LIKE optimization so that it works with an ESCAPE clause. Enhanced PRAGMA integrity_check and PRAGMA quick_check to detect obscure row corruption that they were formerly missing. Also update both pragmas so that they return error text rather than SQLITE_CORRUPT when encountering corruption in records. The query planner now prefers to implement FROM-clause subqueries using co-routines rather using the query flattener optimization. Support for the use of co-routines for subqueries may no longer be disabled. Pass information about !=, IS, IS NOT, NOT NULL, and IS NULL constraints into the xBestIndex method of virtual tables. Enhanced the CSV virtual table so that it accepts the last row of input if the final new-line character is missing. Remove the rarely-used "scratch" memory allocator. Replace it with the SQLITE_CONFIG_SMALL_MALLOC configuration setting that gives SQLite a hint that large memory allocations should be avoided when possible. Added the swarm virtual table to the existing union virtual table extension. Added the sqlite_dbpage virtual table for providing direct access to pages of the database file. The source code is built into the amalgamation and is activated using the -DSQLITE_ENABLE_DBPAGE_VTAB compile-time option. Add a new type of fts5vocab virtual table - "instance" - that provides direct access to an FTS5 full-text index at the lowest possible level. Remove a call to rand_s() in the Windows VFS since it was causing problems in Firefox on some older laptops. The src/shell.c source code to the command-line shell is no longer under version control. That file is now generated as part of the build process. Miscellaneous microoptimizations reduce CPU usage by about 2.1%. Bug fixes
Revision 1.118 / (download) - annotate - [select for diffs], Mon Sep 18 09:52:57 2017 UTC (6 years, 2 months ago) by maya
Branch: MAIN
CVS Tags: pkgsrc-2017Q3-base,
pkgsrc-2017Q3
Changes since 1.117: +2 -1
lines
Diff to previous 1.117 (colored)
revbump for requiring ICU 59.x
Revision 1.117 / (download) - annotate - [select for diffs], Wed May 24 19:41:03 2017 UTC (6 years, 6 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2017Q2-base,
pkgsrc-2017Q2
Changes since 1.116: +1 -2
lines
Diff to previous 1.116 (colored)
SQLite Release 3.19.0 --------------------- The SQLITE_READ authorizer callback is invoked once with a column name that is an empty string for every table referenced in a query from which no columns are extracted. When using an index on an expression, try to use expression values already available in the index, rather than loading the original columns and recomputing the expression. Enhance the flattening optimization so that it is able to flatten views on the right-hand side of a LEFT JOIN. Use replace() instead of char() for escaping newline and carriage-return characters embedded in strings in the .dump output from the command-line shell. Avoid unnecessary foreign key processing in UPDATE statements that do not touch the columns that are constrained by the foreign keys. On a DISTINCT query that uses an index, try to skip ahead to the next distinct entry using the index rather than stepping through rows, when an appropriate index is available. Avoid unnecessary invalidation of sqlite3_blob handles when making changes to unrelated tables. Transfer any terms of the HAVING clause that use only columns mentioned in the GROUP BY clause over to the WHERE clause for faster processing. Reuse the same materialization of a VIEW if that VIEW appears more than once in the same query. Enhance PRAGMA integrity_check so that it identifies tables that have two or more rows with the same rowid. Enhance the FTS5 query syntax so that column filters may be applied to arbitrary expressions. Enhance the json_extract() function to cache and reuse parses of JSON input text. Added the anycollseq.c loadable extension that allows a generic SQLite database connection to read a schema that contains unknown and/or application-specific collating sequences. Bug Fixes: ---------- Fix a problem in REPLACE that can result in a corrupt database containing two or more rows with the same rowid. Fix a problem in PRAGMA integrity_check that was causing a subsequent VACUUM to behave suboptimally. Fix the PRAGMA foreign_key_check command so that it works correctly with foreign keys on WITHOUT ROWID tables. Disallow leading zeros in numeric constants in JSON. Disallow control characters inside of strings in JSON. Limit the depth of recursion for JSON objects and arrays in order to avoid excess stack usage in the recursive descent parser.
Revision 1.116 / (download) - annotate - [select for diffs], Sat Apr 22 21:03:08 2017 UTC (6 years, 7 months ago) by adam
Branch: MAIN
Changes since 1.115: +2 -1
lines
Diff to previous 1.115 (colored)
Revbump after icu update
Revision 1.115 / (download) - annotate - [select for diffs], Thu Feb 23 11:07:32 2017 UTC (6 years, 9 months ago) by jperkin
Branch: MAIN
CVS Tags: pkgsrc-2017Q1-base,
pkgsrc-2017Q1
Changes since 1.114: +5 -1
lines
Diff to previous 1.114 (colored)
Add workaround for build issue on Darwin, to be removed in the next update.
Revision 1.114 / (download) - annotate - [select for diffs], Mon Feb 13 17:44:01 2017 UTC (6 years, 9 months ago) by adam
Branch: MAIN
Changes since 1.113: +1 -3
lines
Diff to previous 1.113 (colored)
SQLite Release 3.17.0 On 2017-02-13 * Approximately 25% better performance from the R-Tree extension. * Uses compiler built-ins (ex: __builtin_bswap32() or _byteswap_ulong()) for byteswapping when available. * Uses the sqlite3_blob key/value access object instead of SQL for pulling content out of R-Tree nodes * Other miscellaneous enhancements such as loop unrolling. * Add the SQLITE_DEFAULT_LOOKASIDE compile-time option. * Increase the default lookaside size from 512,125 to 1200,100 as this provides better performance while only adding 56KB of extra memory per connection. Memory-sensitive applications can restore the old default at compile-time, start-time, or run-time. * Use compiler built-ins __builtin_sub_overflow(), __builtin_add_overflow(), and __builtin_mul_overflow() when available. (All compiler built-ins can be omitted with the SQLITE_DISABLE_INTRINSIC compile-time option.) * Added the SQLITE_ENABLE_NULL_TRIM compile-time option, which can result in significantly smaller database files for some applications, at the risk of being incompatible with older versions of SQLite. * Change SQLITE_DEFAULT_PCACHE_INITSZ from 100 to 20, for improved performance. * Added the SQLITE_UINT64_TYPE compile-time option as an analog to SQLITE_INT64_TYPE. * Perform some UPDATE operations in a single pass instead of in two passes. * Enhance the session extension to support WITHOUT ROWID tables. * Fixed performance problems and potential stack overflows when creating views from multi-row VALUES clauses with hundreds of thousands of rows. * Added the sha1.c extension. * In the command-line shell, enhance the ".mode" command so that it restores the default column and row separators for modes "line", "list", "column", and "tcl". * Enhance the SQLITE_DIRECT_OVERFLOW_READ option so that it works in WAL mode as long as the pages being read are not in the WAL file. * Enhance the LEMON parser generator so that it can store the parser object as a stack variable rather than allocating space from the heap and make use of that enhancement in the amalgamation. * Other performance improvements. Uses about 6.5% fewer CPU cycles. Bug Fixes: * Throw an error if the ON clause of a LEFT JOIN references tables to the right of the ON clause. This is the same behavior as PostgreSQL. Formerly, SQLite silently converted the LEFT JOIN into an INNER JOIN. * Use the correct affinity for columns of automatic indexes. * Ensure that the sqlite3_blob_reopen() interface can correctly handle short rows.
Revision 1.113 / (download) - annotate - [select for diffs], Mon Jan 2 17:52:23 2017 UTC (6 years, 11 months ago) by adam
Branch: MAIN
Changes since 1.112: +1 -2
lines
Diff to previous 1.112 (colored)
SQLite Release 3.16.0 On 2017-01-02 Uses 9% fewer CPU cycles. (See the CPU performance measurement report for details on how the this performance increase was computed.) Added experimental support for PRAGMA functions. Added the SQLITE_DBCONFIG_NO_CKPT_ON_CLOSE option to sqlite3_db_config(). Enhance the date and time functions so that the 'unixepoch' modifier works for the full span of supported dates. Changed the default configuration of the lookaside memory allocator from 500 slots of 128 bytes each into 125 slots of 512 bytes each. Enhanced "WHERE x NOT NULL" partial indexes so that they are usable if the "x" column appears in a LIKE or GLOB operator. Enhanced sqlite3_interrupt() so that it interrupts checkpoint operations that are in process. Enhanced the LIKE and GLOB matching algorithm to be faster for cases when the pattern contains multiple wildcards. Added the SQLITE_FCNTL_WIN32_GET_HANDLE file control opcode. Added ".mode quote" to the command-line shell. Added ".lint fkey-indexes" to the command-line shell. Added the .imposter dot-command to the command-line shell. Added the remember(V,PTR) SQL function as a loadable extension. Rename the SQLITE_OMIT_BUILTIN_TEST compile-time option to SQLITE_UNTESTABLE to better reflect the implications of using it. Bug Fixes: Fix a long-standing bug in the query planner that caused incorrect results on a LEFT JOIN where the left-hand table is a subquery and the join constraint is a bare column name coming from the left-hand subquery. Ticket 2df0107b. Correctly handle the integer literal -0x8000000000000000 in the query planner.
Revision 1.112 / (download) - annotate - [select for diffs], Mon Dec 12 16:17:53 2016 UTC (6 years, 11 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2016Q4-base,
pkgsrc-2016Q4
Changes since 1.111: +2 -12
lines
Diff to previous 1.111 (colored)
Do not unconditionally add libedit/libreadline to LDFLAGS. This way they got added as dependencies to sqlite3.so, while only the sqlite3 binary really needs libreadline. However, even without the LDFLAGS, the sqlite3 binary correctly links the library in for me (on NetBSD). Addresses PR 50776. Bump PKGREVISION.
Revision 1.111 / (download) - annotate - [select for diffs], Sun Dec 4 05:17:04 2016 UTC (7 years ago) by ryoon
Branch: MAIN
Changes since 1.110: +2 -1
lines
Diff to previous 1.110 (colored)
Recursive revbump from textproc/icu 58.1
Revision 1.110 / (download) - annotate - [select for diffs], Sat Oct 22 00:18:39 2016 UTC (7 years, 1 month ago) by kamil
Branch: MAIN
Changes since 1.109: +3 -1
lines
Diff to previous 1.109 (colored)
Upgrade lemon 1.0 from sqlite 3.5.9 to lemon 1.0 from sqlite 3.15.0 pkgsrc changes ============== Bind this package with databases/sqlite3 to get immediate updates along with the sqlite3 package. Set new versioning policy and concatenate versions of lemon and sqlite3. The reasoning for it is as follows: - currently lemon is an integral part of sqlite3 - lemon has its own conservative versioning regardless of changes in its code - leave room for possible standalone lemon package with bumped versions - reflect reality and make it human readable without checking the sources Set LICENSE to public-domain. Install documentation in the HTML format. Compile with LDFLAGS set. Finally don't use databases/sqlite3/Makefile.common as lemon is not distributed in the same archive. Make use of Makefile.version that does the same job of tracking upstream. Do not set PKGCONFIG_OVERRIDE in Makefile.common, it is not accessible in sqlite3-tcl. Upstream changelog ================== Changes are unknown, but at least the program acquired a -T command line option used by brlcad.
Revision 1.109 / (download) - annotate - [select for diffs], Fri Oct 21 23:32:40 2016 UTC (7 years, 1 month ago) by kamil
Branch: MAIN
Changes since 1.108: +6 -8
lines
Diff to previous 1.108 (colored)
Add sqlite3/Makefile.common for sqlite3 packages to share code The intention is to reuse Makefile.common in devel/lemon. Replace ${IS_BUILTIN.editline} == "yes" with !empty(IS_BUILTIN.editline:M[yY][eE][sS])
Revision 1.108 / (download) - annotate - [select for diffs], Wed Apr 20 05:04:44 2016 UTC (7 years, 7 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2016Q3-base,
pkgsrc-2016Q3,
pkgsrc-2016Q2-base,
pkgsrc-2016Q2
Changes since 1.107: +1 -2
lines
Diff to previous 1.107 (colored)
Changes 3.12.2: Fix a backwards compatibility problem in version 3.12.0 and 3.12.1: Columns declared as "INTEGER" PRIMARY KEY (with quotes around the datatype keyword) where not being recognized as an INTEGER PRIMARY KEY, which resulted in an incompatible database file. Fix a bug (present since version 3.9.0) that can cause the DELETE operation to miss rows if PRAGMA reverse_unordered_selects is turned on. Fix a bug in the code generator that can causes incorrect results if two or more virtual tables are joined and the virtual table used in outer loop of the join has an IN operator constraint. Correctly interpret negative "PRAGMA cache_size" values when determining the cache size used for sorting large amounts of data.
Revision 1.107 / (download) - annotate - [select for diffs], Mon Apr 11 19:01:34 2016 UTC (7 years, 7 months ago) by ryoon
Branch: MAIN
Changes since 1.106: +2 -1
lines
Diff to previous 1.106 (colored)
Recursive revbump from textproc/icu 57.1
Revision 1.106 / (download) - annotate - [select for diffs], Mon Mar 21 00:33:16 2016 UTC (7 years, 8 months ago) by ryoon
Branch: MAIN
CVS Tags: pkgsrc-2016Q1-base,
pkgsrc-2016Q1
Changes since 1.105: +3 -1
lines
Diff to previous 1.105 (colored)
Fix FreeBSD build, apply patch in PR pkg/50776
Revision 1.105 / (download) - annotate - [select for diffs], Sun Mar 6 12:12:00 2016 UTC (7 years, 9 months ago) by adam
Branch: MAIN
Changes since 1.104: +2 -6
lines
Diff to previous 1.104 (colored)
Switch to dynamically-linked shell
Revision 1.104 / (download) - annotate - [select for diffs], Sat Jan 23 05:45:59 2016 UTC (7 years, 10 months ago) by ryoon
Branch: MAIN
Changes since 1.103: +3 -1
lines
Diff to previous 1.103 (colored)
Fix build on DragonFly 4.4.1
Revision 1.103 / (download) - annotate - [select for diffs], Fri Jan 8 22:25:09 2016 UTC (7 years, 10 months ago) by ryoon
Branch: MAIN
Changes since 1.102: +5 -5
lines
Diff to previous 1.102 (colored)
Fix READLINE_TYPE=readline case
Revision 1.102 / (download) - annotate - [select for diffs], Fri Jan 8 21:45:35 2016 UTC (7 years, 10 months ago) by ryoon
Branch: MAIN
Changes since 1.101: +2 -2
lines
Diff to previous 1.101 (colored)
Use LDFLAGS instead of LIBS
Revision 1.101 / (download) - annotate - [select for diffs], Fri Jan 8 21:41:36 2016 UTC (7 years, 10 months ago) by ryoon
Branch: MAIN
Changes since 1.100: +7 -1
lines
Diff to previous 1.100 (colored)
On NetBSD-current, libedit provides readline-like interface. Fix build
Revision 1.100 / (download) - annotate - [select for diffs], Fri Jan 8 14:43:10 2016 UTC (7 years, 11 months ago) by adam
Branch: MAIN
Changes since 1.99: +1 -3
lines
Diff to previous 1.99 (colored)
Changes 3.10.0: General improvements: --------------------- Added support for LIKE, GLOB, and REGEXP operators on virtual tables. Added the colUsed field to sqlite3_index_info for use by the sqlite3_module.xBestIndex method. Enhance the PRAGMA cache_spill statement to accept a 32-bit integer parameter which is the threshold below which cache spilling is prohibited. On unix, if a symlink to a database file is opened, then the corresponding journal files are based on the actual filename, not the symlink name. Added the "--transaction" option to sqldiff. Added the sqlite3_db_cacheflush() interface. Added the sqlite3_strlike() interface. When using memory-mapped I/O map the database file read-only so that stray pointers and/or array overruns in the application cannot accidently modify the database file. Added the experimental sqlite3_snapshot_get(), sqlite3_snapshot_open(), and sqlite3_snapshot_free() interfaces. These are subject to change or removal in a subsequent release. Enhance the 'utc' modifier in the date and time functions so that it is a no-op if the date/time is known to already be in UTC. (This is not a compatibility break since the behavior has long been documented as "undefined" in that case.) Added the json_group_array() and json_group_object() SQL functions in the json extension. Added the SQLITE_LIKE_DOESNT_MATCH_BLOBS compile-time option. Many small performance optimizations. Portability enhancements: ------------------------- Work around a sign-exension bug in the optimizer of the HP C compiler on HP/UX. (details) Enhancements to the command-line shell: --------------------------------------- Added the ".changes ON|OFF" and ".vfsinfo" dot-commands. Translate between MBCS and UTF8 when running in cmd.exe on Windows. Enhancements to makefiles: -------------------------- Added the --enable-editline and --enable-static-shell options to the various autoconf-generated configure scripts. Omit all use of "awk" in the makefiles, to make building easier for MSVC users. Important fixes: ---------------- Fix inconsistent integer to floating-point comparison operations that could result in a corrupt index if the index is created on a table column that contains both large integers and floating point values of similar magnitude. Ticket 38a97a87a6. Fix an infinite-loop in the query planner that could occur on malformed common table expressions. Various bug fixes in the sqldiff tool.
Revision 1.99 / (download) - annotate - [select for diffs], Thu Oct 15 17:31:32 2015 UTC (8 years, 1 month ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2015Q4-base,
pkgsrc-2015Q4
Changes since 1.98: +1 -2
lines
Diff to previous 1.98 (colored)
Changes 3.9.0: Policy Changes: * The version numbering conventions for SQLite are revised to use the emerging standard of semantic versioning. New Features And Enhancements: * Added the json1 extension module in the source tree, and in the amalgamation. Enable support using the SQLITE_ENABLE_JSON1 compile-time option. * Added Full Text Search version 5 (FTS5) to the amalgamation, enabled using SQLITE_ENABLE_FTS5. FTS5 will be considered "experimental" (subject to incompatible changes) for at least one more release cycle. * The CREATE VIEW statement now accepts an optional list of column names following the view name. * Added support for indexes on expressions. * Added support for table-valued functions in the FROM clause of a SELECT statement. * Added support for eponymous virtual tables. * A VIEW may now reference undefined tables and functions when initially created. Missing tables and functions are reported when the VIEW is used in a query. * Added the sqlite3_value_subtype() and sqlite3_result_subtype() interfaced (used by the json1 extension). * The query planner is now able to use partial indexes that contain AND-connected terms in the WHERE clause. * The sqlite3_analyzer.exe utility is updated to report the depth of each btree and to show the average fanout for indexes and WITHOUT ROWID tables. * Enhanced the dbstat virtual table so that it can be used as a table-valued function where the argument is the schema to be analyzed. Other changes: * The sqlite3_memory_alarm() interface, which has been deprecated and undocumented for 8 years, is changed into a no-op. Important fixes: * Fixed a critical bug in the SQLite Encryption Extension that could cause the database to become unreadable and unrecoverable if a VACUUM command changed the size of the encryption nonce. * Added a memory barrier in the implementation of sqlite3_initialize() to help ensure that it is thread-safe. * Fix the OR optimization so that it always ignores subplans that do not use an index. * Do not apply the WHERE-clause pushdown optimization on terms that originate in the ON or USING clause of a LEFT JOIN.
Revision 1.98 / (download) - annotate - [select for diffs], Sat Oct 10 01:57:51 2015 UTC (8 years, 1 month ago) by ryoon
Branch: MAIN
Changes since 1.97: +2 -1
lines
Diff to previous 1.97 (colored)
Recursive revbump from textproc/icu
Revision 1.97 / (download) - annotate - [select for diffs], Wed May 20 11:33:01 2015 UTC (8 years, 6 months ago) by abs
Branch: MAIN
CVS Tags: pkgsrc-2015Q3-base,
pkgsrc-2015Q3,
pkgsrc-2015Q2-base,
pkgsrc-2015Q2
Changes since 1.96: +5 -1
lines
Diff to previous 1.96 (colored)
Record error message that prompted MAKE_JOBS_SAFE=no
Revision 1.96 / (download) - annotate - [select for diffs], Wed May 20 09:18:24 2015 UTC (8 years, 6 months ago) by abs
Branch: MAIN
Changes since 1.95: +2 -1
lines
Diff to previous 1.95 (colored)
Add MAKE_JOBS_SAFE=no
Revision 1.92.2.1 / (download) - annotate - [select for diffs], Sun May 17 08:10:35 2015 UTC (8 years, 6 months ago) by tron
Branch: pkgsrc-2015Q1
Changes since 1.92: +3 -3
lines
Diff to previous 1.92 (colored) next main 1.93 (colored)
Pullup ticket #4710 - requested by bsiegert databases/sqlite3: security update Revisions pulled up: - databases/sqlite3/Makefile patch - databases/sqlite3/distinfo patch --- Apply patch proposed by J. Lewis Muir on "pkgsrc-users" mailing list: Below is a patch against pkgsrc-2015Q1 to update databases/sqlite3 to version 3.8.10 which includes fixes for the bugs found by the AFL fuzzer.
Revision 1.95 / (download) - annotate - [select for diffs], Tue Apr 21 23:26:42 2015 UTC (8 years, 7 months ago) by khorben
Branch: MAIN
Changes since 1.94: +4 -3
lines
Diff to previous 1.94 (colored)
Simplify updates for databases/sqlite3{,-docs,-tcl} This change adds a Makefile.version file, common to every package from SQLite 3.
Revision 1.94 / (download) - annotate - [select for diffs], Sat Apr 11 12:42:06 2015 UTC (8 years, 7 months ago) by adam
Branch: MAIN
Changes since 1.93: +3 -4
lines
Diff to previous 1.93 (colored)
Changes 3.8.9: Add VxWorks-7 as an officially supported and tested platform. Added the sqlite3_status64() interface. Fix memory size tracking so that it works even if SQLite uses more than 2GiB of memory. Added the PRAGMA index_xinfo command. Fix a potential 32-bit integer overflow problem in the sqlite3_blob_read() and sqlite3_blob_write() interfaces. Ensure that prepared statements automatically reset on extended error codes of SQLITE_BUSY and SQLITE_LOCKED even when compiled using SQLITE_OMIT_AUTORESET. Correct miscounts in the sqlite3_analyzer.exe utility related to WITHOUT ROWID tables. Added the ".dbinfo" command to the command-line shell. Improve the performance of fts3/4 queries that use the OR operator and at least one auxiliary fts function. Fix a bug in the fts3 snippet() function causing it to omit leading separator characters from snippets that begin with the first token in a column.
Revision 1.93 / (download) - annotate - [select for diffs], Mon Apr 6 08:17:14 2015 UTC (8 years, 8 months ago) by adam
Branch: MAIN
Changes since 1.92: +2 -1
lines
Diff to previous 1.92 (colored)
Revbump after updating textproc/icu
Revision 1.92 / (download) - annotate - [select for diffs], Mon Mar 2 13:34:16 2015 UTC (8 years, 9 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2015Q1-base
Branch point for: pkgsrc-2015Q1
Changes since 1.91: +3 -3
lines
Diff to previous 1.91 (colored)
Changes 3.8.8.3: Fix a bug (ticket 2326c258d02ead33) that can lead to incorrect results if the qualifying constraint of a partial index appears in the ON clause of a LEFT JOIN. Added the ability to link against the "linenoise" command-line editing library in unix builds of the command-line shell.
Revision 1.91 / (download) - annotate - [select for diffs], Mon Feb 2 17:54:21 2015 UTC (8 years, 10 months ago) by wiz
Branch: MAIN
Changes since 1.90: +3 -3
lines
Diff to previous 1.90 (colored)
Update to 3.8.8.2: Enhance sqlite3_wal_checkpoint_v2(TRUNCATE) interface so that it truncates the WAL file even if there is no checkpoint work to be done.
Revision 1.90 / (download) - annotate - [select for diffs], Tue Jan 20 20:11:07 2015 UTC (8 years, 10 months ago) by adam
Branch: MAIN
Changes since 1.89: +3 -3
lines
Diff to previous 1.89 (colored)
Changes 3.8.8.1: * Fix a bug in the sorting logic, present since version 3.8.4, that can cause output to appear in the wrong order on queries that contains an ORDER BY clause, a LIMIT clause, and that have approximately 60 or more columns in the result set.
Revision 1.89 / (download) - annotate - [select for diffs], Fri Jan 16 21:01:19 2015 UTC (8 years, 10 months ago) by adam
Branch: MAIN
Changes since 1.88: +5 -5
lines
Diff to previous 1.88 (colored)
Changes 3.8.8: New Features: * Added the PRAGMA data_version command that can be used to determine if a database file has been modified by another process. * Added the SQLITE_CHECKPOINT_TRUNCATE option to the sqlite3_wal_checkpoint_v2() interface, with corresponding enhancements to PRAGMA wal_checkpoint. * Added the sqlite3_stmt_scanstatus() interface, available only when compiled with SQLITE_ENABLE_STMT_SCANSTATUS. * The sqlite3_table_column_metadata() is enhanced to work correctly on WITHOUT ROWID tables and to check for the existence of a a table if the column name parameter is NULL. The interface is now also included in the build by default, without requiring the SQLITE_ENABLE_COLUMN_METADATA compile-time option. * Added the SQLITE_ENABLE_API_ARMOR compile-time option. * Added the SQLITE_REVERSE_UNORDERED_SELECTS compile-time option. * Added the SQLITE_SORTER_PMASZ compile-time option and SQLITE_CONFIG_PMASZ start-time option. * Added the SQLITE_CONFIG_PCACHE_HDRSZ option to sqlite3_config() which makes it easier for applications to determine the appropriate amount of memory for use with SQLITE_CONFIG_PAGECACHE. * The number of rows in a VALUES clause is no longer limited by SQLITE_LIMIT_COMPOUND_SELECT. * Added the eval.c loadable extension that implements an eval() SQL function that will recursively evaluate SQL. Performance Enhancements: * Reduce the number of memcpy() operations involved in balancing a b-tree, for 3.2% overall performance boost. * Improvements to cost estimates for the skip-scan optimization. * The automatic indexing optimization is now capable of generating a partial index if that is appropriate. Bug fixes: * Ensure durability following a power loss with "PRAGMA journal_mode=TRUNCATE" by calling fsync() right after truncating the journal file. * The query planner now recognizes that any column in the right-hand table of a LEFT JOIN can be NULL, even if that column has a NOT NULL constraint. Avoid trying to optimize out NULL tests in those cases. * Make sure ORDER BY puts rows in ascending order even if the DISTINCT operator is implemented using a descending index. * Fix data races that might occur under stress when running with many threads in shared cache mode where some of the threads are opening and closing connections. * Fix obscure crash bugs found by american fuzzy lop. * Work around a GCC optimizer bug (for gcc 4.2.1 on MacOS 10.7) that caused the R-Tree extension to compute incorrect results when compiled with -O3. Other changes: * Disable the use of the strchrnul() C-library routine unless it is specifically enabled using the -DHAVE_STRCHRNULL compile-time option. * Improvements to the effectiveness and accuracy of the likelihood(), likely(), and unlikely() SQL hint functions.
Revision 1.88 / (download) - annotate - [select for diffs], Wed Dec 10 10:39:08 2014 UTC (8 years, 11 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2014Q4-base,
pkgsrc-2014Q4
Changes since 1.87: +3 -3
lines
Diff to previous 1.87 (colored)
Changes 3.8.7.4: Bug fix: Add in a mutex that was omitted from the previous release.
Revision 1.87 / (download) - annotate - [select for diffs], Mon Dec 8 11:04:32 2014 UTC (9 years ago) by adam
Branch: MAIN
Changes since 1.86: +3 -3
lines
Diff to previous 1.86 (colored)
Changes 3.8.7.3: * Bug fix: Ensure the cached KeyInfo objects (an internal abstraction not visible to the application) do not go stale when operating in shared cache mode and frequently closing and reopening some database connections while leaving other database connections on the same shared cache open continuously. * Bug fix: Recognize that any column in the right-hand table of a LEFT JOIN can be NULL even if the column has a NOT NULL constraint. Do not apply optimizations that assume the column is never NULL.
Revision 1.86 / (download) - annotate - [select for diffs], Thu Nov 20 12:16:22 2014 UTC (9 years ago) by wiz
Branch: MAIN
Changes since 1.85: +3 -3
lines
Diff to previous 1.85 (colored)
Update to 3.8.7.2: * Enhance the ROLLBACK command so that pending queries are allowed to continue as long as the schema is unchanged. Formerly, a ROLLBACK would cause all pending queries to fail with an SQLITE_ABORT or SQLITE_ABORT_ROLLBACK error. That error is still returned if the ROLLBACK modifies the schema. * Bug fix: Make sure that NULL results from OP_Column are fully and completely NULL and do not have the MEM_Ephem bit set. Ticket 094d39a4c95ee4. * Bug fix: The %c format in sqlite3_mprintf() is able to handle precisions greater than 70. * Bug fix: Do not automatically remove the DISTINCT keyword from a SELECT that forms the right-hand side of an IN operator since it is necessary if the SELECT also contains a LIMIT. Ticket db87229497.
Revision 1.85 / (download) - annotate - [select for diffs], Fri Oct 31 21:13:32 2014 UTC (9 years, 1 month ago) by adam
Branch: MAIN
Changes since 1.84: +3 -3
lines
Diff to previous 1.84 (colored)
Changes 3.8.7.1: * In PRAGMA journal_mode=TRUNCATE mode, call fsync() immediately after truncating the journal file to ensure that the transaction is durable across a power loss. * Fix an assertion fault that can occur when updating the NULL value of a field at the end of a table that was added using ALTER TABLE ADD COLUMN. * Do not attempt to use the strchrnul() function from the standard C library unless the HAVE_STRCHRNULL compile-time option is set. * Fix a couple of problems associated with running an UPDATE or DELETE on a VIEW with a rowid in the WHERE clause.
Revision 1.84 / (download) - annotate - [select for diffs], Sun Oct 19 20:37:47 2014 UTC (9 years, 1 month ago) by adam
Branch: MAIN
Changes since 1.83: +3 -4
lines
Diff to previous 1.83 (colored)
Changes 3.8.7: Performance Enhancements: * Many micro-optimizations result in 20.3% more work for the same number of CPU cycles relative to the previous release. The cumulative performance increase since version 3.8.0 is 61%. (Measured using cachegrind on the speedtest1.c workload on Ubuntu 13.10 x64 with gcc 4.8.1 and -Os. Your performance may vary.) * The sorter can use auxiliary helper threads to increase real-time response. This feature is off by default and may be enabled using the PRAGMA threads command or the SQLITE_DEFAULT_WORKER_THREADS compile-time option. * Enhance the skip-scan optimization so that it is able to skip index terms that occur in the middle of the index, not just as the left-hand side of the index. * Improved optimization of CAST operators. * Various improvements in how the query planner uses sqlite_stat4 information to estimate plan costs. New Features: * Added new interfaces with 64-bit length parameters: sqlite3_malloc64(), sqlite3_realloc64(), sqlite3_bind_blob64(), sqlite3_result_blob64(), sqlite3_bind_text64(), and sqlite3_result_text64(). * Added the new interface sqlite3_msize() that returns the size of a memory allocation obtained from sqlite3_malloc64() and its variants. * Added the SQLITE_LIMIT_WORKER_THREADS option to sqlite3_limit() and PRAGMA threads command for configuring the number of available worker threads. * The spellfix1 extension allows the application to optionally specify the rowid for each INSERT. * Added the User Authentication extension. Bug Fixes: * Fix a bug in the partial index implementation that might result in an incorrect answer if a partial index is used in a subquery or in a view. * Fix a query planner bug that might cause a table to be scanned in the wrong direction (thus reversing the order of output) when a DESC index is used to implement the ORDER BY clause on a query that has an identical GROUP BY clause. * Fix a bug in sqlite3_trace() that was causing it to sometimes fail to print an SQL statement if that statement needed to be re-prepared. * Fix a faulty assert() statement.
Revision 1.83 / (download) - annotate - [select for diffs], Tue Oct 7 16:47:10 2014 UTC (9 years, 2 months ago) by adam
Branch: MAIN
Changes since 1.82: +2 -1
lines
Diff to previous 1.82 (colored)
Revbump after updating libwebp and icu
Revision 1.82 / (download) - annotate - [select for diffs], Sun Aug 17 08:16:06 2014 UTC (9 years, 3 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2014Q3-base,
pkgsrc-2014Q3
Changes since 1.81: +3 -3
lines
Diff to previous 1.81 (colored)
Changes 3.8.6: Added support for hexadecimal integer literals in the SQL parser. (Ex: 0x123abc) Enhanced the PRAGMA integrity_check command to detect UNIQUE and NOT NULL constraint violations. Increase the maximum value of SQLITE_MAX_ATTACHED from 62 to 125. Increase the timeout in WAL mode before issuing an SQLITE_PROTOCOL error from 1 second to 10 seconds. Added the likely(X) SQL function. The unicode61 tokenizer is now included in FTS4 by default. Trigger automatic reprepares on all prepared statements when ANALYZE is run. Added a new loadable extension source code file to the source tree: fileio.c Add extension functions readfile(X) and writefile(X,Y) (using code copy/pasted from fileio.c in the previous bullet) to the command-line shell. Added the .fullschema dot-command to the command-line shell. Performance Enhancements: ------------------------- Deactivate the DISTINCT keyword on subqueries on the right-hand side of the IN operator. Add the capability of evaluating an IN operator as a sequence of comparisons as an alternative to using a table lookup. Use the sequence of comparisons implementation in circumstances where it is likely to be faster, such as when the right-hand side of the IN operator is small and/or changes frequently. The query planner now uses sqlite_stat4 information (created by ANALYZE) to help determine if the skip-scan optimization is appropriate. Ensure that the query planner never tries to use a self-made transient index in place of a schema-defined index. Other minor tweaks to improve the quality of VDBE code. Bug Fixes: ---------- Fix a bug in CREATE UNIQUE INDEX, introduced when WITHOUT ROWID support added in version 3.8.2, that allows a non-unique NOT NULL column to be given a UNIQUE index. Fix a bug in R-Tree extension, introduced in the previous release, that can cause an incorrect results for queries that use the rowid of the R-Tree on the left-hand side of an IN operator. Fix the sqlite3_stmt_busy() interface so that it gives the correct answer for ROLLBACK statements that have been stepped but never reset. Fix a bug in that would cause a null pointer to be dereferenced if a column with a DEFAULT that is an aggregate function tried to usee its DEFAULT. CSV output from the command-line shell now always uses CRNL for the row separator and avoids inserting CR in front of NLs contained in data. Fix a column affinity problem with the IN operator. Fix the ANALYZE command so that it adds correct samples for WITHOUT ROWID tables in the sqlite_stat4 table.
Revision 1.81 / (download) - annotate - [select for diffs], Thu Aug 7 15:36:11 2014 UTC (9 years, 4 months ago) by wiz
Branch: MAIN
Changes since 1.80: +3 -2
lines
Diff to previous 1.80 (colored)
Fix build on OS X Tiger/Darwin 8.11.0. From Sevan Janiyan in PR 49081.
Revision 1.80 / (download) - annotate - [select for diffs], Fri Jul 18 11:25:14 2014 UTC (9 years, 4 months ago) by ryoon
Branch: MAIN
Changes since 1.79: +5 -1
lines
Diff to previous 1.79 (colored)
Fix SCO OpenServer 5.0.7/3.2 build.
Revision 1.79 / (download) - annotate - [select for diffs], Thu Jun 5 15:10:20 2014 UTC (9 years, 6 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2014Q2-base,
pkgsrc-2014Q2
Changes since 1.78: +3 -4
lines
Diff to previous 1.78 (colored)
Changes 3.8.5: Added support for partial sorting by index. Enhance the query planner so that it always prefers an index that uses a superset of WHERE clause terms relative to some other index. Improvements to the automerge command of FTS4 to better control the index size for a full-text index that is subject to a large number of updates. Added the sqlite3_rtree_query_callback() interface to R-Tree extension Added new URI query parameters "nolock" and "immutable". Use less memory by not remembering CHECK constraints on read-only database connections. Enable the OR optimization for WITHOUT ROWID tables. Render expressions of the form "x IN (?)" (with a single value in the list on the right-hand side of the IN operator) as if they where "x==?", Similarly optimize "x NOT IN (?)" Add the ".system" and ".once" commands to the command-line shell. Added the SQLITE_IOCAP_IMMUTABLE bit to the set of bits that can be returned by the xDeviceCharacteristics method of a VFS. Added the SQLITE_TESTCTRL_BYTEORDER test control. Bug Fixes: ---------- OFFSET clause ignored on queries without a FROM clause. Assertion fault on queries involving expressions of the form "x IN (?)". Incorrect column datatype reported. Duplicate row returned on a query against a table with more than 16 indices, each on a separate column, and all used via OR-connected constraints. Partial index causes assertion fault on UPDATE OR REPLACE. Crash when calling undocumented SQL function sqlite_rename_parent() with NULL parameters. ORDER BY ignored if the query has an identical GROUP BY. The group_concat(x,'') SQL function returns NULL instead of an empty string when all inputs are empty strings. Fix a bug in the VDBE code generator that caused crashes when doing an INSERT INTO ... SELECT statement where the number of columns being inserted is larger than the number of columns in the destination table. Fix a problem in CSV import in the command-line shell where if the leftmost field of the first row in the CSV file was both zero bytes in size and unquoted no data would be imported. Fix a problem in FTS4 where the left-most column that contained the notindexed column name as a prefix was not indexed rather than the column whose name matched exactly. Fix the sqlite3_db_readonly() interface so that it returns true if the database is read-only due to the file format write version number being too large.
Revision 1.78 / (download) - annotate - [select for diffs], Wed Apr 9 07:26:56 2014 UTC (9 years, 8 months ago) by obache
Branch: MAIN
Changes since 1.77: +2 -1
lines
Diff to previous 1.77 (colored)
recursive bump from icu shlib major bump.
Revision 1.77 / (download) - annotate - [select for diffs], Thu Apr 3 19:44:42 2014 UTC (9 years, 8 months ago) by adam
Branch: MAIN
Changes since 1.76: +3 -3
lines
Diff to previous 1.76 (colored)
Changes 3.8.4.3: Add a one-character fix for a problem that might cause incorrect query results on a query that mixes DISTINCT, GROUP BY in a subquery, and ORDER BY.
Revision 1.76 / (download) - annotate - [select for diffs], Mon Mar 31 08:01:07 2014 UTC (9 years, 8 months ago) by adam
Branch: MAIN
Changes since 1.75: +3 -3
lines
Diff to previous 1.75 (colored)
Changes 3.8.4.2: Fix a potential buffer overread that could result when trying to search a corrupt database file.
Revision 1.75 / (download) - annotate - [select for diffs], Thu Mar 13 13:36:19 2014 UTC (9 years, 8 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2014Q1-base,
pkgsrc-2014Q1
Changes since 1.74: +3 -3
lines
Diff to previous 1.74 (colored)
Changes 3.8.4.1: Work around a C-preprocessor macro conflict that breaks the build for some configurations with Microsoft Visual Studio. When computing the cost of the skip-scan optimization, take into account the fact that multiple seeks are required.
Revision 1.74 / (download) - annotate - [select for diffs], Mon Mar 10 17:03:29 2014 UTC (9 years, 8 months ago) by adam
Branch: MAIN
Changes since 1.73: +3 -3
lines
Diff to previous 1.73 (colored)
Changes 3.8.4: Code optimization and refactoring for improved performance. Add the ".clone" and ".save" commands to the command-line shell. Update the banner on the command-line shell to alert novice users when they are using an ephemeral in-memory database. Fix editline support in the command-line shell. Add support for coverage testing of VDBE programs using the SQLITE_TESTCTRL_VDBE_COVERAGE verb of sqlite3_test_control(). Update the _FILE_OFFSET_BITS macro so that builds work again on QNX. Change the datatype of SrcList.nSrc from type u8 to type int to work around an issue in the C compiler on AIX. Get extension loading working on Cygwin. Bug fix: Fix the char() SQL function so that it returns an empty string rather than an "out of memory" error when called with zero arguments. Bug fix: DISTINCT now recognizes that a zeroblob and a blob of all 0x00 bytes are the same thing. Ticket [fccbde530a] Bug fix: Compute the correct answer for queries that contain an IS NOT NULL term in the WHERE clause and also contain an OR term in the WHERE clause and are compiled with SQLITE_ENABLE_STAT4. Ticket [4c86b126f2] Bug fix: Make sure "rowid" columns are correctly resolved in joins between normal tables and WITHOUT ROWID tables. Ticket [c34d0557f7] Bug fix: Make sure the same temporary registers are not used in concurrent co-routines used to implement compound SELECT statements containing ORDER BY clauses, as such use can lead to incorrect answers. Ticket [8c63ff0eca] Bug fix: Ensure that "ORDER BY random()" clauses do not get optimized out. Ticket [65bdeb9739] Bug fix: Repair a name-resolution error that can occur in sub-select statements contained within a TRIGGER. Ticket [4ef7e3cfca] Bug fix: Fix column default values expressions of the form "DEFAULT(-(-9223372036854775808))" so that they work correctly, initializing the column to a floating point value approximately equal to +9223372036854775808.0.
Revision 1.73 / (download) - annotate - [select for diffs], Thu Feb 13 07:30:31 2014 UTC (9 years, 9 months ago) by adam
Branch: MAIN
Changes since 1.72: +3 -3
lines
Diff to previous 1.72 (colored)
Changes 3.8.3.1: Fix a bug (ticket 4c86b126f2) that causes rows to go missing on some queries with OR clauses and IS NOT NULL operators in the WHERE clause, when the SQLITE_ENABLE_STAT3 or SQLITE_ENABLE_STAT4 compile-time options are used. Fix a harmless compiler warning that was causing problems for VS2013.
Revision 1.72 / (download) - annotate - [select for diffs], Tue Feb 4 13:28:07 2014 UTC (9 years, 10 months ago) by adam
Branch: MAIN
Changes since 1.71: +5 -5
lines
Diff to previous 1.71 (colored)
Changes 3.8.3: Added support for common table expressions and the WITH clause. Added the printf() SQL function. Added SQLITE_DETERMINISTIC as an optional bit in the 4th argument to the sqlite3_create_function() and related interfaces, providing applications with the ability to create new functions that can be factored out of inner loops when they have constant arguments. Add SQLITE_READONLY_DBMOVED error code, returned at the beginning of a transaction, to indicate that the underlying database file has been renamed or moved out from under SQLite. Allow arbitrary expressions, including function calls and subqueries, in the filename argument to ATTACH. Allow a VALUES clause to be used anywhere a SELECT statement is valid. Reseed the PRNG used by sqlite3_randomness(N,P) when invoked with N==0. Automatically reseed after a fork() on unix. Enhance the spellfix1 virtual table so that it can search efficiently by rowid. Performance enhancements. Improvements to the comments in the VDBE byte-code display when running EXPLAIN. Add the "%token_class" directive to LEMON parser generator and use it to simplify the grammar. Change the LEMON source code to avoid calling C-library functions that OpenBSD considers dangerous. (Ex: sprintf). Bug fix: In the command-line shell CSV import feature, do not end a field when an escaped double-quote occurs at the end of a CRLN line.
Revision 1.71 / (download) - annotate - [select for diffs], Fri Dec 6 19:26:58 2013 UTC (10 years ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2013Q4-base,
pkgsrc-2013Q4
Changes since 1.70: +3 -3
lines
Diff to previous 1.70 (colored)
Changes 3.8.2: Changed the defined behavior for the CAST expression when floating point values greater than +9223372036854775807 are cast into into integers so that the result is the largest possible integer, +9223372036854775807, instead of the smallest possible integer, -9223372036854775808. After this change, CAST(9223372036854775809.0 as INT) yields +9223372036854775807 instead of -9223372036854775808. ãæPotentially Incompatible Change! Added support for WITHOUT ROWID tables. Added the skip-scan optimization to the query planner. Extended the virtual table interface, and in particular the sqlite3_index_info object to allow a virtual table to report its estimate on the number of rows that will be returned by a query. Update the R-Tree extension to make use of the enhanced virtual table interface. Add the SQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option. Enhanced the comments that are inserted into EXPLAIN output when the SQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option is enabled. Performance enhancements in the VDBE, especially to the OP_Column opcode. Factor constant subexpressions in inner loops out to the initialization code in prepared statements. Enhanced the ".explain" output formatting of the command-line shell so that loops are indented to better show the structure of the program. Enhanced the ".timer" feature of the command-line shell so that it shows wall-clock time in addition to system and user times.
Revision 1.70 / (download) - annotate - [select for diffs], Sat Oct 19 08:48:08 2013 UTC (10 years, 1 month ago) by adam
Branch: MAIN
Changes since 1.69: +3 -3
lines
Diff to previous 1.69 (colored)
Changes 3.8.1: Added the unlikely() and likelihood() SQL functions to be used as hints to the query planner. Enhancements to the query planner: Take into account the fact WHERE clause terms that cannot be used with indices still probably reduce the number of output rows. Estimate the sizes of table and index rows and use the smallest applicable B-Tree for full scans and "count(*)" operations. Added the soft_heap_limit pragma. Added support for SQLITE_ENABLE_STAT4 Added support for "sz=NNN" parameters at the end of sqlite_stat1.stat fields used to specify the average length in bytes for table and index rows. Avoid running foreign-key constraint checks on an UPDATE if none of the modified columns are associated with foreign keys. Added the SQLITE_MINIMUM_FILE_DESCRIPTOR compile-time option Added the win32-longpath VFS on windows, permitting filenames up to 32K characters in length. The Date And Time Functions are enhanced so that the current time (ex: julianday('now')) is always the same for multiple function invocations within the same sqlite3_step() call. Add the "totype.c" extension, implementing the tointeger() and toreal() SQL functions. FTS4 queries are better able to make use of docid<$limit constraints to limit the amount of I/O required. Added the hidden fts4aux languageid column to the fts4aux virtual table. The VACUUM command packs the database about 1% tighter. The sqlite3_analyzer utility program is updated to provide better descriptions and to compute a more accurate estimate for "Non-sequential pages" Refactor the implementation of PRAGMA statements to improve parsing performance. The directory used to hold temporary files on unix can now be set using the SQLITE_TMPDIR environment variable, which takes precedence over the TMPDIR environment variable. The sqlite3_temp_directory global variable still has higher precedence than both environment variables, however. Added the PRAGMA stats statement. Bug fix: Return the correct answer for "SELECT count(*) FROM table" even if there is a partial index on the table.
Revision 1.69 / (download) - annotate - [select for diffs], Sun Sep 8 06:28:43 2013 UTC (10 years, 3 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2013Q3-base,
pkgsrc-2013Q3
Changes since 1.68: +3 -3
lines
Diff to previous 1.68 (colored)
Changes 3.8.0.2: Fix an off-by-one error that caused quoted empty string at the end of a CRNL-terminated line of CSV input to be misread by the command-line shell. Fix a query planner bug involving a LEFT JOIN with a BETWEEN or LIKE/GLOB constraint and then another INNER JOIN to the right that involves an OR constraint. Fix a query planner bug that could result in a segfault when querying tables with a UNIQUE or PRIMARY KEY constraint with more than four columns.
Revision 1.68 / (download) - annotate - [select for diffs], Sat Aug 31 11:07:33 2013 UTC (10 years, 3 months ago) by adam
Branch: MAIN
Changes since 1.67: +3 -3
lines
Diff to previous 1.67 (colored)
Changes 3.8.0.1: Add support for partial indexes Cut-over to the next generation query planner for faster and better query plans. The EXPLAIN QUERY PLAN output no longer shows an estimate of the number of rows generated by each loop in a join. Added the FTS4 notindexed option, allowing non-indexed columns in an FTS4 table. Added the SQLITE_STMTSTATUS_VM_STEP option to sqlite3_stmt_status(). Added the cache_spill pragma. Added the query_only pragma. Added the defer_foreign_keys pragma and the sqlite3_db_status(db, SQLITE_DBSTATUS_DEFERRED_FKS,...) C-language interface. Added the "percentile()" function as a loadable extension in the ext/misc subdirectory of the source tree. Added the SQLITE_ALLOW_URI_AUTHORITY compile-time option. Add the sqlite3_cancel_auto_extension(X) interface. A running SELECT statement that lacks a FROM clause (or any other statement that never reads or writes from any database file) will not prevent a read transaction from closing. Add the SQLITE_DEFAULT_AUTOMATIC_INDEX compile-time option. Setting this option to 0 disables automatic indices by default. Issue an SQLITE_WARNING_AUTOINDEX warning on the SQLITE_CONFIG_LOG whenever the query planner uses an automatic index. Added the SQLITE_FTS3_MAX_EXPR_DEPTH compile-time option. Added an optional 5th parameter defining the collating sequence to the next_char() extension SQL function. The SQLITE_BUSY_SNAPSHOT extended error code is returned in WAL mode when a read transaction cannot be upgraded to a write transaction because the read is on an older snapshot. Enhancements to the sqlite3_analyzer utility program to provide size information separately for each individual index of a table, in addition to the aggregate size. Allow read transactions to be freely opened and closed by SQL statements run from within the implementation of application-defined SQL functions if the function is called by a SELECT statement that does not access any database table. Disable the use of posix_fallocate() on all (unix) systems unless the HAVE_POSIX_FALLOCATE compile-time option is used. Update the ".import" command in the command-line shell to support multi-line fields and correct RFC-4180 quoting and to issue warning and/or error messages if the input text is not strictly RFC-4180 compliant. Bug fix: In the unicode61 tokenizer of FTS4, treat all private code points as identifier symbols. Bug fix: Bare identifiers in ORDER BY clauses bind more tightly to output column names, but identifiers in expressions bind more tightly to input column names. Identifiers in GROUP BY clauses always prefer output column names, however. Bug fixes: Multiple problems in the legacy query optimizer were fixed by the move to NGQP.
Revision 1.67 / (download) - annotate - [select for diffs], Mon Jul 15 02:02:20 2013 UTC (10 years, 4 months ago) by ryoon
Branch: MAIN
Changes since 1.66: +2 -2
lines
Diff to previous 1.66 (colored)
* .include "../../devel/readline/buildlink3.mk" with USE_GNU_READLINE=yes are replaced with .include "../../devel/readline/buildlink3.mk", and USE_GNU_READLINE are removed, * .include "../../devel/readline/buildlink3.mk" without USE_GNU_READLINE are replaced with .include "../../mk/readline.buildlink3.mk".
Revision 1.66 / (download) - annotate - [select for diffs], Mon May 20 19:17:15 2013 UTC (10 years, 6 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2013Q2-base,
pkgsrc-2013Q2
Changes since 1.65: +3 -4
lines
Diff to previous 1.65 (colored)
Changes 3.7.17: Add support for memory-mapped I/O. Add the sqlite3_strglob() convenience interface. Assigned the integer at offset 68 in the database header as the Application ID for when SQLite is used as an application file-format. Added the PRAGMA application_id command to query and set the Application ID. Report rollback recovery in the error log as SQLITE_NOTICE_RECOVER_ROLLBACK. Change the error log code for WAL recover from SQLITE_OK to SQLITE_NOTICE_RECOVER_WAL. Report the risky uses of unlinked database files and database filename aliasing as SQLITE_WARNING messages in the error log. Added the SQLITE_TRACE_SIZE_LIMIT compile-time option. Increase the default value of SQLITE_MAX_SCHEMA_RETRY to 50 and make sure that it is honored in every place that a schema change might force a statement retry. Add a new test harness called "mptester" used to verify correct operation when multiple processes are using the same database file at the same time. Enhance the extension loading mechanism to be more flexible (while still maintaining backwards compatibility) in two ways: If the default entry point "sqlite3_extension_init" is not present in the loadable extension, also try an entry point "sqlite3_X_init" where "X" is based on the shared library filename. This allows every extension to have a different entry point, which allows them to be statically linked with no code changes. The shared library filename passed to sqlite3_load_extension() may omit the filename suffix, and an appropriate architecture-dependent suffix (".so", ".dylib", or ".dll") will be added automatically. Added many new loadable extensions to the source tree, including amatch, closure, fuzzer, ieee754, nextchar, regexp, spellfix, and wholenumber. See header comments on each extension source file for further information about what that extension does. Enhance FTS3 to avoid using excess stack space when there are a huge number of terms on the right-hand side of the MATCH operator. A side-effect of this change is that the MATCH operator can only accommodate 12 NEAR operators at a time. Enhance the fts4aux virtual table so that it can be a TEMP table. Added the fts3tokenize virtual table to the full-text search logic. Query planner enhancement: Use the transitive property of constraints to move constraints into the outer loops of a join whenever possible, thereby reducing the amount of work that needs to occur in inner loops. Discontinue the use of posix_fallocate() on unix, as it does not work on all filesystems. Improved tracing and debugging facilities in the Windows VFS. Bug fix: Fix a potential database corruption bug in shared cache mode when one database connection is closed while another is in the middle of a write transaction. Bug fix: Only consider AS names from the result set as candidates for resolving identifiers in the WHERE clause if there are no other matches. In the ORDER BY clause, AS names take priority over any column names. Bug fix: Do not allow a virtual table to cancel the ORDER BY clause unless all outer loops are guaranteed to return no more than one row result. Bug fix: Do not suppress the ORDER BY clause on a virtual table query if an IN constraint is used. Bug fix: The command-line shell gives an exit code of 0 when terminated using the ".quit" command. Bug fix: Make sure PRAGMA statements appear in sqlite3_trace() output. Bug fix: When a compound query that uses an ORDER BY clause with a COLLATE operator, make sure that the sorting occurs according to the specified collation and that the comparisons associate with the compound query use the native collation. Bug fix: Makes sure the authorizer callback gets a valid pointer to the string "ROWID" for the column-name parameter when doing an UPDATE that changes the rowid. Bug fix: Do not move WHERE clause terms inside OR expressions that are contained within an ON clause of a LEFT JOIN. Bug fix: Make sure an error is always reported when attempting to preform an operation that requires a collating sequence that is missing.
Revision 1.65 / (download) - annotate - [select for diffs], Thu May 9 07:39:05 2013 UTC (10 years, 7 months ago) by adam
Branch: MAIN
Changes since 1.64: +2 -1
lines
Diff to previous 1.64 (colored)
Massive revbump after updating graphics/ilmbase, graphics/openexr, textproc/icu.
Revision 1.64 / (download) - annotate - [select for diffs], Mon Apr 15 15:33:46 2013 UTC (10 years, 7 months ago) by adam
Branch: MAIN
Changes since 1.63: +3 -3
lines
Diff to previous 1.63 (colored)
Changes 3.7.16.2: Fix a bug (present since version 3.7.13) that could result in database corruption on windows if two or more processes try to access the same database file at the same time and immediately after third process crashed in the middle of committing to that same file.
Revision 1.63 / (download) - annotate - [select for diffs], Mon Apr 1 18:56:41 2013 UTC (10 years, 8 months ago) by adam
Branch: MAIN
Changes since 1.62: +5 -6
lines
Diff to previous 1.62 (colored)
Changes 3.7.16.1: * Fix for a bug in the ORDER BY optimizer that was introduced in version 3.7.15 which would sometimes optimize out the sorting step when in fact the sort was required. Ticket a179fe7465 * Fix a long-standing bug in the CAST expression that would recognize UTF16 characters as digits even if their most-significant-byte was not zero. Ticket 689137afb6da41. * Fix a bug in the NEAR operator of FTS3 when applied to subfields. Ticket 38b1ae018f. * Fix a long-standing bug in the storage engine that would (very rarely) cause a spurious report of an SQLITE_CORRUPT error but which was otherwise harmless. Ticket 6bfb98dfc0c. * The SQLITE_OMIT_MERGE_SORT option has been removed. The merge sorter is now a required component of SQLite. * Fixed lots of spelling errors in the source-code comments
Revision 1.62 / (download) - annotate - [select for diffs], Thu Feb 21 15:14:46 2013 UTC (10 years, 9 months ago) by gdt
Branch: MAIN
CVS Tags: pkgsrc-2013Q1-base,
pkgsrc-2013Q1
Changes since 1.61: +2 -2
lines
Diff to previous 1.61 (colored)
Add explanations to DESCR for sqlite packages because it is quite boggling that, e.g., py-sqlite2 is a wrapper for sqlite3.
Revision 1.61 / (download) - annotate - [select for diffs], Sat Jan 26 21:36:16 2013 UTC (10 years, 10 months ago) by adam
Branch: MAIN
Changes since 1.60: +2 -1
lines
Diff to previous 1.60 (colored)
Revbump after graphics/jpeg and textproc/icu
Revision 1.60 / (download) - annotate - [select for diffs], Thu Jan 10 17:12:30 2013 UTC (10 years, 10 months ago) by adam
Branch: MAIN
Changes since 1.59: +3 -3
lines
Diff to previous 1.59 (colored)
Changes 3.7.15.2: Fix a bug, introduced in version 3.7.15, that causes an ORDER BY clause to be optimized out of a three-way join when the ORDER BY is actually required.
Revision 1.59 / (download) - annotate - [select for diffs], Thu Jan 3 20:46:17 2013 UTC (10 years, 11 months ago) by adam
Branch: MAIN
Changes since 1.58: +3 -3
lines
Diff to previous 1.58 (colored)
Changes 3.7.15.1: Fix a bug, introduced in version 3.7.15, that causes a segfault if the AS name of a result column of a SELECT statement is used as a logical term in the WHERE clause.
Revision 1.58 / (download) - annotate - [select for diffs], Sat Dec 15 18:42:33 2012 UTC (10 years, 11 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2012Q4-base,
pkgsrc-2012Q4
Changes since 1.57: +3 -4
lines
Diff to previous 1.57 (colored)
Changes 3.7.15: * Added the sqlite3_errstr() interface. * Avoid invoking the sqlite3_trace() callback multiple times when a statement is automatically reprepared due to SQLITE_SCHEMA errors. * Added support for Windows Phone 8 platforms * Enhance IN operator processing to make use of indices with numeric affinities. * Do full-table scans using covering indices when possible, under the theory that an index will be smaller and hence can be scanned with less I/O. * Enhance the query optimizer so that ORDER BY clauses are more aggressively optimized, especially in joins where various terms of the ORDER BY clause come from separate tables of the join. * Add the ability to implement FROM clause subqueries as coroutines rather that manifesting the subquery into a temporary table. * Enhancements the command-line shell: * Added the ".print" command * Negative numbers in the ".width" command cause right-alignment * Add the ".wheretrace" command when compiled with SQLITE_DEBUG * Added the busy_timeout pragma. * Added the instr() SQL function. * Added the SQLITE_FCNTL_BUSYHANDLER file control, used to allow VFS implementations to get access to the busy handler callback. * The xDelete method in the built-in VFSes now return SQLITE_IOERR_DELETE_NOENT if the file to be deleted does not exist. * Enhanced support for QNX. * Work around an optimizer bug in the MSVC compiler when targeting ARM. * Bug fix: Avoid various concurrency problems in shared cache mode. * Bug fix: Avoid a deadlock or crash if the backup API, shared cache, and the SQLite Encryption Extension are all used at once. * Bug fix: SQL functions created using the TCL interface honor the "nullvalue" setting. * Bug fix: Fix a 32-bit overflow problem on CREATE INDEX for databases larger than 16GB. * Bug fix: Avoid segfault when using the COLLATE operator inside of a CHECK constraint or view in shared cache mode.
Revision 1.57 / (download) - annotate - [select for diffs], Fri Dec 14 19:36:37 2012 UTC (10 years, 11 months ago) by drochner
Branch: MAIN
Changes since 1.56: +5 -1
lines
Diff to previous 1.56 (colored)
build with the same options as the NetBSD builtin version, bump PKGREV
Revision 1.56 / (download) - annotate - [select for diffs], Sat Oct 6 17:59:07 2012 UTC (11 years, 2 months ago) by adam
Branch: MAIN
Changes since 1.55: +3 -3
lines
Diff to previous 1.55 (colored)
Changes 3.7.14.1: * Fix a bug that causes a segfault on a LEFT JOIN that includes an OR in the ON clause. * Work around a bug in the optimizer in the VisualStudio-2012 compiler that causes invalid code to be generated when compiling SQLite on ARM. * Fix the TCL interface so that the "nullvalue" setting is honored for TCL implementations of SQL functions.
Revision 1.55 / (download) - annotate - [select for diffs], Tue Oct 2 21:25:53 2012 UTC (11 years, 2 months ago) by asau
Branch: MAIN
Changes since 1.54: +1 -3
lines
Diff to previous 1.54 (colored)
Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.
Revision 1.54 / (download) - annotate - [select for diffs], Thu Sep 6 20:29:41 2012 UTC (11 years, 3 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2012Q3-base,
pkgsrc-2012Q3
Changes since 1.53: +3 -3
lines
Diff to previous 1.53 (colored)
Changes 3.7.14: * Drop built-in support for OS/2. If you need to upgrade an OS/2 application to use this or a later version of SQLite, then add an application-defined VFS using the sqlite3_vfs_register() interface. The code removed in this release can serve as a baseline for the application-defined VFS. * Ensure that floating point values are preserved exactly when reconstructing a database from the output of the ".dump" command of the command-line shell. * Added the sqlite3_close_v2() interface. * Updated the command-line shell so that it can be built using SQLITE_OMIT_FLOATING_POINT and SQLITE_OMIT_AUTOINIT. * Improvements to the windows makefiles and build processes. * Enhancements to PRAGMA integrity_check and PRAGMA quick_check so that they can optionally check just a single attached database instead of all attached databases. * Enhancements to WAL mode processing that ensure that at least one valid read-mark is available at all times, so that read-only processes can always read the database. * Performance enhancements in the sorter used by ORDER BY and CREATE INDEX. * Added the SQLITE_DISABLE_FTS4_DEFERRED compile-time option. * Better handling of aggregate queries where the aggregate functions are contained within subqueries. * Enhance the query planner so that it will try to use a covering index on queries that make use of or optimization.
Revision 1.53 / (download) - annotate - [select for diffs], Mon Jun 11 16:21:30 2012 UTC (11 years, 5 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2012Q2-base,
pkgsrc-2012Q2
Changes since 1.52: +3 -3
lines
Diff to previous 1.52 (colored)
Changes 3.7.13: * In-memory databases that are specified using URI filenames are allowed to use shared cache, so that the same in-memory database can be accessed from multiple database connections. * Recognize and use the mode=memory query parameter in URI filenames. * Avoid resetting the schema of shared cache connections when any one connection closes. Instead, wait for the last connection to close before reseting the schema. * In the RTREE extension, when rounding 64-bit floating point numbers to 32-bit for storage, always round in a direction that causes the bounding box to get larger. * Adjust the unix driver to avoid unnecessary calls to fchown(). * Add interfaces sqlite3_quota_ferror() and sqlite3_quota_file_available() to the test_quota.c module. * The sqlite3_create_module() and sqlite3_create_module_v2() interfaces return SQLITE_MISUSE on any attempt to overload or replace a virtual table module. The destructor is always called in this case, in accordance with historical and current documentation.
Revision 1.52 / (download) - annotate - [select for diffs], Fri May 25 20:04:21 2012 UTC (11 years, 6 months ago) by adam
Branch: MAIN
Changes since 1.51: +3 -3
lines
Diff to previous 1.51 (colored)
Changes 3.7.12.1: * Fix a bug in the 3.7.12 release that can cause a segfault for certain obscure nested aggregate queries. * Fix various other minor test script problems.
Revision 1.51 / (download) - annotate - [select for diffs], Tue May 15 08:09:25 2012 UTC (11 years, 6 months ago) by adam
Branch: MAIN
Changes since 1.50: +3 -4
lines
Diff to previous 1.50 (colored)
Changes 3.7.12: * Add the SQLITE_DBSTATUS_CACHE_WRITE option for sqlite3_db_status(). * Optimize the typeof() and length() SQL functions so that they avoid unnecessary reading of database content from disk. * Add the FTS4 "merge" command, the FTS4 "automerge" command, and the FTS4 "integrity-check" command. * Report the name of specific CHECK constraints that fail. * In the command-line shell, use popen() instead of fopen() if the first character of the argument to the ".output" command is "|". * Make use of OVERLAPPED in the windows VFS to avoid some system calls and thereby obtain a performance improvement. * More aggressive optimization of the AND operator when one side or the other is always false. * Improved performance of queries with many OR-connected terms in the WHERE clause that can all be indexed. * Add the SQLITE_RTREE_INT_ONLY compile-time option to force the R*Tree Extension Module to use integer instead of floating point values for both storage and computation. * Enhance the PRAGMA integrity_check command to use much less memory when processing multi-gigabyte databases. * New interfaces added to the test_quota.c add-on module. * Added the ".trace" dot-command to the command-line shell. * Allow virtual table constructors to be invoked recursively. * Improved optimization of ORDER BY clauses on compound queries. * Improved optimization of aggregate subqueries contained within an aggregate query. * Bug fix: Fix the RELEASE command so that it does not cancel pending queries. This repairs a problem introduced in 3.7.11. * Bug fix: Do not discard the DISTINCT as superfluous unless a subset of the result set is subject to a UNIQUE constraint and it none of the columns in that subset can be NULL. * Bug fix: Do not optimize away an ORDER BY clause that has the same terms as a UNIQUE index unless those terms are also NOT NULL.
Revision 1.50 / (download) - annotate - [select for diffs], Fri Apr 27 12:31:40 2012 UTC (11 years, 7 months ago) by obache
Branch: MAIN
Changes since 1.49: +2 -1
lines
Diff to previous 1.49 (colored)
Recursive bump from icu shlib major bumped to 49.
Revision 1.49 / (download) - annotate - [select for diffs], Tue Mar 20 21:00:47 2012 UTC (11 years, 8 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base,
pkgsrc-2012Q1
Changes since 1.48: +3 -3
lines
Diff to previous 1.48 (colored)
Changes 3.7.11: * Enhance the INSERT syntax to allow multiple rows to be inserted via the VALUES clause. * Enhance the CREATE VIRTUAL TABLE command to support the IF NOT EXISTS clause. * Added the sqlite3_stricmp() interface as a counterpart to sqlite3_strnicmp(). * Added the sqlite3_db_readonly() interface. * Added the SQLITE_FCNTL_PRAGMA file control, giving VFS implementations the ability to add new PRAGMA statements or to override built-in PRAGMAs. * Queries of the form: "SELECT max(x), y FROM table" returns the value of y on the same row that contains the maximum x value. * Added support for the FTS4 languageid option. * Documented support for the FTS4 content option. This feature has actually been in the code since version 3.7.9 but is only now considered to be officially supported. * Pending statements no longer block ROLLBACK. Instead, the pending statement will return SQLITE_ABORT upon next access after the ROLLBACK. * Improvements to the handling of CSV inputs in the command-line shell * Fix a bug introduced in version 3.7.10 that might cause a LEFT JOIN to be incorrectly converted into an INNER JOIN if the WHERE clause indexable terms connected by OR.
Revision 1.48 / (download) - annotate - [select for diffs], Tue Jan 17 15:53:13 2012 UTC (11 years, 10 months ago) by adam
Branch: MAIN
Changes since 1.47: +3 -3
lines
Diff to previous 1.47 (colored)
Changes 3.7.10: * The default schema format number is changed from 1 to 4. This means that, unless the PRAGMA legacy_file_format=ON statement is run, newly created database files will be unreadable by version of SQLite prior to 3.3.0 (2006-01-10). It also means that the descending indices are enabled by default. * The sqlite3_pcache_methods structure and the SQLITE_CONFIG_PCACHE and SQLITE_CONFIG_GETPCACHE configuration parameters are deprecated. They are replaced by a new sqlite3_pcache_methods2 structure and SQLITE_CONFIG_PCACHE2 and SQLITE_CONFIG_GETPCACHE2 configuration parameters. * Added the powersafe overwrite property to the VFS interface. Provide the SQLITE_IOCAP_POWERSAFE_OVERWRITE I/O capability, the SQLITE_POWERSAFE_OVERWRITE compile-time option, and the "psow=BOOLEAN" query parameter for URI filenames. * Added the sqlite3_db_release_memory() interface and the shrink_memory pragma. * Added the sqlite3_db_filename() interface. * Added the sqlite3_stmt_busy() interface. * Added the sqlite3_uri_boolean() and sqlite3_uri_int64() interfaces. * If the argument to PRAGMA cache_size is negative N, that means to use approximately -1024*N bytes of memory for the page cache regardless of the page size. * Enhanced the default memory allocator to make use of _msize() on windows, malloc_size() on Mac, and malloc_usable_size() on Linux. * Enhanced the query planner to support index queries with range constraints on the rowid. * Enhanced the query planner flattening logic to allow UNION ALL compounds to be promoted upwards to replace a simple wrapper SELECT even if the compounds are joins. * Enhanced the query planner so that the xfer optimization can be used with INTEGER PRIMARY KEY ON CONFLICT as long as the destination table is initially empty. * Enhanced the windows VFS so that all system calls can be overridden using the xSetSystemCall interface. * Updated the "unix-dotfile" VFS to use locking directories with mkdir() and rmdir() instead of locking files with open() and unlink(). * Enhancements to the test_quota.c extension to support stdio-like interfaces with quotas. * Change the unix VFS to be tolerant of read() system calls that return less then the full number of requested bytes. * Change both unix and windows VFSes to report a sector size of 4096 instead of the old default of 512. * In the TCL Interface, add the -uri option to the "sqlite3" TCL command used for creating new database connection objects. * Added the SQLITE_TESTCTRL_EXPLAIN_STMT test-control option with the SQLITE_ENABLE_TREE_EXPLAIN compile-time option to enable the command-line shell to display ASCII-art parse trees of SQL statements that it processes, for debugging and analysis. * Bug fix: Add an additional xSync when restarting a WAL in order to prevent an exceedingly unlikely but theoretically possible database corruption following power-loss. * Bug fix: Change the VDBE so that all registers are initialized to Invalid instead of NULL. * Bug fix: Fix problems that can result from 32-bit integer overflow.
Revision 1.47 / (download) - annotate - [select for diffs], Sat Nov 5 19:09:07 2011 UTC (12 years, 1 month ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2011Q4-base,
pkgsrc-2011Q4
Changes since 1.46: +3 -3
lines
Diff to previous 1.46 (colored)
Changes 3.7.9: * If a search token (on the right-hand side of the MATCH operator) in FTS4 begins with "^" then that token must be the first in its field of the document. ** Potentially Incompatible Change ** * Added options SQLITE_DBSTATUS_CACHE_HIT and SQLITE_DBSTATUS_CACHE_MISS to the sqlite3_db_status() interface. * Removed support for SQLITE_ENABLE_STAT2, replacing it with the much more capable SQLITE_ENABLE_STAT3 option. * Enhancements to the sqlite3_analyzer utility program, including the --pageinfo and --stats options and support for multiplexed databases. * Enhance the sqlite3_data_count() interface so that it can be used to determine if SQLITE_DONE has been seen on the prepared statement. * Added the SQLITE_FCNTL_OVERWRITE file-control by which the SQLite core indicates to the VFS that the current transaction will overwrite the entire database file. * Increase the default lookaside memory allocator allocation size from 100 to 128 bytes. * Enhanced the query planner so that it can factor terms in and out of OR expressions in the WHERE clause in an effort to find better indices. * Added the SQLITE_DIRECT_OVERFLOW_READ compile-time option, causing overflow pages to be read directly from the database file, bypassing the page cache. * Remove limits on the magnitude of precision and width value in the format specifiers of the sqlite3_mprintf() family of string rendering routines. * Fix a bug that prevent ALTER TABLE ... RENAME from working on some virtual tables in a database with a UTF16 encoding. * Fix a bug in ASCII-to-float conversion that causes slow performance and incorrect results when converting numbers with ridiculously large exponents. * Fix a bug that causes incorrect results in aggregate queries that use multiple aggregate functions whose arguments contain complicated expressions that differ only in the case of string literals contained within those expressions. * Fix a bug that prevented the page_count and quick_check pragmas from working correctly if their names were capitalized. * Fix a bug that caused VACUUM to fail if the count_changes pragma was engaged. * Fix a bug in virtual table implementation that causes a crash if an FTS4 table is dropped inside a transaction and a SAVEPOINT occurs afterwards.
Revision 1.46 / (download) - annotate - [select for diffs], Mon Oct 3 10:22:19 2011 UTC (12 years, 2 months ago) by adam
Branch: MAIN
Changes since 1.45: +3 -3
lines
Diff to previous 1.45 (colored)
Changes 3.7.8: * Orders of magnitude performance improvement for CREATE INDEX on very large tables. * Improved the windows VFS to better defend against interference from anti-virus software. * Improved query plan optimization when the DISTINCT keyword is present. * Allow more system calls to be overridden in the unix VFS - to provide better support for chromium sandboxes. * Increase the default size of a lookahead cache line from 100 to 128 bytes. * Enhancements to the test_quota.c module so that it can track preexisting files. * Bug fix: Virtual tables now handle IS NOT NULL constraints correctly. * Bug fixes: Correctly handle nested correlated subqueries used with indices in a WHERE clause.
Revision 1.45 / (download) - annotate - [select for diffs], Fri Jul 8 09:35:39 2011 UTC (12 years, 5 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2011Q3-base,
pkgsrc-2011Q3
Changes since 1.44: +3 -4
lines
Diff to previous 1.44 (colored)
Changes 3.7.7.1: * Fix a bug causing PRAGMA case_sensitive_like statements compiled using sqlite3_prepare() to fail with an SQLITE_SCHEMA error. Changes 3.7.7: * Add support for URI filenames * Add the sqlite3_vtab_config() interface in support of ON CONFLICT clauses with virtual tables. * Add the xSavepoint, xRelease and xRollbackTo methods in virtual tables in support of SAVEPOINT for virtual tables. * Update the built-in FTS3/FTS4 and RTREE virtual tables to support ON CONFLICT clauses and REPLACE. * Avoid unnecessary reparsing of the database schema. * Added support for the FTS4 prefix option and the FTS4 order option. * Allow WAL-mode databases to be opened read-only as long as there is an existing read/write connection. * Added support for short filenames.
Revision 1.44 / (download) - annotate - [select for diffs], Fri Jun 10 17:48:32 2011 UTC (12 years, 6 months ago) by tron
Branch: MAIN
CVS Tags: pkgsrc-2011Q2-base,
pkgsrc-2011Q2
Changes since 1.43: +2 -1
lines
Diff to previous 1.43 (colored)
Bump the revision number so it matches the version number required by the buildlink file.
Revision 1.43 / (download) - annotate - [select for diffs], Thu May 19 20:42:53 2011 UTC (12 years, 6 months ago) by adam
Branch: MAIN
Changes since 1.42: +3 -3
lines
Diff to previous 1.42 (colored)
Changes 3.7.6.3: * Fix a problem with WAL mode which could cause transactions to silently rollback if the cache_size is set very small (less than 10) and SQLite comes under memory pressure.
Revision 1.42 / (download) - annotate - [select for diffs], Sun Apr 17 20:27:08 2011 UTC (12 years, 7 months ago) by adam
Branch: MAIN
Changes since 1.41: +3 -4
lines
Diff to previous 1.41 (colored)
Changes 3.7.6.2: * Fix the function prototype for the open(2) system call to agree with POSIX. Without this fix, pthreads does not work correctly on NetBSD.
Revision 1.41 / (download) - annotate - [select for diffs], Sun Apr 17 09:14:13 2011 UTC (12 years, 7 months ago) by adam
Branch: MAIN
Changes since 1.40: +2 -1
lines
Diff to previous 1.40 (colored)
Fix crash on NetBSD
Revision 1.40 / (download) - annotate - [select for diffs], Thu Apr 14 07:10:20 2011 UTC (12 years, 7 months ago) by adam
Branch: MAIN
Changes since 1.39: +3 -3
lines
Diff to previous 1.39 (colored)
Changes 3.7.6.1: * Fix a bug in 3.7.6 that only appears if the SQLITE_FCNTL_SIZE_HINT file control is used with a build of SQLite that makes use of the HAVE_POSIX_FALLOCATE compile-time option and which has SQLITE_ENABLE_LOCKING_MODE turned off.
Revision 1.39 / (download) - annotate - [select for diffs], Tue Apr 12 19:00:50 2011 UTC (12 years, 7 months ago) by adam
Branch: MAIN
Changes since 1.38: +3 -3
lines
Diff to previous 1.38 (colored)
Changes 3.7.6: * Added the sqlite3_wal_checkpoint_v2() interface and enhanced the wal_checkpoint pragma to support blocking checkpoints. * Improvements to the query planner so that it makes better estimates of plan costs and hence does a better job of choosing the right plan, especially when SQLITE_ENABLE_STAT2 is used. * Fix a bug which prevented deferred foreign key constraints from being enforced when sqlite3_finalize() was not called by one statement with a failed foreign key constraint prior to another statement with foreign key constraints running. * Integer arithmetic operations that would have resulted in overflow are now performed using floating-point instead. * Increased the version number on the VFS object to 3 and added new methods xSetSysCall, xGetSysCall, and xNextSysCall used for doing full-coverage testing. * Increase the maximum value of SQLITE_MAX_ATTACHED from 30 to 62 (though the default value remains at 10). * Enhancements to FTS4: - Added the fts4aux table - Added support for compressed FTS4 content * Enhance the ANALYZE command to support the name of an index as its argument, in order to analyze just that one index. * Added the "unix-excl" built-in VFS on unix and unix-like platforms.
Revision 1.38 / (download) - annotate - [select for diffs], Wed Feb 2 09:03:09 2011 UTC (12 years, 10 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2011Q1-base,
pkgsrc-2011Q1
Changes since 1.37: +3 -3
lines
Diff to previous 1.37 (colored)
Changes 3.7.5: * Added the sqlite3_vsnprintf() interface. * Added the SQLITE_DBSTATUS_LOOKASIDE_HIT, SQLITE_DBSTATUS_LOOKASIDE_MISS_SIZE, and SQLITE_DBSTATUS_LOOKASIDE_MISS_FULL options for the sqlite3_db_status() interface. * Added the SQLITE_OMIT_AUTORESET compile-time option. * Added the SQLITE_DEFAULT_FOREIGN_KEYS compile-time option. * Updates to sqlite3_stmt_readonly() so that its result is well-defined for all prepared statements and so that it works with VACUUM. * Added the "-heap" option to the command-line shell * Fix a bug involving frequent changes in and out of WAL mode and VACUUM that could (in theory) cause database corruption. * Enhance the sqlite3_trace() mechanism so that nested SQL statements such as might be generated by virtual tables are shown but are shown in comments and without parameter expansion. This greatly improves tracing output when using the FTS3/4 and/or RTREE virtual tables. * Change the xFileControl() methods on all built-in VFSes to return SQLITE_NOTFOUND instead of SQLITE_ERROR for an unrecognized operation code. * The SQLite core invokes the SQLITE_FCNTL_SYNC_OMITTED file control to the VFS in place of a call to xSync if the database has PRAGMA synchronous set to OFF.
Revision 1.37 / (download) - annotate - [select for diffs], Fri Dec 17 00:37:34 2010 UTC (12 years, 11 months ago) by agc
Branch: MAIN
CVS Tags: pkgsrc-2010Q4-base,
pkgsrc-2010Q4
Changes since 1.36: +3 -1
lines
Diff to previous 1.36 (colored)
Add two new options for sqlite3, rtree (for multi-dimensional search optimization), and fts (full-text searching). Both options are off by default.
Revision 1.36 / (download) - annotate - [select for diffs], Thu Dec 9 05:32:05 2010 UTC (13 years ago) by adam
Branch: MAIN
Changes since 1.35: +3 -5
lines
Diff to previous 1.35 (colored)
Changes 3.7.4: * Added the sqlite3_blob_reopen() interface to allow an existing sqlite3_blob object to be rebound to a new row. * Use the new sqlite3_blob_reopen() interface to improve the performance of FTS. * VFSes that do not support shared memory are allowed to access WAL databases if PRAGMA locking_mode is set to EXCLUSIVE. * Enhancements to EXPLAIN QUERY PLAN. * Added the sqlite3_stmt_readonly() interface. * Added PRAGMA checkpoint_fullfsync. * Added the SQLITE_FCNTL_FILE_POINTER option to sqlite3_file_control(). * Added support for FTS4 and enhancements to the FTS matchinfo() function. * Added the test_superlock.c module which provides example code for obtaining an exclusive lock to a rollback or WAL database. * Added the test_multiplex.c module which provides an example VFS that provides multiplexing (sharding) of a DB, splitting it over multiple files of fixed size. * A very obscure bug associated with the or optimization was fixed.
Revision 1.35 / (download) - annotate - [select for diffs], Sat Nov 13 21:54:13 2010 UTC (13 years ago) by joerg
Branch: MAIN
Changes since 1.34: +6 -1
lines
Diff to previous 1.34 (colored)
Use pread/pwrite on NetBSD to reduce the number of system calls a lot. Bump revision.
Revision 1.34 / (download) - annotate - [select for diffs], Mon Oct 25 07:44:32 2010 UTC (13 years, 1 month ago) by tnn
Branch: MAIN
Changes since 1.33: +1 -5
lines
Diff to previous 1.33 (colored)
The amalgamation package now ships it's own manpage, so get rid of our local copy. PR pkg/44000.
Revision 1.33 / (download) - annotate - [select for diffs], Mon Oct 18 07:08:22 2010 UTC (13 years, 1 month ago) by adam
Branch: MAIN
Changes since 1.32: +2 -2
lines
Diff to previous 1.32 (colored)
Changes 3.7.3: * Added the sqlite3_create_function_v2() interface that includes a destructor callback. * Added support for custom r-tree queries using application-supplied callback routines to define the boundary of the query region. * The default page cache strives more diligently to avoid using memory beyond what is allocated to it by SQLITE_CONFIG_PAGECACHE. Or if using page cache is allocating from the heap, it strives to avoid going over the sqlite3_soft_heap_limit64(), even if SQLITE_ENABLE_MEMORY_MANAGEMENT is not set. * Added the sqlite3_soft_heap_limit64() interface as a replacement for sqlite3_soft_heap_limit(). * The ANALYZE command now gathers statistics on tables even if they have no indices. * Tweaks to the query planner to help it do a better job of finding the most efficient query plan for each query. * Enhanced the internal text-to-numeric conversion routines so that they work with UTF8 or UTF16, thereby avoiding some UTF16-to-UTF8 text conversions. * Fix a problem that was causing excess memory usage with large WAL transactions in win32 systems. * The interface between the VDBE and B-Tree layer is enhanced such that the VDBE provides hints to the B-Tree layer letting the B-Tree layer know when it is safe to use hashing instead of B-Trees for transient tables. * Miscellaneous documentation enhancements.
Revision 1.32 / (download) - annotate - [select for diffs], Fri Aug 27 09:50:21 2010 UTC (13 years, 3 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2010Q3-base,
pkgsrc-2010Q3
Changes since 1.31: +5 -6
lines
Diff to previous 1.31 (colored)
Changes 3.7.2: * Fix an old and very obscure bug that can lead to corruption of the database free-page list when incremental_vacuum is used. Changes 3.7.1: * Added new commands SQLITE_DBSTATUS_SCHEMA_USED and SQLITE_DBSTATUS_STMT_USED to the sqlite3_db_status() interface, in order to report out the amount of memory used to hold the schema and prepared statements of a connection. * Increase the maximum size of a database pages from 32KiB to 64KiB. * Use the LIKE optimization even if the right-hand side string contains no wildcards. * Added the SQLITE_FCNTL_CHUNK_SIZE verb to the sqlite3_file_control() interface for both unix and windows, to cause database files to grow in large chunks in order to reduce disk fragmentation. * Fixed a bug in the query planner that caused performance regresssions relative to 3.6.23.1 on some complex joins. * Fixed a typo in the OS/2 backend. * Refactored the pager module. * The SQLITE_MAX_PAGE_SIZE compile-time option is now silently ignored. The maximum page size is hard-coded at 65536 bytes.
Revision 1.31 / (download) - annotate - [select for diffs], Sun Aug 8 12:04:37 2010 UTC (13 years, 4 months ago) by adam
Branch: MAIN
Changes since 1.30: +2 -2
lines
Diff to previous 1.30 (colored)
Changes 3.7.0.1: * Fix a potential database corruption problem that can result if the same database file is alternately written by version 3.7.0 and 3.6.23.1. * Fix a possible performance regression caused by the introduction of automatic indexing.
Revision 1.30 / (download) - annotate - [select for diffs], Thu Jul 22 21:07:45 2010 UTC (13 years, 4 months ago) by adam
Branch: MAIN
Changes since 1.29: +2 -3
lines
Diff to previous 1.29 (colored)
Changes 3.7.0: * Added support for write-ahead logging. * Query planner enhancement - automatic transient indices are created when doing so reduces the estimated query time. * Query planner enhancement - the ORDER BY becomes a no-op if the query also contains a GROUP BY clause that forces the correct output order. * Add the SQLITE_DBSTATUS_CACHE_USED verb for sqlite3_db_status(). * The logical database size is now stored in the database header so that bytes can be appended to the end of the database file without corrupting it and so that SQLite will work correctly on systems that lack support for ftruncate().
Revision 1.29 / (download) - annotate - [select for diffs], Mon Jul 12 10:54:55 2010 UTC (13 years, 4 months ago) by tnn
Branch: MAIN
Changes since 1.28: +6 -1
lines
Diff to previous 1.28 (colored)
Include the sqlite3_unlock_notify() API in the build. Bump PKGREVISON.
Revision 1.28 / (download) - annotate - [select for diffs], Thu Jun 17 13:45:36 2010 UTC (13 years, 5 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2010Q2-base,
pkgsrc-2010Q2
Changes since 1.27: +8 -1
lines
Diff to previous 1.27 (colored)
Add workaround of build failure on MacOS X 10.4, lack of gethostuuid(2). PR#43429
Revision 1.27 / (download) - annotate - [select for diffs], Thu Apr 1 12:01:53 2010 UTC (13 years, 8 months ago) by tnn
Branch: MAIN
CVS Tags: pkgsrc-2010Q1-base,
pkgsrc-2010Q1
Changes since 1.26: +2 -2
lines
Diff to previous 1.26 (colored)
Update to sqlite3-3.6.23.1. This is a patch release that fixes a FTS3 regression in 3.6.23. ok wiz@
Revision 1.26 / (download) - annotate - [select for diffs], Fri Mar 12 09:11:27 2010 UTC (13 years, 8 months ago) by adam
Branch: MAIN
Changes since 1.25: +2 -2
lines
Diff to previous 1.25 (colored)
Changes 3.6.23: * Added the secure_delete pragma * Added the sqlite3_compileoption_used() and sqlite3_compileoption_get() interfaces as well as the compile_options pragma and the sqlite_compileoption_used() and sqlite_compileoption_get() SQL functions. * Added the sqlite3_log() interface together with the SQLITE_CONFIG_LOG verb to sqlite3_config(). The ".log" command is added to the Command Line Interface * Improvements to FTS3 * Improvements and bug-fixes in support for SQLITE_OMIT_FLOATING_POINT * The integrity_check pragma is enhanced to detect out-of-order rowids * The ".genfkey" operator has been removed from the Command Line Interface * Updates to the co-hosted Lemon LALR(1) parser generator. (These updates did not affect SQLite.) * Various minor bug fixes and performance enhancements
Revision 1.25 / (download) - annotate - [select for diffs], Mon Jan 18 08:51:09 2010 UTC (13 years, 10 months ago) by adam
Branch: MAIN
Changes since 1.24: +2 -3
lines
Diff to previous 1.24 (colored)
Changes 3.6.22: * Fix bugs that can (rarely) lead to incorrect query results when the CAST or OR operators are used in the WHERE clause of a query. * Continuing enhancements and improvements to FTS3. * Other miscellanous bug fixes.
Revision 1.24 / (download) - annotate - [select for diffs], Mon Jan 11 09:18:39 2010 UTC (13 years, 10 months ago) by abs
Branch: MAIN
CVS Tags: pkgsrc-2009Q4-base,
pkgsrc-2009Q4
Changes since 1.23: +3 -2
lines
Diff to previous 1.23 (colored)
Match 3.6.20 behaviour & build threadsafe. Fix PR/42515 & issues with firefox. Bump PKGREVISION
Revision 1.23 / (download) - annotate - [select for diffs], Wed Dec 16 19:25:38 2009 UTC (13 years, 11 months ago) by drochner
Branch: MAIN
Changes since 1.22: +2 -3
lines
Diff to previous 1.22 (colored)
update to 3.6.21 changes: -SQL output resulting from sqlite3_trace() is now modified to include the values of bound parameters -Performance optimizations targetting a specific use case from a single high-profile user -FTS3 extension has undergone a major rework and cleanup -fixed the SQLITE_SECURE_DELETE compile-time option -Improvements to "dot-command" handling in the Command Line Interface -Other minor bug fixes and documentation enhancements
Revision 1.22 / (download) - annotate - [select for diffs], Sat Nov 21 16:58:05 2009 UTC (14 years ago) by tnn
Branch: MAIN
Changes since 1.21: +19 -5
lines
Diff to previous 1.21 (colored)
Switch to amalgamation style sqlite3 build. This is the recommended way to build sqlite3 according to upstream. It should give a small performance increase due to static inlining, but more importantly lets us avoid manual maintenance of sqlite3.h. Bump revisions for sqlite3 and sqlite3-tcl.
Revision 1.21 / (download) - annotate - [select for diffs], Fri Nov 13 18:28:42 2009 UTC (14 years ago) by adam
Branch: MAIN
Changes since 1.20: +1 -2
lines
Diff to previous 1.20 (colored)
Changes 3.6.20: * Optimizer enhancement: prepared statements are automatically re-compiled when a binding on the RHS of a LIKE operator changes or when any range constraint changes under SQLITE_ENABLE_STAT2. * Various minor bug fixes and documentation enhancements.
Revision 1.20 / (download) - annotate - [select for diffs], Wed Oct 28 16:46:51 2009 UTC (14 years, 1 month ago) by tnn
Branch: MAIN
Changes since 1.19: +2 -1
lines
Diff to previous 1.19 (colored)
patch-ab: regen Makefile: bump Makefile.common: document why this needs to be done
Revision 1.19 / (download) - annotate - [select for diffs], Thu May 21 11:44:42 2009 UTC (14 years, 6 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2009Q3-base,
pkgsrc-2009Q3,
pkgsrc-2009Q2-base,
pkgsrc-2009Q2
Changes since 1.18: +1 -3
lines
Diff to previous 1.18 (colored)
Changes 3.6.14.1: * Fix a bug in group_concat(). * Fix a performance bug in the pager cache. * Fix a bug in the sqlite3_backup implementation that can lead to a corrupt backup database.
Revision 1.18 / (download) - annotate - [select for diffs], Wed May 20 00:58:11 2009 UTC (14 years, 6 months ago) by wiz
Branch: MAIN
Changes since 1.17: +3 -1
lines
Diff to previous 1.17 (colored)
Recursive ABI depends update and PKGREVISION bump for readline-6.0 shlib major change. Reported by Robert Elz in PR 41345.
Revision 1.17 / (download) - annotate - [select for diffs], Sat Feb 21 19:39:43 2009 UTC (14 years, 9 months ago) by tnn
Branch: MAIN
CVS Tags: pkgsrc-2009Q1-base,
pkgsrc-2009Q1
Changes since 1.16: +2 -1
lines
Diff to previous 1.16 (colored)
patch from upstream: sqlite3 fails to build when tcl is not installed. Also set ac_cv_prog_TCLSH_CMD="" so the configure script won't find tcl.
Revision 1.16 / (download) - annotate - [select for diffs], Wed Dec 31 20:37:09 2008 UTC (14 years, 11 months ago) by epg
Branch: MAIN
CVS Tags: pkgsrc-2008Q4-base,
pkgsrc-2008Q4
Changes since 1.15: +6 -1
lines
Diff to previous 1.15 (colored)
Force -ldl on Linux, as this uses dlopen and friends. Also filed bug report: http://www.sqlite.org/cvstrac/tktview?tn=3555
Revision 1.15 / (download) - annotate - [select for diffs], Mon Dec 15 09:06:11 2008 UTC (14 years, 11 months ago) by martin
Branch: MAIN
Changes since 1.14: +1 -3
lines
Diff to previous 1.14 (colored)
backout previous - the tests need tcl and the proper test target already is provided by sqlite3-tcl
Revision 1.14 / (download) - annotate - [select for diffs], Mon Dec 15 09:03:26 2008 UTC (14 years, 11 months ago) by martin
Branch: MAIN
Changes since 1.13: +3 -1
lines
Diff to previous 1.13 (colored)
add the test target
Revision 1.13 / (download) - annotate - [select for diffs], Mon Oct 6 08:00:49 2008 UTC (15 years, 2 months ago) by adam
Branch: MAIN
Changes since 1.12: +1 -3
lines
Diff to previous 1.12 (colored)
Changes 3.6.3: * Fix for a bug in SELECT DISTINCT logic that was introduced by the prior version. * Other minor bug fixes.
Revision 1.12 / (download) - annotate - [select for diffs], Thu Oct 2 11:15:17 2008 UTC (15 years, 2 months ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2008Q3-base,
pkgsrc-2008Q3
Changes since 1.11: +2 -1
lines
Diff to previous 1.11 (colored)
Suppress detection of readline.h. Configure failed to detect pkgsrc readline.h and disabled.
Revision 1.11 / (download) - annotate - [select for diffs], Mon Sep 22 08:34:08 2008 UTC (15 years, 2 months ago) by obache
Branch: MAIN
Changes since 1.10: +4 -1
lines
Diff to previous 1.10 (colored)
py-sqlite2 does not require disable-threadsafe but expect to exist load-extension these days. OKed by wiz to commit. Bump PKGREVISION.
Revision 1.10 / (download) - annotate - [select for diffs], Thu Nov 15 10:39:18 2007 UTC (16 years ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2008Q2-base,
pkgsrc-2008Q2,
pkgsrc-2008Q1-base,
pkgsrc-2008Q1,
pkgsrc-2007Q4-base,
pkgsrc-2007Q4,
cwrapper,
cube-native-xorg-base,
cube-native-xorg
Changes since 1.9: +2 -2
lines
Diff to previous 1.9 (colored)
Updated sqlite to 3.5.2. The main reason to update was that on Solaris, the file lemon.c uses the same identifiers (B_TRUE, B_FALSE) as the <sys/types.h> header, and therefore fails to build. Changes since 3.4.2: 2007 Nov 05 (3.5.2) * Dropped support for the SQLITE_OMIT_MEMORY_ALLOCATION compile-time option. * Always open files using FILE_FLAG_RANDOM_ACCESS under windows. * The 3rd parameter of the built-in SUBSTR() function is now optional. * Bug fix: do not invoke the authorizer when reparsing the schema after a schema change. * Added the experimental malloc-free memory allocator in mem3.c. * Virtual machine stores 64-bit integer and floating point constants in binary instead of text for a performance boost. * Fix a race condition in test_async.c. * Added the ".timer" command to the CLI 2007 Oct 04 (3.5.1) * Nota Bene: We are not using terms "alpha" or "beta" on this release because the code is stable and because if we use those terms, nobody will upgrade. However, we still reserve the right to make incompatible changes to the new VFS interface in future releases. * Fix a bug in the handling of SQLITE_FULL errors that could lead to database corruption. [11]Ticket #2686. * The test_async.c drive now does full file locking and works correctly when used simultaneously by multiple processes on the same database. * The CLI ignores whitespace (including comments) at the end of lines * Make sure the query optimizer checks dependences on all terms of a compound SELECT statement. [12]Ticket #2640. * Add demonstration code showing how to build a VFS for a raw mass storage without a filesystem. * Added an output buffer size parameter to the xGetTempname() method of the VFS layer. * Sticky SQLITE_FULL or SQLITE_IOERR errors in the pager are reset when a new transaction is started. 2007 Sep 04 (3.5.0) alpha * Redesign the OS interface layer. See [13]34to35.html for details. *** Potentially incompatible change *** * The [14]sqlite3_release_memory(), [15]sqlite3_soft_heap_limit(), and [16]sqlite3_enable_shared_cache() interfaces now work cross all threads in the process, not just the single thread in which they are invoked. *** Potentially incompatible change *** * Added the [17]sqlite3_open_v2() interface. * Reimplemented the memory allocation subsystem and made it replacable at compile-time. * Created a new mutex subsystem and made it replacable at compile-time. * The same database connection may now be used simultaneously by separate threads.
Revision 1.9 / (download) - annotate - [select for diffs], Sun May 20 00:17:01 2007 UTC (16 years, 6 months ago) by heinz
Branch: MAIN
CVS Tags: pkgsrc-2007Q3-base,
pkgsrc-2007Q3,
pkgsrc-2007Q2-base,
pkgsrc-2007Q2
Changes since 1.8: +6 -2
lines
Diff to previous 1.8 (colored)
Added support for installation to DESTDIR.
Revision 1.8 / (download) - annotate - [select for diffs], Tue Aug 29 10:06:19 2006 UTC (17 years, 3 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2007Q1-base,
pkgsrc-2007Q1,
pkgsrc-2006Q4-base,
pkgsrc-2006Q4,
pkgsrc-2006Q3-base,
pkgsrc-2006Q3
Changes since 1.7: +2 -2
lines
Diff to previous 1.7 (colored)
Fixed path to the install manual page.
Revision 1.7 / (download) - annotate - [select for diffs], Wed Feb 15 19:50:52 2006 UTC (17 years, 9 months ago) by drochner
Branch: MAIN
CVS Tags: pkgsrc-2006Q2-base,
pkgsrc-2006Q2,
pkgsrc-2006Q1-base,
pkgsrc-2006Q1
Changes since 1.6: +1 -3
lines
Diff to previous 1.6 (colored)
update to 3.3.4 changes: adds support for CHECK constraints, DESC indices, separate REAL and INTEGER column affinities, a new OS interface layer design, and many other changes pkgsrc note: a selftest fails on NetBSD/i386: a loss of precision is not detected in the sum() function. Reason is that the code assumes that a "long double" keeps more significant bits than a "long long int" which is not true here. This is not a regression to 3.2.x which did just wrap on int overflows.
Revision 1.6 / (download) - annotate - [select for diffs], Sun Feb 5 23:08:37 2006 UTC (17 years, 10 months ago) by joerg
Branch: MAIN
Changes since 1.5: +3 -1
lines
Diff to previous 1.5 (colored)
Recursive revision bump / recommended bump for gettext ABI change.
Revision 1.5 / (download) - annotate - [select for diffs], Thu Apr 14 05:45:51 2005 UTC (18 years, 7 months ago) by xtraeme
Branch: MAIN
CVS Tags: pkgsrc-2005Q4-base,
pkgsrc-2005Q4,
pkgsrc-2005Q3-base,
pkgsrc-2005Q3,
pkgsrc-2005Q2-base,
pkgsrc-2005Q2
Changes since 1.4: +1 -3
lines
Diff to previous 1.4 (colored)
Update to 3.2.1 2005 March 29 (3.2.1) * Fix a memory allocation error in the new ADD COLUMN comment. * Documentation updates 2005 March 21 (3.2.0) * Added support for ALTER TABLE ADD COLUMN. * Added support for the "T" separator in ISO-8601 date/time strings. * Improved support for Cygwin. * Numerous bug fixes and documentation updates. 2005 March 16 (3.1.6) * Fix a bug that could cause database corruption when inserting record into tables with around 125 columns. * sqlite3_step() is now much more likely to invoke the busy handler and less likely to return SQLITE_BUSY. * Fix memory leaks that used to occur after a malloc() failure. 2005 March 11 (3.1.5) * The ioctl on OS-X to control syncing to disk is F_FULLFSYNC, not F_FULLSYNC. The previous release had it wrong. 2005 March 10 (3.1.4) * Fix a bug in autovacuum that could cause database corruption if a CREATE UNIQUE INDEX fails because of a constraint violation. This problem only occurs if the new autovacuum feature introduced in version 3.1 is turned on. * The F_FULLSYNC ioctl (currently only supported on OS-X) is disabled if the synchronous pragma is set to something other than "full". * Add additional forward compatibility to the future version 3.2 database file format. * Fix a bug in WHERE clauses of the form (rowid<'2') * New SQLITE_OMIT_... compile-time options added * Updates to the man page * Remove the use of strcasecmp() from the shell * Windows DLL exports symbols Tclsqlite_Init and Sqlite_Init
Revision 1.4 / (download) - annotate - [select for diffs], Wed Mar 23 22:08:06 2005 UTC (18 years, 8 months ago) by jmmv
Branch: MAIN
Changes since 1.3: +4 -17
lines
Diff to previous 1.3 (colored)
Remove the 'tcl' option and split the Makefile in two parts to aid in the addition of the new sqlite3-tcl package. The TCL bindings can be easily built and installed independently, so it's better to have an standalone package rather than a build-time option. While here, fix PKGCONFIG_OVERRIDE and bump PKGREVISION to 2.
Revision 1.3 / (download) - annotate - [select for diffs], Mon Mar 7 14:59:06 2005 UTC (18 years, 9 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2005Q1-base,
pkgsrc-2005Q1
Changes since 1.2: +13 -13
lines
Diff to previous 1.2 (colored)
Added an option to build the package with tcl support
Revision 1.2 / (download) - annotate - [select for diffs], Thu Feb 24 16:02:28 2005 UTC (18 years, 9 months ago) by wiz
Branch: MAIN
Changes since 1.1: +4 -5
lines
Diff to previous 1.1 (colored)
Update to 3.1.3: 2005 February 19 (3.1.3) * Fix a problem with VACUUM on databases from which tables containing AUTOINCREMENT have been dropped. * Add forward compatibility to the future version 3.2 database file format. * Documentation updates 2005 February 15 (3.1.2) * Fix a bug that can lead to database corruption if there are two open connections to the same database and one connection does a VACUUM and the second makes some change to the database. * Allow "?" parameters in the LIMIT clause. * Fix VACUUM so that it works with AUTOINCREMENT. * Fix a race condition in AUTOVACUUM that can lead to corrupt databases * Add a numeric version number to the sqlite3.h include file. * Other minor bug fixes and performance enhancements. 2005 February 1 (3.1.1 BETA) * Automatic caching of prepared statements in the TCL interface * ATTACH and DETACH as well as some other operations cause existing prepared statements to expire. * Numerious minor bug fixes 2005 January 21 (3.1.0 ALPHA) * Autovacuum support added * CURRENT_TIME, CURRENT_DATE, and CURRENT_TIMESTAMP added * Support for the EXISTS clause added. * Support for correlated subqueries added. * Added the ESCAPE clause on the LIKE operator. * Support for ALTER TABLE ... RENAME TABLE ... added * AUTOINCREMENT keyword supported on INTEGER PRIMARY KEY * Many SQLITE_OMIT_ macros inserts to omit features at compile-time and reduce the library footprint. * The REINDEX command was added. * The engine no longer consults the main table if it can get all the information it needs from an index. * Many nuisance bugs fixed.
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sun Jan 16 02:00:33 2005 UTC (18 years, 10 months ago) by tv
Branch: TNF
CVS Tags: pkgsrc-base
Changes since 1.1: +0 -0
lines
Diff to previous 1.1 (colored)
Import sqlite3-3.0.8, the next major release of sqlite. Resides in parallel with sqlite version 2 (everything in this package ends in `3'). DESCR: SQLite is a C library that implements an SQL database engine. Programs that link with the SQLite library can have SQL database access without running a separate RDBMS process. The distribution comes with a standalone command-line access program (sqlite) that can be used to administer an SQLite database and which serves as an example of how to use the SQLite library. SQLite is not a client library used to connect to a big database server. SQLite is the server. The SQLite library reads and writes directly to and from the database files on disk.
Revision 1.1 / (download) - annotate - [select for diffs], Sun Jan 16 02:00:33 2005 UTC (18 years, 10 months ago) by tv
Branch: MAIN
Initial revision