diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:28:19 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 17:28:19 +0000 |
commit | 18657a960e125336f704ea058e25c27bd3900dcb (patch) | |
tree | 17b438b680ed45a996d7b59951e6aa34023783f2 /www/releaselog/3_13_0.html | |
parent | Initial commit. (diff) | |
download | sqlite3-18657a960e125336f704ea058e25c27bd3900dcb.tar.xz sqlite3-18657a960e125336f704ea058e25c27bd3900dcb.zip |
Adding upstream version 3.40.1.upstream/3.40.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'www/releaselog/3_13_0.html')
-rw-r--r-- | www/releaselog/3_13_0.html | 191 |
1 files changed, 191 insertions, 0 deletions
diff --git a/www/releaselog/3_13_0.html b/www/releaselog/3_13_0.html new file mode 100644 index 0000000..62b09fb --- /dev/null +++ b/www/releaselog/3_13_0.html @@ -0,0 +1,191 @@ +<!DOCTYPE html> +<html><head> +<meta name="viewport" content="width=device-width, initial-scale=1.0"> +<meta http-equiv="content-type" content="text/html; charset=UTF-8"> +<link href="../sqlite.css" rel="stylesheet"> +<title>SQLite Release 3.13.0 On 2016-05-18</title> +<!-- path=../ --> +</head> +<body> +<div class=nosearch> +<a href="../index.html"> +<img class="logo" src="../images/sqlite370_banner.gif" alt="SQLite" border="0"> +</a> +<div><!-- IE hack to prevent disappearing logo --></div> +<div class="tagline desktoponly"> +Small. Fast. Reliable.<br>Choose any three. +</div> +<div class="menu mainmenu"> +<ul> +<li><a href="../index.html">Home</a> +<li class='mobileonly'><a href="javascript:void(0)" onclick='toggle_div("submenu")'>Menu</a> +<li class='wideonly'><a href='../about.html'>About</a> +<li class='desktoponly'><a href="../docs.html">Documentation</a> +<li class='desktoponly'><a href="../download.html">Download</a> +<li class='wideonly'><a href='../copyright.html'>License</a> +<li class='desktoponly'><a href="../support.html">Support</a> +<li class='desktoponly'><a href="../prosupport.html">Purchase</a> +<li class='search' id='search_menubutton'> +<a href="javascript:void(0)" onclick='toggle_search()'>Search</a> +</ul> +</div> +<div class="menu submenu" id="submenu"> +<ul> +<li><a href='../about.html'>About</a> +<li><a href='../docs.html'>Documentation</a> +<li><a href='../download.html'>Download</a> +<li><a href='../support.html'>Support</a> +<li><a href='../prosupport.html'>Purchase</a> +</ul> +</div> +<div class="searchmenu" id="searchmenu"> +<form method="GET" action="../search"> +<select name="s" id="searchtype"> +<option value="d">Search Documentation</option> +<option value="c">Search Changelog</option> +</select> +<input type="text" name="q" id="searchbox" value=""> +<input type="submit" value="Go"> +</form> +</div> +</div> +<script> +function toggle_div(nm) { +var w = document.getElementById(nm); +if( w.style.display=="block" ){ +w.style.display = "none"; +}else{ +w.style.display = "block"; +} +} +function toggle_search() { +var w = document.getElementById("searchmenu"); +if( w.style.display=="block" ){ +w.style.display = "none"; +} else { +w.style.display = "block"; +setTimeout(function(){ +document.getElementById("searchbox").focus() +}, 30); +} +} +function div_off(nm){document.getElementById(nm).style.display="none";} +window.onbeforeunload = function(e){div_off("submenu");} +/* Disable the Search feature if we are not operating from CGI, since */ +/* Search is accomplished using CGI and will not work without it. */ +if( !location.origin || !location.origin.match || !location.origin.match(/http/) ){ +document.getElementById("search_menubutton").style.display = "none"; +} +/* Used by the Hide/Show button beside syntax diagrams, to toggle the */ +function hideorshow(btn,obj){ +var x = document.getElementById(obj); +var b = document.getElementById(btn); +if( x.style.display!='none' ){ +x.style.display = 'none'; +b.innerHTML='show'; +}else{ +x.style.display = ''; +b.innerHTML='hide'; +} +return false; +} +var antiRobot = 0; +function antiRobotGo(){ +if( antiRobot!=3 ) return; +antiRobot = 7; +var j = document.getElementById("mtimelink"); +if(j && j.hasAttribute("data-href")) j.href=j.getAttribute("data-href"); +} +function antiRobotDefense(){ +document.body.onmousedown=function(){ +antiRobot |= 2; +antiRobotGo(); +document.body.onmousedown=null; +} +document.body.onmousemove=function(){ +antiRobot |= 2; +antiRobotGo(); +document.body.onmousemove=null; +} +setTimeout(function(){ +antiRobot |= 1; +antiRobotGo(); +}, 100) +antiRobotGo(); +} +antiRobotDefense(); +</script> +<h2>SQLite Release 3.13.0 On 2016-05-18</h2><p><ol class='lessindent'> +<li>Postpone I/O associated with TEMP files for as long as possible, with the hope + that the I/O can ultimately be avoided completely. +<li>Merged the <a href="../sessionintro.html">session</a> extension into trunk. +<li>Added the ".auth ON|OFF" command to the <a href="../cli.html">command-line shell</a>. +<li>Added the "--indent" option to the ".schema" and ".fullschema" commands of + the <a href="../cli.html">command-line shell</a>, to turn on pretty-printing. +<li>Added the ".eqp full" option to the <a href="../cli.html">command-line shell</a>, that does both <a href="../lang_explain.html">EXPLAIN</a> + and <a href="../eqp.html">EXPLAIN QUERY PLAN</a> on each statement that is evaluated. +<li>Improved unicode filename handling in the <a href="../cli.html">command-line shell</a> on Windows. +<li>Improved resistance against goofy query planner decisions caused by + incomplete or incorrect modifications to the <a href="../fileformat2.html#stat1tab">sqlite_stat1</a> + table by the application. +<li>Added the <a href="../c3ref/db_config.html">sqlite3_db_config</a>(db,<a href="../c3ref/c_dbconfig_defensive.html#sqlitedbconfigenableloadextension">SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION</a>) interface + which allows the <a href="../c3ref/load_extension.html">sqlite3_load_extension()</a> C-API to be enabled while keeping the + <a href="../lang_corefunc.html#load_extension">load_extension()</a> SQL function disabled for security. +<li>Change the <a href="../tempfiles.html#tempdir">temporary directory search algorithm</a> on Unix to allow directories with + write and execute permission, but without read permission, to serve as temporary + directories. Apply this same standard to the "." fallback directory. +<p><b>Bug Fixes:</b> +<li>Fix a problem with the multi-row one-pass DELETE optimization that was + causing it to compute incorrect answers with a self-referential subquery in + the WHERE clause. Fix for ticket + <a href="https://www.sqlite.org/src/info/dc6ebeda9396087">dc6ebeda9396087</a> +<li>Fix a possible segfault with DELETE when table is a <a href="../rowidtable.html">rowid table</a> with an + <a href="../lang_createtable.html#rowid">INTEGER PRIMARY KEY</a> and the WHERE clause contains a OR and + the table has one or more indexes that are able to trigger the OR optimization, + but none of the indexes reference any table columns other than the INTEGER PRIMARY KEY. + Ticket <a href="https://www.sqlite.org/src/info/16c9801ceba49">16c9801ceba49</a>. +<li>When checking for the WHERE-clause push-down optimization, verify that all terms + of the compound inner SELECT are non-aggregate, not just the last term. Fix for ticket + <a href="https://www.sqlite.org/src/info/f7f8c97e97597">f7f8c97e97597</a>. +<li>Fix a locking race condition in Windows that can occur when two or more processes + attempt to recover the same <a href="../fileformat2.html#hotjrnl">hot journal</a> at the same time. +<p><b>Hashes:</b> +<li>SQLITE_SOURCE_ID: "2016-05-18 10:57:30 fc49f556e48970561d7ab6a2f24fdd7d9eb81ff2" +<li>SHA1 for sqlite3.c: 9b9171b1e6ce7a980e6b714e9c0d9112657ad552 + +<p><b>Bug fixes backported into patch release 3.12.2 (2016-04-18):</b></p> + +<li>Fix a backwards compatibility problem in version 3.12.0 and 3.12.1: + Columns declared as <tt>"INTEGER" PRIMARY KEY</tt> (with quotes around + the datatype keyword) were not being recognized as an + <a href="../lang_createtable.html#rowid">INTEGER PRIMARY KEY</a>, which resulted in an incompatible database file. + Ticket <a href="https://www.sqlite.org/src/info/7d7525cb01b68">7d7525cb01b68</a> +<li>Fix a bug (present since <a href="../releaselog/3_9_0.html">version 3.9.0</a>) that can cause the <a href="../lang_delete.html">DELETE</a> + operation to miss rows if <a href="../pragma.html#pragma_reverse_unordered_selects">PRAGMA reverse_unordered_selects</a> is turned on. + Ticket <a href="https://www.sqlite.org/src/info/a306e56ff68b8fa5">a306e56ff68b8fa5</a> +<li>Fix a bug in the code generator that can cause incorrect results if + two or more <a href="../vtab.html">virtual tables</a> are joined and the virtual table used in + outer loop of the join has an <a href="../lang_expr.html#in_op">IN operator</a> constraint. +<li>Correctly interpret negative "PRAGMA cache_size" values when determining + the cache size used for sorting large amounts of data. + +<p><b>Bug fixes backported into patch release 3.12.1 (2016-04-08):</b></p> + +<li>Fix a boundary condition error introduced by version 3.12.0 + that can result in a crash during heavy <a href="../lang_savepoint.html">SAVEPOINT</a> usage. + Ticket <a href="https://www.sqlite.org/src/info/7f7f8026eda38">7f7f8026eda38</a>. +<li>Fix <a href="../lang_createview.html">views</a> so that they inherit column datatypes from the + table that they are defined against, when possible. +<li>Fix the query planner so that IS and IS NULL operators are able + to drive an index on a LEFT OUTER JOIN. + +</ol></p> + + <p>A <a href="../changes.html">complete list of SQLite releases</a> + in a single page and a <a href="../chronology.html">chronology</a> are both also available. + A detailed history of every + check-in is available at + <a href="http://www.sqlite.org/src/timeline"> + SQLite version control site</a>.</p> + + |