Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
History for src/parse.y
2025-03-03
| ||
15:53 | [4829520938] part of check-in [051a6b159e] Merge all the latest trunk enhancements into the begin-concurrent branch. (check-in: [051a6b159e] user: drh branch: begin-concurrent, size: 73988) | |
2025-02-27
| ||
21:17 | [e426d73233] part of check-in [f50c21484d] Approximately 100 typo corrections spanning the whole tree, submitted via forum post 0db9827f0464bc33 and individually audited and verified. Affects only code comments, innocuous test strings, error message text in tool (not library) code, and configure-level help text. (check-in: [f50c21484d] user: stephan branch: trunk, size: 73714) | |
2025-02-25
| ||
20:55 | [0c044c98d9] part of check-in [af928818a0] Approximately 50 typo fixes, spanning the whole tree, contributed via forum post 006c8fa165083ac3 and individually checked for correctness. Affects only code comments, docs, and a single line of debug output in a test app. (check-in: [af928818a0] user: stephan branch: trunk, size: 73713) | |
2025-02-21
| ||
17:03 | [4e62b0b301] part of check-in [d7729dbbf2] Detect when a UNIQUE or PRIMARY KEY on a WITHOUT ROWID table would need to use more than SQLITE_LIMIT_COLUMN columns and raise an error. Also include some unrelated compiler warning fixes. (check-in: [d7729dbbf2] user: drh branch: trunk, size: 73712) | |
2025-02-18
| ||
14:37 | [0248f02501] part of check-in [3c87a6d195] Merge all the latest trunk enhancements into the begin-concurrent branch. (check-in: [3c87a6d195] user: drh branch: begin-concurrent, size: 73976) | |
2025-02-15
| ||
20:31 | [8febc26b44] part of check-in [a3d831378d] An alternative implementation of the default-in-values feature that is cleaner (it avoids dodgy poking about in the parser LALR stack looking for errors) and has less performance impact in the common case where DEFAULT is not used. (check-in: [a3d831378d] user: drh branch: default-in-values-2, size: 73879) | |
2025-02-13
| ||
19:19 | [3da35b1c66] part of check-in [f49ddd80b1] Remove an unnecessary branch. Improvements to error messages. (check-in: [f49ddd80b1] user: drh branch: default-in-values, size: 76040) | |
2025-02-12
| ||
20:54 | [d13928e736] part of check-in [85c108eb0f] An attempt to allow the DEFAULT keyword in the VALUES clause of an INSERT. This check-in does not work right. (check-in: [85c108eb0f] user: drh branch: default-in-values, size: 75971) | |
18:22 | [c3db7ead52] part of check-in [480d7c1a1a] Merge the latest trunk changes into the default-in-values branch. (check-in: [480d7c1a1a] user: drh branch: default-in-values, size: 75907) | |
2025-02-07
| ||
15:49 | [f84673f145] part of check-in [45e462c006] Further reduction in the amount of memset() needed to initialize the Parse object. (check-in: [45e462c006] user: drh branch: trunk, size: 73702) | |
2025-02-06
| ||
21:14 | [537ea5f488] part of check-in [2ff4129ea0] This is an experimental change to investigate the feasibility of allow DEFAULT tokens within VALUES clauses attached to INSERT statements. There is a lot of extra code space consumed for such an obscure feature. (check-in: [2ff4129ea0] user: drh branch: default-in-values, size: 75463) | |
2025-02-03
| ||
14:59 | [6382e8e5e5] part of check-in [f456a72e0c] Merge all the latest trunk enhancements and fixes into the begin-concurrent branch. (check-in: [f456a72e0c] user: drh branch: begin-concurrent, size: 73532) | |
2025-01-31
| ||
01:34 | [5dce477d23] part of check-in [393749a2e2] Add the SQLITE_DBCONFIG_ENABLE_COMMENTS setting (default on) to enable or disable the ability to include comments in SQL input text. (check-in: [393749a2e2] user: drh branch: extra-security, size: 73258) | |
2024-11-20
| ||
20:24 | [2b2b7a96e4] part of check-in [34cb6029cc] Merge the latest trunk fixes and makefile enhancements into the commit-and-continue branch. (check-in: [34cb6029cc] user: drh branch: commit-and-continue, size: 73743) | |
2024-11-18
| ||
16:52 | [5e6958ec69] part of check-in [b92c9a66ba] Realign the begin-concurrent branch with trunk. (check-in: [b92c9a66ba] user: drh branch: begin-concurrent, size: 73496) | |
16:44 | [dcf45a81b6] part of check-in [f783d90187] Attempt to reduce divergence with begin-concurrent. (check-in: [f783d90187] user: drh branch: trunk, size: 73222) | |
11:49 | [dde5760494] part of check-in [a2b784cb87] The COMMIT AND CONTINUE TRANSACTION syntax is disabled by default. Enable it using the SQLITE_DBCONFIG_CONTINUE_TRANSACTION configuration option. (check-in: [a2b784cb87] user: drh branch: commit-and-continue, size: 73786) | |
2024-11-16
| ||
18:37 | [8e86f09a67] part of check-in [17360660bb] Clean up the implementation now that it only has to deal with the much simplier concept of COMMIT AND CONTINUE TRANSACTION. (check-in: [17360660bb] user: drh branch: commit-and-continue, size: 73578) | |
14:40 | [f0e72511b1] part of check-in [61797109a2] Simplify the new syntax to be just "COMMIT AND CONTINUE TRANSACTION". (check-in: [61797109a2] user: drh branch: commit-and-continue, size: 73574) | |
2024-11-14
| ||
12:03 | [61033fb5fa] part of check-in [ddac597321] Early prototype code for COMMIT AND BEGIN. Does not currently work. (check-in: [ddac597321] user: drh branch: commit-and-continue, size: 73422) | |
2024-11-11
| ||
17:03 | [091a23e828] part of check-in [52bd7953f1] Update this branch with latest changes and build system updates from trunk. (check-in: [52bd7953f1] user: dan branch: begin-concurrent, size: 73523) | |
2024-11-04
| ||
19:08 | [8ec56598aa] part of check-in [af7173a10e] Ensure that the database encoding is detected before the code generator gets too far down into byte-code generation and execution, but not so early that it interferes with initialization. Forum thread bc75a4d20b756044. (check-in: [af7173a10e] user: drh branch: trunk, size: 73125) | |
2024-10-05
| ||
22:28 | [66f160f94a] part of check-in [aafab58453] Fix minor problem with error recovery after OOM in the parser. (check-in: [aafab58453] user: drh branch: lateral-join, size: 74156) | |
15:51 | [23a12d93e2] part of check-in [a92bb48a48] Merge latest trunk changes into this branch. (check-in: [a92bb48a48] user: dan branch: lateral-join, size: 74126) | |
2024-09-04
| ||
16:54 | [8388b36e6c] part of check-in [cf8f155280] Update the bedrock branch to include all of the latest trunk enhancements. (check-in: [cf8f155280] user: drh branch: bedrock, size: 73414) | |
2024-09-02
| ||
11:17 | [a7a8d42eef] part of check-in [e1bca168e7] Improved error messages on percentile functions. More tests cases for percentile and for ordered-set aggregates. (check-in: [e1bca168e7] user: drh branch: ordered-set-agg, size: 73016) | |
09:40 | [c168522b49] part of check-in [3b1cdddf83] Change the name of the enabling compile-time macro to SQLITE_ENABLE_ORDERED_SET_AGGREGATES. (check-in: [3b1cdddf83] user: drh branch: ordered-set-agg, size: 73022) | |
2024-09-01
| ||
23:56 | [5a15f76ee1] part of check-in [8b91b74931] More internal documentation improvements. (check-in: [8b91b74931] user: drh branch: ordered-set-agg, size: 72992) | |
23:27 | [228eaa370f] part of check-in [c9367e2532] The WITHIN GROUP (ORDER BY ...) syntax is now a compile-time option: SQLITE_ENABLE_ORDERED_SET_FUNCS. There is no increment in the code size if the option is omitted. (check-in: [c9367e2532] user: drh branch: ordered-set-agg, size: 72274) | |
19:19 | [ee8ed7b79a] part of check-in [e070c16d21] No prepare-time penality for ordered-set aggregates for applications that do not use them. (check-in: [e070c16d21] user: drh branch: ordered-set-agg, size: 72015) | |
2024-08-31
| ||
22:22 | [93b0f932db] part of check-in [317d901429] Add error checking: Do not allow functions other than those in the percentile extension to use the ordered-set aggregate notation. (check-in: [317d901429] user: drh branch: ordered-set-agg, size: 71560) | |
20:09 | [32969201e8] part of check-in [ef97778900] Demonstration of how ordered-set aggregates might be parsed and integrated into the existing parse tree, should we decide to support them. (check-in: [ef97778900] user: drh branch: ordered-set-agg, size: 71559) | |
2024-08-29
| ||
23:24 | [534e4063d2] part of check-in [b05d30bec1] Merge all the latest trunk enhancements into the begin-concurrent branch. (check-in: [b05d30bec1] user: drh branch: begin-concurrent, size: 70473) | |
2024-08-26
| ||
14:06 | [f4c8ded81b] part of check-in [16d32676e2] Add the AGGREGATE clause to the pipeline. (check-in: [16d32676e2] user: drh branch: sql-pipes, size: 76866) | |
13:20 | [5ea418a962] part of check-in [4bdcc18d2c] Working better now. (check-in: [4bdcc18d2c] user: drh branch: sql-pipes, size: 76164) | |
12:26 | [ed7a01c261] part of check-in [3c7a5cc6d0] Reduce rules added to the grammar. Kinda works, but there are still bugs. (check-in: [3c7a5cc6d0] user: drh branch: sql-pipes, size: 76110) | |
02:53 | [5871809400] part of check-in [8781d7352b] Another version of the parser with a slightly richer syntax. The ghastly pipe operator is now optional, but is never required. Pipelines cannot be initiated from an arbitrary SELECT unless the arbitrary SELECT is a subquery on the initial FROM. (check-in: [8781d7352b] user: drh branch: sql-pipes, size: 71360) | |
00:15 | [a4067a80b2] part of check-in [2c4bae3e68] Proof-of-concept grammar rules to parse Google-style "pipe" syntax for SQL, without the ghastly "|>" operator. The grammar rules are not connected to working code. They just parse the syntax. Pipelines that begin with an ordinary SELECT statement must have the keyword "INTO" (rather than the "|>" operator) separating the SELECT from the start of the pipeline, to avoid syntactic and semantic ambiguity. (check-in: [2c4bae3e68] user: drh branch: sql-pipes, size: 71141) | |
2024-08-20
| ||
20:01 | [5972b7d00a] part of check-in [17699329aa] Remove unreachable code. (check-in: [17699329aa] user: drh branch: srcitem-opt, size: 70075) | |
2024-08-19
| ||
22:48 | [967e0a712d] part of check-in [8ff5dda844] Refactor the SrcItem object so that information about subqueries is stored in a separately allocated Subquery object. This reduces the memory requirements for SrcItem and makes the code run faster. It also provides an expansion path for subquery processing that does not burden simple queries. The current checking mostly works, but there are still issues that need to be tracked down and fixed. (check-in: [8ff5dda844] user: drh branch: srcitem-opt, size: 70054) | |
2024-08-17
| ||
23:23 | [bc8df5d36a] part of check-in [9f5aeef3cb] Give unique names to fields in the SrcItem object, to facilitate analysis of how those fields are used using "grep". (check-in: [9f5aeef3cb] user: drh branch: srcitem-opt, size: 69827) | |
19:46 | [9eac03d271] part of check-in [a4c59ac3c6] Reduce the size of the SrcItem object by combining fields into a union. (check-in: [a4c59ac3c6] user: drh branch: srcitem-opt, size: 69812) | |
2024-08-16
| ||
19:04 | [be8e4f8df7] part of check-in [d0591db3bb] Merge all the latest trunk enhancements, and especially the order-by-subquery optimization, into the bedrock branch, via wal2. (check-in: [d0591db3bb] user: drh branch: bedrock, size: 70158) | |
2024-08-10
| ||
19:59 | [21038c79c0] part of check-in [6cc144624d] Merge all of the latest branch-3.46 into the begin-concurrent branch as a new sub-branch called begin-concurrent-3.46. (check-in: [6cc144624d] user: drh branch: begin-concurrent-3.46, size: 69957) | |
2024-08-08
| ||
14:49 | [1a526e56da] part of check-in [05dbfad70c] Do not let the number of terms on a VALUES clause be limited by SQLITE_LIMIT_COMPOUND_SELECT, even if the VALUES clause contains elements that appear to be variables due to the use of double-quoted string literals. (check-in: [05dbfad70c] user: drh branch: branch-3.46, size: 69559) | |
14:45 | [318ef86fbe] part of check-in [670beb133e] Do not let the number of terms on a VALUES clause be limited by SQLITE_LIMIT_COMPOUND_SELECT, even if the VALUES clause contains elements that appear to be variables due to the use of double-quoted string literals. Chromium issue 358174302. (check-in: [670beb133e] user: drh branch: trunk, size: 69760) | |
2024-08-01
| ||
00:02 | [041390db02] part of check-in [3b131bd9aa] Merge all the latest trunk enhancements into the begin-concurrent branch. (check-in: [3b131bd9aa] user: drh branch: begin-concurrent, size: 70149) | |
2024-07-22
| ||
19:31 | [4bd8b449ca] part of check-in [e330596aed] Fix undesirable C++-style comments in the parser. (check-in: [e330596aed] user: drh branch: lateral-join, size: 70861) | |
13:55 | [a166e49fbb] part of check-in [1034782137] Do not allow LIMIT and OFFSET to be expressions except for in a LATERAL. (check-in: [1034782137] user: drh branch: lateral-join, size: 70854) | |
2024-07-20
| ||
09:36 | [8de6d5dc5f] part of check-in [4ee74b7224] Remove an unnecessary error offset assignment. (check-in: [4ee74b7224] user: drh branch: lateral-join, size: 70803) | |
03:19 | [c681bcadfb] part of check-in [8217bddaf8] "LATERAL" may not be a keyword, as that would cause problems for legacy databases that have tables named "lateral". It has to be parsed as an identifier. (check-in: [8217bddaf8] user: drh branch: lateral-join, size: 70865) | |
01:19 | [4be218b2b2] part of check-in [3c045a96bc] Experimental implementation of LATERAL JOIN. (check-in: [3c045a96bc] user: drh branch: lateral-join, size: 70067) | |
2024-06-06
| ||
01:21 | [2bd540b3b1] part of check-in [34f05c3d89] Adjust the parser so that the value of TK_ISNOT is similar to the value of TK_IS. This helps the compiler generate faster switch() statements on the Expr.op fields when there are cases for TK_ISNOT and other common operators. (check-in: [34f05c3d89] user: drh branch: trunk, size: 69751) | |
2024-05-21
| ||
15:17 | [d5e778ff22] part of check-in [5c1c8651d1] Merge the latest trunk enhancements into the begin-concurrent branch. (check-in: [5c1c8651d1] user: drh branch: begin-concurrent, size: 69948) | |
2024-05-08
| ||
17:42 | [de2da0ffd3] part of check-in [003e1c8c27] Allow arbitrary expressions as the second argument to RAISE(). (check-in: [003e1c8c27] user: drh branch: enhanced-raise, size: 69543) | |
2024-05-06
| ||
20:18 | [5051625343] part of check-in [f81cc149e5] Omit redundant unary + operators from the AST. (check-in: [f81cc149e5] user: drh branch: trunk, size: 69550) | |
2024-04-06
| ||
11:59 | [2627499660] part of check-in [4120bc740a] Generalize the pushdown of IN right-hand sides to cover more SELECTs. (check-in: [4120bc740a] user: drh branch: pushdown-IN-table, size: 69415) | |
2024-04-05
| ||
20:01 | [67b9965a50] part of check-in [2cbd7838fd] Experimental enhancement in which expressions of the form "expr IN table" can be pushed down into subexpressions. (check-in: [2cbd7838fd] user: drh branch: pushdown-IN-table, size: 69470) | |
2024-03-18
| ||
18:47 | [08247e876d] part of check-in [50b43b02da] Merge the latest trunk enhancements into the begin-concurrent branch. (check-in: [50b43b02da] user: drh branch: begin-concurrent, size: 69768) | |
2024-03-16
| ||
17:04 | [5bcef16094] part of check-in [dae669245c] Extend the scope expr-is-constant for function to cover the IN-to-EQ optimization. (check-in: [dae669245c] user: drh branch: enhanced-expr-is-const, size: 69370) | |
13:18 | [004faaa6b6] part of check-in [c9e0488c6c] Enhance the sqlite3ExprIsConstant() function so that it recognizes constant functions. So far the enhancement only applies to the multi-row VALUES clause, but it could possibly be applied in many other places. (check-in: [c9e0488c6c] user: drh branch: enhanced-expr-is-const, size: 69365) | |
2024-03-13
| ||
20:04 | [2ff84e5e34] part of check-in [88d5bc91a5] Change the way parse.y handles multi-row VALUES clauses to save a few cycles. (check-in: [88d5bc91a5] user: dan branch: exp-values-clause2, size: 69363) | |
17:51 | [1cf9e764b0] part of check-in [238fa84a9a] Merge the latest trunk enhancements into the begin-concurrent branch. (check-in: [238fa84a9a] user: drh branch: begin-concurrent, size: 69631) | |
2024-03-11
| ||
17:27 | [3d022ba4c6] part of check-in [17d1f7cfab] Attempt to reduce the memory used by VALUES clauses in as many statements as possible, not just INSERT. This branch still has problems. (check-in: [17d1f7cfab] user: dan branch: exp-values-clause2, size: 69092) | |
2024-03-07
| ||
17:11 | [c00b2d30f1] part of check-in [89a6c7b527] Simplify the parser changes on this branch. (check-in: [89a6c7b527] user: dan branch: exp-values-clause, size: 69300) | |
15:44 | [56a0ddc815] part of check-in [5d8065e801] Add further tests for the code on this branch. (check-in: [5d8065e801] user: dan branch: exp-values-clause, size: 69652) | |
2024-03-05
| ||
17:23 | [9b9923ee2c] part of check-in [9cbceaac8f] Simplify changes on this branch by avoiding any special handling until SQLITE_LIMIT_COMPOUND_SELECT rows are reached. (check-in: [9cbceaac8f] user: dan branch: exp-values-clause, size: 69658) | |
2024-03-04
| ||
18:50 | [d4eb1a3b02] part of check-in [5d6797716d] Fix some problems with "VALUES(...) UNION ..." and similar on this branch. (check-in: [5d6797716d] user: dan branch: exp-values-clause, size: 69933) | |
2024-03-02
| ||
20:39 | [b922f345ed] part of check-in [6d4f1ae2fc] Attempt to use less memory when handling a large VALUES clause attached to an INSERT statement. This branch is buggy. (check-in: [6d4f1ae2fc] user: dan branch: exp-values-clause, size: 69637) | |
2024-03-01
| ||
18:05 | [9a77520c83] part of check-in [90de1f73f9] Omit unreachable branches in the parser. (check-in: [90de1f73f9] user: drh branch: multi-drop, size: 69755) | |
2024-02-29
| ||
13:44 | [85e7464c09] part of check-in [2266086cf0] Add the ability to DROP one or more objects of the same class in a single statement by listing the objects as multiple arguments to the DROP command. (check-in: [2266086cf0] user: drh branch: multi-drop, size: 69741) | |
2024-02-27
| ||
10:52 | [6209f01e8e] part of check-in [0e6700f43f] Allow "_" characters to appear between any two digits in an integer, real or hexadecimal SQL literal. (check-in: [0e6700f43f] user: dan branch: trunk, size: 69233) | |
2024-01-27
| ||
12:25 | [bfd6da46fc] part of check-in [7c36d560ff] Use an alternative memory allocator for parser stack space that includes a call to sqlite3FaultSim() to facilitate testing. (check-in: [7c36d560ff] user: drh branch: trunk, size: 69140) | |
01:35 | [7505b34ab8] part of check-in [33f17ec248] Omit the "parser stack overflow" error message, since it no longer occurs. Replace it with an ordinary "out of memory". (check-in: [33f17ec248] user: drh branch: growable-parser-stack, size: 68815) | |
2024-01-26
| ||
20:34 | [41926c5079] part of check-in [3fd062905f] Experimental changes that prevent parser stack overflows by growing the parser stack with heap memory when it reaches its limit. (check-in: [3fd062905f] user: drh branch: growable-parser-stack, size: 68836) | |
2024-01-23
| ||
11:20 | [d2823ae4a5] part of check-in [d57407ef59] Add extra checks for the validity of a numeric literal to sqlite3DequoteNumber(). (check-in: [d57407ef59] user: dan branch: digit-separators, size: 68823) | |
2024-01-20
| ||
16:18 | [2354aaf964] part of check-in [401650aacc] Allow "_" characters to appear following any digit in an integer or real SQL literal. (check-in: [401650aacc] user: dan branch: digit-separators, size: 68815) | |
2023-10-23
| ||
15:48 | [e583113148] part of check-in [c5ef898a79] Merge latest trunk changes into this branch. (check-in: [c5ef898a79] user: dan branch: begin-concurrent, size: 69128) | |
2023-10-18
| ||
13:18 | [020d80386e] part of check-in [3a98ff24bf] Enhance the parser so that it can accept an ORDER BY clause on a function invocation. For this incremental check-in, the ORDER BY clause is currently ignored. (check-in: [3a98ff24bf] user: drh branch: agg-orderby, size: 68730) | |
2023-07-28
| ||
18:43 | [92a9cc6708] part of check-in [7407dda8b4] Merge the latest trunk enhancements into the begin-concurrent branch. (check-in: [7407dda8b4] user: drh branch: begin-concurrent, size: 68742) | |
2023-07-15
| ||
16:48 | [aeb7760d41] part of check-in [5683743ddf] Add the experimental sqlite3_stmt_explain(S,E) interface. (check-in: [5683743ddf] user: drh branch: sqlite3_stmt_explain, size: 68344) | |
2023-06-22
| ||
13:28 | [cf35577dae] part of check-in [5bd26fea6a] Merge recent trunk enhancements into the begin-concurrent branch. (check-in: [5bd26fea6a] user: drh branch: begin-concurrent, size: 68686) | |
2023-06-16
| ||
14:39 | [8828f9e15f] part of check-in [365caf2f97] Address various harmless compiler warnings from forum post d526da8ee4. (check-in: [365caf2f97] user: drh branch: trunk, size: 68288) | |
2023-06-10
| ||
09:24 | [b1ac02e59f] part of check-in [c29ec76944] Fix a potential UAF in the parser caused by the changes on this branch. (check-in: [c29ec76944] user: drh branch: newbie-safe-aggregates, size: 68340) | |
2023-06-09
| ||
18:58 | [c4fff9e1b2] part of check-in [446ad162f7] Improved sqlite3_error_offset() values for bare column errors on '*' and 'table.*' expressions in SELECT statements. (check-in: [446ad162f7] user: drh branch: newbie-safe-aggregates, size: 68327) | |
2023-06-07
| ||
17:03 | [396bdbaa15] part of check-in [8c291d9994] Fix straggler misspellings and tidy the custom dictionary. Also include pickups from forum post c61fb09afd. (check-in: [8c291d9994] user: larrybr branch: spell-check, size: 68196) | |
2023-05-02
| ||
21:10 | [03d4d7a079] part of check-in [6f22c7679f] Update this branch with latest changes from trunk. (check-in: [6f22c7679f] user: dan branch: begin-concurrent, size: 68594) | |
2023-04-22
| ||
23:43 | [e7afc0b66f] part of check-in [58a1d94c59] Import fixes from trunk into the branch-3.41. (check-in: [58a1d94c59] user: drh branch: branch-3.41, size: 68254) | |
11:29 | [146f9a1db7] part of check-in [f35ce7c122] Early out from sqlite3Prepare() following an OOM to avoid possible problems further along in the parse. Fix for the NULL pointer dereference reported by forum post 2e5131839365682a. (check-in: [f35ce7c122] user: drh branch: trunk, size: 68196) | |
2023-04-19
| ||
12:08 | [e8b5c753e3] part of check-in [f6e6c5f94c] Attempt to suppress harmless compiler warnings reported by forum post fc98845c06. (check-in: [f6e6c5f94c] user: drh branch: trunk, size: 68180) | |
2023-03-11
| ||
12:27 | [424e49ed8f] part of check-in [eeac3d5ec9] Allow functions named using keywords "CROSS", "FULL", "INNER", "LEFT", "NATURAL", "OUTER", and "RIGHT". (check-in: [eeac3d5ec9] user: drh branch: functions-named-left, size: 68220) | |
2023-02-18
| ||
21:35 | [9006b990da] part of check-in [6fb8bb2e8f] Merge the latest trunk enhancements into the begin-concurrent branch. (check-in: [6fb8bb2e8f] user: drh branch: begin-concurrent, size: 68636) | |
2023-02-13
| ||
19:32 | [960d2da92a] part of check-in [ecdeef43b2] Ignore extra parentheses around a subquery on the RHS of an IN operator, because that is what PostgreSQL does. (check-in: [ecdeef43b2] user: drh branch: trunk, size: 68238) | |
2022-10-24
| ||
21:58 | [c9f1b67e76] part of check-in [80fbb30f28] This check-in attempts to make the SrcItem object smaller by combining the zDatabase and pSchema fields into a single union. It mostly works, but there are some issues, and the performance savings is minimal. So it is side-tracked onto this dead-end branch. (check-in: [80fbb30f28] user: drh branch: failed-opt-attempt, size: 68094) | |
2022-05-28
| ||
14:25 | [17c50d262d] part of check-in [d6f6ee5cbc] Merge the latest trunk enhancements into the begin-concurrent branch. (check-in: [d6f6ee5cbc] user: drh branch: begin-concurrent, size: 68401) | |
14:03 | [8e67d82003] part of check-in [7e87892c24] Apply the UPDATE-FROM file from check-in [98b3816bbaf539ea] to update-delete-limit builds. (check-in: [7e87892c24] user: drh branch: trunk, size: 68003) | |
2022-05-25
| ||
02:32 | [b58ad9fadf] part of check-in [a124e4f96f] An attempt to get UPDATE FROM working when the FROM clause contains a RIGHT or FULL JOIN. (check-in: [a124e4f96f] user: drh branch: update-from-right-join, size: 67674) | |
2022-05-17
| ||
15:01 | [ad9a59d007] part of check-in [d8b249e8cd] Avoid treating constant expressions like "? IN ()" or "? NOT IN ()" as integers if they appear in a GROUP BY or ORDER BY clause. (check-in: [d8b249e8cd] user: dan branch: trunk, size: 67345) | |
2022-05-12
| ||
11:45 | [efcb41d403] part of check-in [db27611e17] Add IS NOT DISTINCT FROM and IS DISTINCT FROM binary operators which are equivalent to IS and IS NOT, respectively, for compatability with PostgreSQL and hence standard SQL. (check-in: [db27611e17] user: drh branch: trunk, size: 67296) | |
2022-05-10
| ||
12:00 | [3e5bf8067a] part of check-in [f65bd76760] Merge recent trunk enhancements into the begin-concurrent branch. (check-in: [f65bd76760] user: drh branch: begin-concurrent, size: 67410) | |
2022-04-21
| ||
14:08 | [b86d56b446] part of check-in [e611e8e62c] Ensure correct fg.isNestedFrom values even on crazy parses. (check-in: [e611e8e62c] user: drh branch: right-join, size: 67012) | |
2022-04-16
| ||
19:13 | [e221a1159c] part of check-in [6d5d6e0403] Since the query planner is unable to cope with a LEFT JOIN on the left-hand side of a RIGHT JOIN, detect that situation early and raise a parsing error. This is a temporary measure that needs to be fixed. (check-in: [6d5d6e0403] user: drh branch: right-join, size: 66888) | |
2022-04-08
| ||
12:50 | [bbb1709a4c] part of check-in [32ae9ee712] Grammar rules for a hypothetical FOR EACH ROW statement. No new keywords required. However, the sqlite3_complete() machine had to be reworked because of the fact that FOR EACH ROW can contain internal semicolon tokens. (check-in: [32ae9ee712] user: drh branch: foreachrow-statement, size: 67687) | |
10:35 | [ff8f0f6f10] part of check-in [2deee326e8] Tokenizer and grammar rules sufficient for the MERGE command. (check-in: [2deee326e8] user: drh branch: merge-statement, size: 67775) | |
2022-04-07
| ||
12:10 | [9130a93692] part of check-in [8f6ae68601] Omit an unnecessary initialization in tokenExpr(). (check-in: [8f6ae68601] user: drh branch: trunk, size: 66874) | |
01:11 | [afae75ce87] part of check-in [158156a3e3] Improved technique for parsing the ON and USING clauses of a join is faster and uses less memory. (check-in: [158156a3e3] user: drh branch: trunk, size: 66852) | |
2022-04-06
| ||
19:46 | [a2786e72c5] part of check-in [848b7a0ea9] Faster parsing of the FROM clause in joins for the common case where there is no INDEXED BY clause. (check-in: [848b7a0ea9] user: drh branch: trunk, size: 67027) | |
2022-02-15
| ||
20:18 | [34748e63f1] part of check-in [94838f16ba] Merge the latest trunk changes into the begin-concurrent branch. (check-in: [94838f16ba] user: drh branch: begin-concurrent, size: 67225) | |
2022-02-12
| ||
16:02 | [0f02b27cda] part of check-in [9252619d41] Fix a possible user-after-free in ALTER TABLE found by asan. (check-in: [9252619d41] user: dan branch: trunk, size: 66827) | |
2022-02-09
| ||
16:18 | [0ab7c540d9] part of check-in [460abf93ac] Prototype implementation of IF EXISTS and IF NOT EXISTS clauses on the various forms of ALTER TALE. (check-in: [460abf93ac] user: drh branch: alter-table-if-exists, size: 66869) | |
2022-02-06
| ||
11:26 | [b34d4eb810] part of check-in [38e057a580] Record the error offset on INTEGER tokens. (check-in: [38e057a580] user: drh branch: trunk, size: 66750) | |
2022-02-05
| ||
21:49 | [0b8d621453] part of check-in [32a3a53b62] Record the position of many identifiers in the parse using the new Expr.w.iOfst field. This is done with the idea of providing offset results for sqlite3_error_offset() for a more kinds of errors, though that part is not yet implemented. (check-in: [32a3a53b62] user: drh branch: trunk, size: 66699) | |
2022-01-17
| ||
19:17 | [c7c307018e] part of check-in [02daae7a67] Merge recent trunk enhancements into the begin-concurrent branch. (check-in: [02daae7a67] user: drh branch: begin-concurrent, size: 67549) | |
2022-01-07
| ||
14:58 | [04f61db1cd] part of check-in [c4e4e3a3fc] Add new binary operators "->" and "->>" to the parser that evaluate to 2-argument SQL functions by the same name. Add new "->" and "->>" functions to the JSON extension that are aliases for json_extract(). (check-in: [c4e4e3a3fc] user: drh branch: json-enhancements, size: 67151) | |
2021-12-02
| ||
14:28 | [761b5d30a7] part of check-in [8832fa9088] Move the TK_IS token so that it is adjacent to the TK_IN token, as this allows the C compiler to optimize better, resulting in a slightly smaller and faster executable. (check-in: [8832fa9088] user: drh branch: trunk, size: 66949) | |
2021-10-21
| ||
14:13 | [5963135957] part of check-in [ae4eed0b7e] Merge recent trunk enhancements into begin-concurrent branch. (check-in: [ae4eed0b7e] user: drh branch: begin-concurrent, size: 67347) | |
2021-10-07
| ||
20:46 | [0bd7971a74] part of check-in [87e2f5eb43] Protect access to the Expr.y union using nearby assert()s and branches. (check-in: [87e2f5eb43] user: drh branch: trunk, size: 66949) | |
2021-10-04
| ||
11:54 | [6a20fbf70d] part of check-in [4f5ef7aa4c] Merge recent trunk enhancements into the begin-concurrent branch. (check-in: [4f5ef7aa4c] user: drh branch: begin-concurrent, size: 67314) | |
2021-10-01
| ||
20:39 | [82bdd593c5] part of check-in [2f7c946c5f] Change things so that SQLITE_OMIT_VIRTUALTABLE implies SQLITE_OMIT_ALTER_TABLE. (check-in: [2f7c946c5f] user: dan branch: trunk, size: 66916) | |
2021-08-18
| ||
13:13 | [86aa016b28] part of check-in [78732b9f98] What would it be like if you could add the keyword "STRICT" after a CREATE TABLE statement to cause the table to (1) allow only a few well-defined datatypes, (2) rigidly enforce those types, (3) require NOT NULL on PK columns, (4) always enforce foreign key constraint, and so forth? This branch seeks to explore that question. (check-in: [78732b9f98] user: drh branch: strict-tables, size: 66851) | |
2021-08-03
| ||
16:31 | [9aff0654f0] part of check-in [8d806cf93c] Merge recent trunk enhancements into the begin-concurrent branch. (check-in: [8d806cf93c] user: drh branch: begin-concurrent, size: 66899) | |
2021-07-30
| ||
18:39 | [0ba0baec5d] part of check-in [980f7292af] Avoid clownfeet in the names columns when the column names are quoted in the original CREATE TABLE statement. (check-in: [980f7292af] user: drh branch: trunk, size: 66501) | |
2021-07-07
| ||
19:40 | [6d90c816ed] part of check-in [5bc05faf27] Fix a harmless compiler warning - duplicate local variable named "pRHS". (check-in: [5bc05faf27] user: drh branch: trunk, size: 66503) | |
13:53 | [62388bd732] part of check-in [6b22f4e71d] Improve the error message in cases where there is a row-value on the LHS of an IN() operator, the RHS is a list (not a sub-select) and at least one element of the list is not a row-value with the correct number of elements. (check-in: [6b22f4e71d] user: dan branch: trunk, size: 66479) | |
2021-07-06
| ||
20:44 | [50ef70ca8c] part of check-in [981d230ece] Handle "<vector> IN (<vector>, <vector> ...)" in the same way as "<vector> IN (VALUES(<vector>, <vector>, ...)". (check-in: [981d230ece] user: dan branch: trunk, size: 66357) | |
2021-06-14
| ||
12:23 | [a52d0c9a74] part of check-in [d81996340a] Update this branch with latest trunk changes. (check-in: [d81996340a] user: dan branch: begin-concurrent, size: 66581) | |
2021-05-24
| ||
00:17 | [8920f44449] part of check-in [0be6b6c9f7] Additional defenses (above and beyond [b986600520696b0c]) to prevent an invalid subquery from causing problems downstream. If an error is found while analyzing a subquery expression, change the expression to TK_ERROR so inhibit further processing on that expression. dbsqlfuzz cf624b8c0484c66e0f552bf6475e3e3f2c22b24e. (check-in: [0be6b6c9f7] user: drh branch: trunk, size: 66183) | |
2021-05-21
| ||
15:33 | [68f3bdc6ab] part of check-in [0dba9010ad] Merge all recent trunk changes into the begin-concurrent branch. (check-in: [0dba9010ad] user: drh branch: begin-concurrent, size: 66523) | |
2021-04-28
| ||
17:37 | [ac294bd289] part of check-in [65ec39f0f0] Ignore the TEMP or TEMPORARY keyword on CREATE statements which parsing the schema out of an existing database file. Those keywords should never be there. This change simply adds robustness in case a legacy or damaged database is seen. (check-in: [65ec39f0f0] user: drh branch: trunk, size: 66125) | |
2021-04-08
| ||
14:15 | [77039cf996] part of check-in [f375f541ef] Harden the filter_over grammar rule against OOM faults. dbsqlfuzz e47c54502a9c36778a5ed553199d5870e2ebd9f2 (check-in: [f375f541ef] user: drh branch: trunk, size: 66102) | |
2021-03-11
| ||
18:52 | [3a7f215648] part of check-in [79d44ebd53] Update this branch with latest changes from trunk. (check-in: [79d44ebd53] user: dan branch: begin-concurrent, size: 66436) | |
2021-03-04
| ||
16:03 | [2107aff88e] part of check-in [e893f88750] Earlier detection of a misplaced ORDER BY or LIMIT clause in a compound SELECT. This prevents problems in recursive CTEs with multiple recursive terms in which there is an ORDER BY or LIMIT clause on the last non-recursive term. (check-in: [e893f88750] user: drh branch: trunk, size: 66038) | |
2021-03-03
| ||
19:17 | [f5376ab515] part of check-in [acdafef836] Merge recent trunk changes into the begin-concurrent branch. (check-in: [acdafef836] user: drh branch: begin-concurrent, size: 66122) | |
2021-02-22
| ||
03:04 | [f3e8d7978c] part of check-in [a6bb272ec0] Add the AS MATERIALIZED and AS NOT MATERIALIZED syntax that works like it does in PostgreSQL. (check-in: [a6bb272ec0] user: drh branch: as-materialize-redux, size: 65724) | |
2021-02-21
| ||
21:04 | [e6019e934c] part of check-in [bfd5bf2c73] Rename the "struct SrcList_item" object to the more succinct "SrcItem". This is a symbolic change only. The logic is unmodified. (check-in: [bfd5bf2c73] user: drh branch: trunk, size: 65533) | |
2021-02-20
| ||
14:57 | [81e6d07be0] part of check-in [f03efe905d] Break out the Cte object from the With object. This will make it simpler to add new kinds of Cte objects (ex: DML statements) and/or MATERIALIZED keywords in the future. It brings trunk into closer alignment with the experimental as-materialize branch. (check-in: [f03efe905d] user: drh branch: trunk, size: 65557) | |
12:47 | [a810258377] part of check-in [7a90571e0a] Merge changes from trunk. (Later:) Abandon this line of development. See the as-materialize-redux branch. (check-in: [7a90571e0a] user: drh branch: as-materialize, size: 65897) | |
2021-02-19
| ||
09:36 | [cdc4e5efaf] part of check-in [a22f87fb6c] The COLUMN keyword in ALTER TABLE DROP COLUMN is optional. (check-in: [a22f87fb6c] user: drh branch: alter-table-drop-column, size: 65189) | |
2021-02-16
| ||
20:43 | [8170885f22] part of check-in [f0217937d7] Add experimental implementation of ALTER TABLE DROP COLUMN. Only some cases work so far. (check-in: [f0217937d7] user: dan branch: alter-table-drop-column, size: 65185) | |
16:32 | [7bec75e74a] part of check-in [bf0fd9b23a] Trying to get the new AS MATERIALIZE syntax of CTEs to work. There are still performance and memory management issues. This is a WIP check-in. (check-in: [bf0fd9b23a] user: drh branch: as-materialize, size: 65794) | |
00:48 | [a6d56266bf] part of check-in [78dcddd969] Change the syntax from "GENERATED AS" to "AS MATERIALIZED" so as to match the syntax of PostgreSQL 12+. (check-in: [78dcddd969] user: drh branch: with-generated-as, size: 65425) | |
2021-02-13
| ||
23:46 | [cb23465fe1] part of check-in [186ec18b24] If the GENERATED keyword occurs before the AS keyword in a common table expression (CTE) definition, then that CTE becomes an "optimization barrier". For now, that means the CTE is always materialized. It also means that query flattener or pushdown optimizations that cross the CTE boundary are omitted. (check-in: [186ec18b24] user: drh branch: with-generated-as, size: 65300) | |
2021-02-12
| ||
21:07 | [75974e46f0] part of check-in [964ff68d8f] Parsing of DML statements in a WITH clause. But at this point, it just generates an error about "not yet supported". (check-in: [964ff68d8f] user: drh branch: dml-in-cte, size: 65743) | |
2021-01-29
| ||
19:32 | [67ba503780] part of check-in [b7ef4dc21f] Working prototype. (check-in: [b7ef4dc21f] user: drh branch: returning, size: 65086) | |
2021-01-12
| ||
20:16 | [6b462c25ba] part of check-in [abf8da8156] Lexer and grammar rules for a RETURNING clause on DELETE/INSERT/UPDATE. Actually making this work, though, will involve a lot more code which will likely slow down processing for the common case where there is no RETURNING clause. Furthermore, RETURNING seems to be of limited usefulness and it is not standard SQL. So we abandon it here. These experimental changes are parked in a branch as an historical reference. If circumstances changes, we might take up the cause again some day. (check-in: [abf8da8156] user: drh branch: returning, size: 65078) | |
2020-12-14
| ||
16:26 | [382eb17b45] part of check-in [a1708e8457] Merge recent trunk enhancements into the begin-concurrent branch. (check-in: [a1708e8457] user: drh branch: begin-concurrent, size: 64823) | |
13:52 | [6c8aa09a7f] part of check-in [e5a8fa50f4] Minor changes for test coverage. (check-in: [e5a8fa50f4] user: drh branch: generalized-upsert, size: 64425) | |
2020-12-08
| ||
14:29 | [72b884c73f] part of check-in [2ca62f4c71] Enhance UPSERT parsing to allow multiple ON CONFLICT clauses. Only the very last clause may omit the conflict target, but the conflict target may now be omitted for the DO UPDATE resolution. (check-in: [2ca62f4c71] user: drh branch: generalized-upsert, size: 64181) | |
2020-11-26
| ||
11:37 | [5ba6522aba] part of check-in [ddb97eeef7] Update this branch with latest changes from trunk. (check-in: [ddb97eeef7] user: dan branch: begin-concurrent, size: 64671) | |
2020-09-01
| ||
11:20 | [9ce4dfb772] part of check-in [84d54eb357] Lemon updates: (1) include the #defines for all tokens in the generated C file, so that the C-file can be stand-alone. (2) If the grammar begins with a %include {...} directive on line one, make that directive the header for the generated C file. (3) Enhance the lemon.html documentation. (check-in: [84d54eb357] user: drh branch: trunk, size: 64273) | |
2020-08-27
| ||
18:36 | [2ca57a8383] part of check-in [5ce34a955b] Include the original text of the CHECK constraint in the error message for anonymous CHECK constraints. (check-in: [5ce34a955b] user: drh branch: trunk, size: 64059) | |
2020-07-30
| ||
19:19 | [b2a9db24fe] part of check-in [e8a6651539] Merge latest trunk changes into this branch. (check-in: [e8a6651539] user: dan branch: begin-concurrent, size: 64430) | |
2020-07-29
| ||
16:18 | [ba36980bcd] part of check-in [a80ae2c98b] Dozens and dozens of typo fixes in comments. This change adds no value to the end product and is disruptive, so it is questionable whether or not it will ever land on trunk. (check-in: [a80ae2c98b] user: drh branch: typos, size: 64033) | |
2020-07-18
| ||
18:44 | [5bdb760a29] part of check-in [4c0d208c45] More harmless compiler warning fixes. (check-in: [4c0d208c45] user: drh branch: trunk, size: 64032) | |
2020-07-14
| ||
19:51 | [ecb9abdd79] part of check-in [4f6d8d0ebf] Support UPDATE...FROM statements in trigger programs. (check-in: [4f6d8d0ebf] user: dan branch: update-from, size: 64029) | |
2020-07-13
| ||
18:04 | [3755868359] part of check-in [5ee3c27e20] Merge latest trunk changes with this branch. (check-in: [5ee3c27e20] user: dan branch: update-from, size: 64018) | |
2020-07-03
| ||
21:18 | [b6b4b02f8c] part of check-in [b27bb4fe38] Fix a compiler warning about an unused procedure in the parser. (check-in: [b27bb4fe38] user: drh branch: trunk, size: 63952) | |
17:24 | [9ea710b51b] part of check-in [1f96a29dd8] If the amalgamation is built using OPT_FEATURE_FLAGS = -DSQLITE_UDL_CAPABLE_PARSER then it can be compiled with or without the -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT option and it works either way. (check-in: [1f96a29dd8] user: drh branch: trunk, size: 63905) | |
2020-06-19
| ||
15:24 | [0e111f8786] part of check-in [7a876209a6] Extend the refactoring into extensions. Clean up stray newlines. (check-in: [7a876209a6] user: drh branch: trunk, size: 63335) | |
2020-04-27
| ||
20:55 | [5f2150bb49] part of check-in [f353a1a613] Allow a FROM clause in UPDATE statements. (check-in: [f353a1a613] user: dan branch: update-from, size: 63402) | |
2020-04-09
| ||
18:29 | [0724899be1] part of check-in [92f71a88c4] Merge recent trunk enhancements into the begin-concurrent branch. (check-in: [92f71a88c4] user: drh branch: begin-concurrent, size: 63734) | |
2020-04-01
| ||
17:10 | [6dae1e907a] part of check-in [7e666b6022] Add support for the "ANALYZE WITH LIMIT=N" syntax. (check-in: [7e666b6022] user: drh branch: analyze-with-limit, size: 63638) | |
2020-03-26
| ||
00:29 | [c8eff38606] part of check-in [27936e6884] Reinstate the optimization that converts "x IN (y)" into "x==y". (check-in: [27936e6884] user: drh branch: trunk, size: 63336) | |
2020-03-20
| ||
20:00 | [dc4521689a] part of check-in [e7343ce751] Add the EXPLAIN TABLES syntax that uses SQLITE_STMTMODE_TABLELIST. Seems to work, but not well-tested. (check-in: [e7343ce751] user: drh branch: sqlite3_stmt_mode, size: 63402) | |
2020-03-19
| ||
21:17 | [a6d7151326] part of check-in [3cf7537b5e] Initial code for a proposed new sqlite3_stmt_mode() API. This is an incomplete snapshot of a work-in-progress. (check-in: [3cf7537b5e] user: drh branch: sqlite3_stmt_mode, size: 63327) | |
2020-03-10
| ||
19:24 | [8575183809] part of check-in [5f60b527b9] Enhanced detection logic for preventing the use of static schema expressions by code generating routines. (check-in: [5f60b527b9] user: drh branch: trunk, size: 63287) | |
2020-02-04
| ||
20:08 | [9bca3837f9] part of check-in [f253618ac6] Merge latest trunk changes, including the SQLITE_ENABLE_CORRUPT_PGNO patch, into this branch. (check-in: [f253618ac6] user: dan branch: begin-concurrent, size: 63652) | |
2020-01-28
| ||
18:09 | [61ae75b176] part of check-in [8ac26a23d7] Reinstate the optimization of converting "a IN (C)" into "a=C" but only if C is a constant. If the RHS is a table column, the complications of managing affinity and collations become too involved to mess with. (check-in: [8ac26a23d7] user: drh branch: trunk, size: 63254) | |
2020-01-15
| ||
13:34 | [20725f7dee] part of check-in [95ba2f50fd] Merge fixes and enhancements from trunk into begin-concurrent. (check-in: [95ba2f50fd] user: drh branch: begin-concurrent, size: 63373) | |
2019-12-10
| ||
20:41 | [c8d2de64db] part of check-in [136cdefb2f] Enhance LEMON to provide the ability to mark a rules as one that will never reduce due to intervention of actions. Use this new capability to designate the EXPLAIN rule as NEVER-REDUCES. (check-in: [136cdefb2f] user: drh branch: trunk, size: 62975) | |
15:05 | [33fbc05dea] part of check-in [707a058a22] Fix parser bugs: require a semicolon after an EXPLAIN command. (check-in: [707a058a22] user: drh branch: trunk, size: 62954) | |
2019-11-02
| ||
13:45 | [17c1ae265e] part of check-in [167cd574d6] "STORED" is not actually a keyword. The parser looks for STORED as an ordinary identifier. (check-in: [167cd574d6] user: drh branch: trunk, size: 62949) | |
2019-10-30
| ||
13:00 | [ea567d2ada] part of check-in [13fe6978b7] New tokens ALWAYS, GENERATED, and STORED used by generated columns should all be fallback tokens. (check-in: [13fe6978b7] user: drh branch: trunk, size: 62956) | |
2019-10-28
| ||
04:20 | [5f09d382d5] part of check-in [a1e1ba9145] ALWAYS macro added for coverage. (check-in: [a1e1ba9145] user: drh branch: trunk, size: 62885) | |
2019-10-24
| ||
23:43 | [97d46c41ea] part of check-in [4ec57d8841] Merge fixes from trunk. (check-in: [4ec57d8841] user: drh branch: generated-columns, size: 62877) | |
2019-10-23
| ||
18:09 | [72886e0ce1] part of check-in [978b2d20cf] When a vector comparison appears in the WHERE clause and the constraint side has a COLLATE clause on the first term of the vector, be sure to honor that COLLATE clause. Ticket [135c9da7513e5a97]. (check-in: [978b2d20cf] user: drh branch: trunk, size: 62662) | |
2019-10-16
| ||
19:31 | [bc453ce808] part of check-in [7f9f90b1b8] Simple INSERT and SELECT operations working with VIRTUAL columns. (check-in: [7f9f90b1b8] user: drh branch: generated-columns, size: 62788) | |
12:18 | [516984fb37] part of check-in [11d472c1df] Initial experimental code for generated column support. Non-functional. (check-in: [11d472c1df] user: drh branch: generated-columns, size: 62789) | |
2019-10-09
| ||
17:06 | [916f6f75b9] part of check-in [5ba8cee8f7] An alternative, experimental lookaside memory allocator that uses two different slot sizes. (check-in: [5ba8cee8f7] user: sperry branch: 2-size-lookaside, size: 62619) | |
2019-10-05
| ||
14:39 | [19c8b65c87] part of check-in [17ce1c49cb] Performance optimization to the lookaside-memory disabling mechanism. (check-in: [17ce1c49cb] user: drh branch: trunk, size: 62573) | |
2019-09-30
| ||
16:14 | [601f2ac442] part of check-in [a003818f70] Merge the 3.30.0 beta 1 changes from trunk. (check-in: [a003818f70] user: drh branch: begin-concurrent, size: 62959) | |
2019-09-23
| ||
12:38 | [50bfcb34be] part of check-in [f907395ef5] Omit the sqlite3IntTokens array constant for a code simplification. (check-in: [f907395ef5] user: drh branch: trunk, size: 62561) | |
2019-09-16
| ||
12:08 | [ea6ec9253c] part of check-in [93b9ef3f47] Merge recent trunk enhancements into the begin-concurrent branch. (check-in: [93b9ef3f47] user: drh branch: begin-concurrent, size: 62972) | |
2019-08-27
| ||
19:59 | [6f284f7488] part of check-in [94085fb3e7] Add support for "ORDER BY ... NULLS FIRST" and "ORDER BY ... NULLS LAST". Use this to fix ticket [f8a7060e]. (check-in: [94085fb3e7] user: dan branch: trunk, size: 62574) | |
17:01 | [152a727553] part of check-in [7f5168a76a] Omit the "x IN (y)" to "x==y" optimization of check-in [e68b427afbc82e20] (and ticket [e39d032577df6942]) as it causes difficult affinity problems as demonstrated by ticket [dbaf8a6820be1ece] and the original assertion fault is no longer a factor due to countless other changes of the previous 5 years. (check-in: [7f5168a76a] user: drh branch: trunk, size: 62348) | |
2019-08-23
| ||
21:11 | [1e469e2b51] part of check-in [12d2cf8871] Attempt to parse the NULLS LAST clause more efficiently. A few cycles were saved, but at the expense of more code. And there is a bug was introduced somewhere. Not worth continuing down this line. (check-in: [12d2cf8871] user: drh branch: dead-end, size: 63852) | |
20:33 | [d127bf3f79] part of check-in [d26fdfa3bc] Move some things in parse.y so that TK_COLUMN and TK_AGG_COLUMN are assigned the same values as they are on trunk for a very small speedup. (check-in: [d26fdfa3bc] user: dan branch: nulls-last, size: 63596) | |
2019-08-12
| ||
16:36 | [61e979ce7f] part of check-in [07babb0f89] Experimental implementation of NULLS FIRST/LAST. This branch still has problems - the most significant of which is that ORDER BY clauses with a non-default NULLS FIRST/LAST qualifier can never use an index. (check-in: [07babb0f89] user: dan branch: nulls-last, size: 63596) | |
2019-08-05
| ||
18:01 | [6d03a24bc0] part of check-in [a29f2a7d07] Refactor field Expr.affinity into Expr.affExpr to avoid confusion with other fields and variables named "affinity" and display affExpr it in sqlite3TreeViewExpr() output. (check-in: [a29f2a7d07] user: drh branch: trunk, size: 63370) | |
2019-07-16
| ||
19:44 | [22889d25bb] part of check-in [9e66458592] Add new assert() statements in an attempt to help static analyzers avoid false-positives. (check-in: [9e66458592] user: drh branch: trunk, size: 63373) | |
2019-07-13
| ||
18:27 | [8ec5ce13db] part of check-in [85fd70fead] Fix a memory leak that could follow an OOM in the new FILTER code. (check-in: [85fd70fead] user: dan branch: trunk, size: 63353) | |
16:22 | [ef494825aa] part of check-in [5dac8c38df] Rework the FILTER clause implementation to share more code with window functions. (check-in: [5dac8c38df] user: dan branch: filter-clause, size: 63306) | |
2019-07-11
| ||
18:43 | [6f2e8ec7df] part of check-in [be01b801fb] Change the parser on this branch to more closely match trunk. This saves a few more cycles. (check-in: [be01b801fb] user: dan branch: filter-clause, size: 63379) | |
2019-07-08
| ||
21:06 | [eae942fcb5] part of check-in [7fff080335] Merge recent trunk enhancements into the begin-concurrent branch. (check-in: [7fff080335] user: drh branch: begin-concurrent, size: 63472) | |
2019-07-02
| ||
11:56 | [2902f393b0] part of check-in [1f1ae2d6ac] Experimental implementation of FILTER clause for aggregate functions. (check-in: [1f1ae2d6ac] user: dan branch: filter-clause, size: 63041) | |
2019-06-11
| ||
10:43 | [026e3e6fff] part of check-in [36ea13e0a8] Add the new sqlite3ExprUnmapAndDelete() function and use it in place of separate calls to sqlite3RenameExprUnmap() and sqlite3ExprDelete(). (check-in: [36ea13e0a8] user: drh branch: trunk, size: 63074) | |
01:30 | [9e13554d10] part of check-in [211c8002d5] Remove a comment made obsolete by check-in [71643deb6bbad4b4]. No changes to code. (check-in: [211c8002d5] user: drh branch: trunk, size: 63070) | |
2019-06-10
| ||
19:17 | [0548025430] part of check-in [71643deb6b] Have ALTER TABLE commands ignore the lhs of "expr IN ()" and "expr NOT IN ()" expressions, just as other queries do. Fix for [533010b8ca]. (check-in: [71643deb6b] user: dan branch: trunk, size: 63421) | |
15:34 | [954e262440] part of check-in [567b130939] Handle renaming a column or table when the schema contains a (meaningless) index on the constant expression ('text' IN ()) or ('text' NOT IN()). Fix for [fd76310a]. (check-in: [567b130939] user: dan branch: trunk, size: 63529) | |
2019-05-18
| ||
19:49 | [91f76f436d] part of check-in [d91095ba71] Avoid including the comment in the output of "PRAGMA table_info" in situations where there is a comment following a DEFAULT value within a CREATE TABLE statement. (check-in: [d91095ba71] user: dan branch: trunk, size: 63115) | |
2019-05-14
| ||
21:51 | [a0a373aaad] part of check-in [5d3a6e18d4] Merge the latest trunk enhancements into begin-concurrent. (check-in: [5d3a6e18d4] user: drh branch: begin-concurrent, size: 63418) | |
2019-04-19
| ||
13:38 | [22f64d8a89] part of check-in [7713996aa9] Streamline the processing of the AND operator. Slightly smaller and faster. (check-in: [7713996aa9] user: drh branch: trunk, size: 63020) | |
2019-04-15
| ||
14:59 | [8b610cdaf8] part of check-in [7c328e8894] Merge the latest enhancements from trunk. (check-in: [7c328e8894] user: drh branch: begin-concurrent, size: 63420) | |
2019-04-05
| ||
21:17 | [8de9b1da4d] part of check-in [c0381b0bc9] Remove some stale references to the addopcodes.tcl script from documentation. (check-in: [c0381b0bc9] user: drh branch: trunk, size: 63022) | |
20:56 | [0d461b673a] part of check-in [d272819298] Eliminate the tool/addopcodes.tcl script. The purpose of that script was to keep the number of parser codes below 256 in order to save parser table space. But we have long since blown through that ceiling so the addopcodes.tcl script was just needless complexity. There is no longer any reason to keep it around. (check-in: [d272819298] user: drh branch: trunk, size: 63189) | |
2019-04-02
| ||
18:12 | [209b0e396a] part of check-in [bce01d9584] Small optimizations to the grammar for window functions save about 120 bytes of space in the parser tables. (check-in: [bce01d9584] user: drh branch: trunk, size: 61689) | |
17:45 | [db16b24cae] part of check-in [10aedce3dd] Including the phrase EXCLUDE NO OTHERS in the frame-spec of a window function (which is the default setting for EXCLUDE) silently disables the xInverse optimization. This is a feature, but we will keep it undocumented for now in case we later decide it is a bad idea. (check-in: [10aedce3dd] user: drh branch: trunk, size: 61792) | |
2019-03-19
| ||
06:40 | [a020386af1] part of check-in [a6d61dfd47] Ensure that all the new window-function keywords can still be used as SQL identifiers. (check-in: [a6d61dfd47] user: dan branch: window-functions, size: 61788) | |
2019-03-16
| ||
20:29 | [cff56367d4] part of check-in [cebe09e11c] Fix problems with RANGE windows and string, blob and NULL values. (check-in: [cebe09e11c] user: dan branch: window-functions, size: 61759) | |
2019-03-14
| ||
20:53 | [a2a79da71f] part of check-in [d03c7533a1] Parse EXCLUDE clauses in window frames. They do not yet work. (check-in: [d03c7533a1] user: dan branch: window-functions, size: 61763) | |
2019-03-08
| ||
20:02 | [e562838146] part of check-in [954bf36993] Finish consolidation of window frame code. Add untested support for GROUPS frames. (check-in: [954bf36993] user: dan branch: window-functions, size: 61349) | |
15:30 | [e53f90120f] part of check-in [667cce3dce] Merge all the latest enhancements from trunk. (check-in: [667cce3dce] user: drh branch: begin-concurrent-pnu, size: 61276) | |
2019-02-16
| ||
17:27 | [deae85a191] part of check-in [c155125fd5] Add support for chaining of WINDOW definitions. (check-in: [c155125fd5] user: dan branch: window-functions, size: 61301) | |
2019-01-31
| ||
02:42 | [741a270b7f] part of check-in [1bb17c863a] If the amalgamation file "sqlite3.c" is generated using the SQLITE_ENABLE_UPDATE_DELETE_LIMIT option, but then subsequently (mis-)compiled without that option, and then a particular syntax error could cause a memory leak, but for this fix. (check-in: [1bb17c863a] user: drh branch: trunk, size: 60919) | |
2019-01-24
| ||
16:27 | [9e5fc4c978] part of check-in [2d9cd06715] Fix a problem with running ALTER TABLE on a schema that contains expressions of the type "col IN ()" (empty set on RHS of IN operator). (check-in: [2d9cd06715] user: dan branch: trunk, size: 60780) | |
2019-01-17
| ||
15:40 | [489673ac42] part of check-in [df08d472b0] Revamp the SrcList allocator routines to be methods of Parse instead of being methods of the "sqlite3" object, so that they can leave better error messages when the SrcList object grows too large. (check-in: [df08d472b0] user: drh branch: trunk, size: 60735) | |
2019-01-11
| ||
13:32 | [e801b38c43] part of check-in [5547f39de9] The keywords TRUE and FALSE should only act as boolean literal values if unquoted. (check-in: [5547f39de9] user: drh branch: trunk, size: 60767) | |
2018-12-15
| ||
20:59 | [8206217fe7] part of check-in [06bb80eeb8] Merge latest wal2 changes into this branch. (check-in: [06bb80eeb8] user: dan branch: begin-concurrent-wal2, size: 61190) | |
2018-12-08
| ||
00:43 | [a3c0db595b] part of check-in [af172b53b4] Allow the INTO clause of VACUUM to be a text-valued expression. (check-in: [af172b53b4] user: drh branch: vacuum-into, size: 60833) | |
2018-12-07
| ||
17:28 | [3bf1b720e7] part of check-in [036e3320a4] Prototype implementation for the VACUUM INTO command. (check-in: [036e3320a4] user: drh branch: vacuum-into, size: 60782) | |
2018-12-05
| ||
13:44 | [9281e9941d] part of check-in [47b73f6bfe] Merge enhancements from trunk, especially the enhanced sqlite3_normalized_sql() interface. (check-in: [47b73f6bfe] user: drh branch: begin-concurrent, size: 60995) | |
2018-12-04
| ||
01:18 | [c4da3ae9f0] part of check-in [6770ed0873] Attempt to make the parser a little faster by storing the ON and USING clause in a single OnUsing object. (check-in: [6770ed0873] user: drh branch: on-using-opt, size: 60622) | |
2018-12-03
| ||
01:47 | [5cf85c2b9d] part of check-in [58a51123d1] Fix a parser bug in the use of parentheses around table-valued functions. (check-in: [58a51123d1] user: drh branch: trunk, size: 60638) | |
2018-09-28
| ||
20:58 | [9e69c380ac] part of check-in [86750c927c] Merge latest trunk into this branch. (check-in: [86750c927c] user: dan branch: begin-concurrent, size: 60801) | |
2018-09-20
| ||
19:02 | [6840fe7c0b] part of check-in [ad130bb86e] Combine the Expr.pTab and Expr.pWin fields into a union named "y". Add a new EP_WinFunc property that is only true if Expr.y.pWin is a valid pointer. This reduces the size of the Expr object by 8 bytes, reduces the overall amount of code, and shaves over 1 million cycles off of the speed test. (check-in: [ad130bb86e] user: drh branch: trunk, size: 60444) | |
2018-09-19
| ||
20:14 | [96a86b7676] part of check-in [24b0f66ac6] Reduce the size of Expr to 64-bytes. This works somewhat, but there are test failures. More importantly, the size reduction from 80- to 64-bytes has not lowered the schema memory usage, but it has made the code a little bigger and a little slower. So the initial evidence is that this Expr refactoring experiment is not working... (check-in: [24b0f66ac6] user: drh branch: expr-simplify, size: 60268) | |
14:54 | [cea885dd89] part of check-in [147c61a6d4] Reduce the size of Expr from 80 to 72 bytes moving the pRight field inside the "x" union. This is an incremental check-in that still has issues. (check-in: [147c61a6d4] user: drh branch: expr-simplify, size: 60287) | |
2018-09-18
| ||
21:35 | [15eeb0ead6] part of check-in [8849a463d6] In the Expr object, the Expr.eX field determines what value is stored in the Expr.x union. This mostly works, but there are issues identified by valgrind. (check-in: [8849a463d6] user: drh branch: expr-simplify, size: 60251) | |
2018-09-06
| ||
18:56 | [4118dbf9c3] part of check-in [91aab32e71] Fix a problem with ALTER TABLE when there are views or triggers in the schema that contain "<expr> IS NULL" expressions. (check-in: [91aab32e71] user: dan branch: trunk, size: 60499) | |
2018-08-29
| ||
21:00 | [b3ca0ebaba] part of check-in [01308bae3a] Extend RENAME TABLE to edit triggers and views. Still buggy. (check-in: [01308bae3a] user: dan branch: alter-table-rename-table, size: 60478) | |
2018-08-23
| ||
18:50 | [adc9a1fb8d] part of check-in [772985f18b] The Expr.iColumn field must also be initialized in tokenExpr(). (check-in: [772985f18b] user: drh branch: alter-table-rename-column, size: 60234) | |
18:22 | [766b6f1cef] part of check-in [02a05a3b3c] Make sure the Expr.iTable field is initialized by tokenExpr(). (check-in: [02a05a3b3c] user: drh branch: alter-table-rename-column, size: 60212) | |
2018-08-21
| ||
16:32 | [0182e56ea4] part of check-in [b9ae9a0a18] Rename internal function sqlite3RenameToken() to sqlite3RenameTokenMap() and sqlite3MoveRenameToken() to sqlite3RenameTokenRemap(). (check-in: [b9ae9a0a18] user: dan branch: alter-table-rename-column, size: 60191) | |
08:29 | [d13912c969] part of check-in [479976955e] Minor changes to function tokenExpr() in order to claw back cycles lost to the rename-column change. (check-in: [479976955e] user: dan branch: alter-table-rename-column, size: 60179) | |
2018-08-15
| ||
20:28 | [57f533353a] part of check-in [e272dc2b1c] Have ALTER TABLE RENAME COLUMN edit trigger programs. Only partly working. (check-in: [e272dc2b1c] user: dan branch: edit-trigger-wrapper, size: 59947) | |
2018-08-13
| ||
17:14 | [1cdfb51796] part of check-in [5fdb6b0aaf] Edit the WHEN and UPDATE OF clauses of trigger programs as part of ALTER TABLE RENAME COLUMN. (check-in: [5fdb6b0aaf] user: dan branch: edit-trigger-wrapper, size: 59959) | |
13:43 | [035b397bf1] part of check-in [0b28dd5c2e] Fix issues with ALTER TABLE RENAME COLUMN associated with OOM errors. (check-in: [0b28dd5c2e] user: drh branch: alter-table-rename-column, size: 59967) | |
2018-08-10
| ||
14:23 | [cec1d23063] part of check-in [d48f7bbdf4] Fix a problem with renaming columns on tables with REFERENCES clauses that specify a large number of columns. (check-in: [d48f7bbdf4] user: dan branch: alter-table-rename-column, size: 59962) | |
2018-08-09
| ||
20:47 | [b981ac4656] part of check-in [fa0fc01eb4] Experimental implementation of ALTER TABLE ... RENAME COLUMN. Still buggy. (check-in: [fa0fc01eb4] user: dan branch: alter-table-rename-column, size: 59957) | |
2018-07-27
| ||
23:33 | [704c94624d] part of check-in [02204f8b24] Improvements to the parser to increase coverage. Fix the parser so that at least one expresssion is required after PARTITION BY and within the list of expressions on VALUES(). (check-in: [02204f8b24] user: drh branch: trunk, size: 59517) | |
22:14 | [a3020c881f] part of check-in [cfd1b00592] Minor grammar changes that help the parser run faster by reducing the number of NUL rule reductions. (check-in: [cfd1b00592] user: drh branch: trunk, size: 59903) | |
2018-07-12
| ||
19:28 | [70e577a1b8] part of check-in [6a00a34e19] Merge latest trunk changes into this branch. (check-in: [6a00a34e19] user: dan branch: begin-concurrent, size: 59841) | |
2018-07-10
| ||
19:48 | [3bd43415ea] part of check-in [a7cdc5bc85] Identify Select objects within a single statement using small sequential integers rather than "0x%p". This is more readable and yields the same result on successive runs. (check-in: [a7cdc5bc85] user: drh branch: trunk, size: 59484) | |
15:45 | [2578339a14] part of check-in [e9a3e8642e] Merge latest trunk changes into this branch. (check-in: [e9a3e8642e] user: dan branch: begin-concurrent, size: 60802) | |
2018-07-09
| ||
22:49 | [2eee45f4c8] part of check-in [5023b1b85b] Fixes for various harmless compiler warnings. (check-in: [5023b1b85b] user: drh branch: trunk, size: 60445) | |
16:24 | [a7e0fb377d] part of check-in [a568f9c9db] Simplification to the grammar rules for window functions. Fix a memory leak that can follow an OOM while parsing a comma-separated list of window definitions. (check-in: [a568f9c9db] user: drh branch: trunk, size: 60439) | |
2018-07-06
| ||
13:48 | [5bd226187d] part of check-in [e51fdf66a2] Prevent "UNBOUNDED FOLLOWING" from being used as the starting boundary of a window-frame. And "UNBOUNDED PRECEDING" from being used as the ending boundary. (check-in: [e51fdf66a2] user: dan branch: trunk, size: 60456) | |
07:42 | [58ea7c7b40] part of check-in [d59bcc8eea] Return an error if DISTINCT is used with a window-function (e.g. "count(DISTINCT <expr>) OVER (...)"). (check-in: [d59bcc8eea] user: dan branch: trunk, size: 60134) | |
2018-06-30
| ||
18:54 | [9b57f1d0d3] part of check-in [12d819e1c1] Have the tokenizer handle fallback for tokens "OVER" and "FILTER" in the same way as it does for "WINDOW". (check-in: [12d819e1c1] user: dan branch: weak-fallback, size: 60134) | |
2018-06-29
| ||
20:43 | [5a53ee98a8] part of check-in [5eb4776598] Further performance related tweaks for sqlite3RunParser(). (check-in: [5eb4776598] user: dan branch: weak-fallback, size: 60137) | |
17:44 | [216e0e953d] part of check-in [022079cb0d] Instead of using a lemon %fallback directive, have the tokenizer try to figure out whether an instance of "WINDOW" should be TK_WINDOW or TK_ID. (check-in: [022079cb0d] user: dan branch: weak-fallback, size: 59767) | |
2018-06-28
| ||
20:05 | [9b5eb0e61e] part of check-in [7c4b879bdb] Modifications to parse.y to better support backwards compatibility for the "window" keyword. (check-in: [7c4b879bdb] user: dan branch: weak-fallback, size: 59866) | |
03:38 | [9517b50d35] part of check-in [c41d7079fb] Introduce the concept of "weak fallback" in the parser. A weak fallback only occurs if a syntax error would result otherwise. (check-in: [c41d7079fb] user: drh branch: weak-fallback, size: 59778) | |
2018-06-22
| ||
20:51 | [4661ac1382] part of check-in [5f04b01646] Omit all window-function related code when building with SQLITE_OMIT_WINDOWFUNC. (check-in: [5f04b01646] user: dan branch: exp-window-functions, size: 59636) | |
2018-06-19
| ||
19:15 | [4350d8b794] part of check-in [6ad0e64b46] Merge latest trunk changes with this branch. (check-in: [6ad0e64b46] user: dan branch: exp-window-functions, size: 59368) | |
11:15 | [4a86c88d1b] part of check-in [320fa69e6a] Minor change to the input grammar to make the parser tables slightly smaller. (check-in: [320fa69e6a] user: drh branch: trunk, size: 56176) | |
2018-06-15
| ||
19:01 | [3b5e69c8a9] part of check-in [fadd4dc119] Fix another problem in lead()/lag(). And some errors that could occur following OOM faults. (check-in: [fadd4dc119] user: dan branch: exp-window-functions, size: 59417) | |
2018-06-08
| ||
20:58 | [788f41e755] part of check-in [19c983b511] Add support for the WINDOW clause. (check-in: [19c983b511] user: dan branch: exp-window-functions, size: 59355) | |
2018-06-06
| ||
17:03 | [161e5d8504] part of check-in [d7299bfeb1] Merge changes from trunk, including all the 3.24.0 changes plus some later enhancements. (check-in: [d7299bfeb1] user: drh branch: begin-concurrent, size: 56582) | |
2018-06-04
| ||
08:28 | [9eaa457cff] part of check-in [83d6416a86] Merge latest trunk changes into this branch. (check-in: [83d6416a86] user: dan branch: exp-window-functions, size: 58193) | |
2018-05-30
| ||
01:14 | [0b81472496] part of check-in [86ee267ee8] Fix the parser so that it builds with -DSQLITE_OMIT_CTE. (check-in: [86ee267ee8] user: drh branch: trunk, size: 56225) | |
2018-05-19
| ||
14:15 | [9ae79a4f9d] part of check-in [19c2e4b2f1] Fix minor problems on this branch. (check-in: [19c2e4b2f1] user: dan branch: exp-window-functions, size: 58140) | |
2018-05-16
| ||
20:58 | [5df899a48f] part of check-in [3781e52085] Start of experimental implementation of SQL window functions. Does not yet work. (check-in: [3781e52085] user: dan branch: exp-window-functions, size: 58093) | |
2018-05-14
| ||
17:12 | [da3ecddde4] part of check-in [32b3d11050] Experimental syntax enhancement for an "INDEXED" keyword following a FROM-clause subquery that indicates that an automatic index on that subquery is suggested. (check-in: [32b3d11050] user: drh branch: exp-indexed-clause, size: 56343) | |
2018-04-24
| ||
19:21 | [87ff3ca620] part of check-in [b27bd799ea] Merge latest trunk changes into this branch. (check-in: [b27bd799ea] user: dan branch: begin-concurrent, size: 56529) | |
2018-04-21
| ||
13:51 | [07784439d2] part of check-in [be47a6f526] Add the %extra_context directive to lemon, as an alternative to %extra_argument. Use this to improve the performance of the parser. (check-in: [be47a6f526] user: drh branch: trunk, size: 56172) | |
2018-04-19
| ||
11:45 | [1095d04ac7] part of check-in [861a2e2a48] Fix the table name aliasing on INSERT so that it occurs before the column list rather than afterwards, just as it does for PostgreSQL. Add table name aliasing to UPDATE and DELETE. (check-in: [861a2e2a48] user: drh branch: trunk, size: 56145) | |
2018-04-17
| ||
21:59 | [5419576595] part of check-in [558865d5c3] Remove unreachable branches. 100% MC/DC in TH3 now. (check-in: [558865d5c3] user: drh branch: upsert, size: 55849) | |
2018-04-16
| ||
13:26 | [06555966b1] part of check-in [810d9f63be] Remove the MySQL upsert syntax. As an optional alias to the insert table name in order to finish out PostgreSQL upsert syntax emulation. (check-in: [810d9f63be] user: drh branch: upsert, size: 55455) | |
13:00 | [22da8d0334] part of check-in [0203f34faa] Add support for the "excluded.*" names in the UPDATE clause of an upsert. (check-in: [0203f34faa] user: drh branch: upsert, size: 55383) | |
2018-04-13
| ||
13:06 | [5fde091c63] part of check-in [2c1b1987d8] Back off of the extended upsert syntax that allows multiple ON CONFLICT clauses. The syntax now is exactly as in PostgreSQL and MySQL. Add support for WHERE clauses on the conflict-target phrase, for partial indexes. (check-in: [2c1b1987d8] user: drh branch: upsert, size: 55379) | |
01:15 | [f6d42ac9ad] part of check-in [8096964340] Begin adding upsert logic. This is an incremental check-in. (check-in: [8096964340] user: drh branch: upsert, size: 55466) | |
2018-04-12
| ||
17:28 | [e2562b4d98] part of check-in [e4396c540a] Extend the upsert syntax to allow a WHERE clause on the UPDATE. (check-in: [e4396c540a] user: drh branch: upsert, size: 55465) | |
15:43 | [0345f039b4] part of check-in [c48f64d8ae] Update the upsert parsing so that it accepts conflict-target labels using the PostgreSQL syntax, and also accepts the MySQL "ON DUPLICATE KEY" syntax. (check-in: [c48f64d8ae] user: drh branch: upsert, size: 55417) | |
13:15 | [d12dad9be6] part of check-in [d83eaed539] Add the Upsert object for holding upsert clause information. (check-in: [d83eaed539] user: drh branch: upsert, size: 54953) | |
12:25 | [306ece8a7c] part of check-in [9f6f11805e] Merge changes from trunk. (check-in: [9f6f11805e] user: drh branch: upsert, size: 56103) | |
2018-04-11
| ||
17:10 | [e3c4116efb] part of check-in [d7ec7b5970] Help the parser run faster by avoiding the "explain ::= ." production. (check-in: [d7ec7b5970] user: drh branch: trunk, size: 53900) | |
2018-04-09
| ||
20:36 | [22ca6e5bb3] part of check-in [a2c443c0ee] Minor changes to the input grammar resulting in a faster and slightly smaller parser. (check-in: [a2c443c0ee] user: drh branch: trunk, size: 53899) | |
2018-04-07
| ||
15:04 | [2779b5f1a2] part of check-in [5cc2a5a315] More complete parsing of UPSERT, including UPSERT within a trigger. The sqlite3Insert() logic to actually perform the UPSERT is not yet implemented, however. (check-in: [5cc2a5a315] user: drh branch: upsert, size: 55938) | |
2018-04-06
| ||
19:36 | [b6f9277147] part of check-in [9b22905b15] Demonstration of how the parser can be augmented to recognize a PostgreSQL-style UPSERT. This check-in implements parsing only. (check-in: [9b22905b15] user: drh branch: upsert, size: 54588) | |
2018-03-28
| ||
15:41 | [a3ab90377e] part of check-in [df52e89fff] Update this branch with latest trunk changes. (check-in: [df52e89fff] user: dan branch: server-process-edition, size: 53795) | |
2018-03-20
| ||
13:52 | [5e4afc0ca1] part of check-in [b0c2f760a6] Merge all recent enhancements from trunk. (check-in: [b0c2f760a6] user: drh branch: begin-concurrent, size: 54092) | |
2018-03-19
| ||
22:28 | [140bbc53b5] part of check-in [03e541f606] Minor improvements to ".selecttrace". No changes to non-debug code. (check-in: [03e541f606] user: drh branch: trunk, size: 53735) | |
2018-03-16
| ||
19:10 | [927e287566] part of check-in [5f779ff6b4] Fix a parsing issue associated with a corrupt sqlite_master table. (check-in: [5f779ff6b4] user: mistachkin branch: corrupt-schema, size: 53896) | |
2018-03-02
| ||
17:40 | [678b3afe0d] part of check-in [36801effa9] Merge latest trunk changes into this branch. (check-in: [36801effa9] user: dan branch: begin-concurrent, size: 54115) | |
2018-02-28
| ||
04:30 | [3be4b2b5e3] part of check-in [48775ec693] Fix a potential NULL pointer deref following OOM in the new IS TRUE logic. (check-in: [48775ec693] user: drh branch: trunk, size: 53758) | |
2018-02-27
| ||
14:49 | [97b31a676e] part of check-in [6445519e91] Clean up comments and variable names prior to merge. (check-in: [6445519e91] user: drh branch: is-true-operator, size: 53739) | |
2018-02-26
| ||
21:26 | [b875c74b72] part of check-in [57508518ef] Code simplifications. New test cases. (check-in: [57508518ef] user: drh branch: is-true-operator, size: 53741) | |
20:15 | [6319911fb7] part of check-in [8002f87d96] Get the "DEFAULT true" and "DEFAULT false" phrases working correctly in CREATE TABLE. (check-in: [8002f87d96] user: drh branch: is-true-operator, size: 53727) | |
2018-01-10
| ||
00:40 | [4e750e1b26] part of check-in [36b89d728f] Compute the correct column name even if the column identifier is the very last token in the SQL statement. This fixes a problem introduced by check-in [0fdf97efe5df745510c6b] and reported by the community during beta-testing. (check-in: [36b89d728f] user: drh branch: trunk, size: 53645) | |
2017-12-27
| ||
20:38 | [44cbbc3e13] part of check-in [fe3d2b97d8] Show the text of individual statements within a trigger, as they execute, as comments in the output from sqlite3_trace() and sqlite3_trace_v2(). (check-in: [fe3d2b97d8] user: drh branch: span-refactor, size: 53630) | |
2017-12-24
| ||
17:01 | [2b0653fd44] part of check-in [74a0181fc0] Grammar changes: the sclp non-terminal should always be followed by a scanpt. (check-in: [74a0181fc0] user: drh branch: span-refactor, size: 53584) | |
00:18 | [1e29222ba0] part of check-in [3eab7bdc44] Remove the ExprSpan object. Instead, keep track of the test of subphrases in the parse using the "scanpt" non-terminal. (check-in: [3eab7bdc44] user: drh branch: span-refactor, size: 53577) | |
2017-11-14
| ||
23:48 | [d79001da27] part of check-in [3925facd94] In the parse tree, combine LIMIT and OFFSET into a single expression rooted on a TK_LIMIT node, for a small code size reduction and performance increase, and a reduction in code complexity. (check-in: [3925facd94] user: drh branch: trunk, size: 56309) | |
20:06 | [839e06142f] part of check-in [d90e5f346b] Merge changes from trunk. This fixes the SQLITE_ENABLE_UPDATE_DELETE_LIMIT functionality so that it works with views and WITHOUT ROWID tables. (check-in: [d90e5f346b] user: dan branch: begin-concurrent, size: 57062) | |
18:26 | [69d085edcf] part of check-in [b2679d3b7a] Fix the SQLITE_ENABLE_UPDATE_DELETE_LIMIT functionality so that it works with views and WITHOUT ROWID tables. This is a modified cherrypick of [dae4a97a]. (check-in: [b2679d3b7a] user: dan branch: branch-3.8.9, size: 52866) | |
2017-11-10
| ||
20:13 | [f5f02ef394] part of check-in [72be33f9c8] Omit some extra code from non-SQLITE_ENABLE_UPDATE_DELETE_LIMIT builds. (check-in: [72be33f9c8] user: dan branch: update-delete-limit-fix, size: 56732) | |
15:42 | [49eb13a590] part of check-in [35477a3dcc] Fix a problem with (DELETE...LIMIT) statements against WITHOUT ROWID tables with a single column PK. (check-in: [35477a3dcc] user: dan branch: update-delete-limit-fix, size: 56730) | |
2017-11-09
| ||
19:53 | [5fbc16a4ad] part of check-in [584b88aaf8] Add SQLITE_ENABLE_UPDATE_DELETE_LIMIT for views and WITHOUT ROWID tables. (check-in: [584b88aaf8] user: dan branch: update-delete-limit-fix, size: 56816) | |
2017-09-22
| ||
20:18 | [6fa01cadb6] part of check-in [8d2a1cca61] Merge in all the trunk enhancements of the previous 7 months. The LIKE optimization has stopped working when there is an ESCAPE - that problem will be addressed in a subsequent check-in. (check-in: [8d2a1cca61] user: drh branch: est_count_pragma, size: 57304) | |
2017-08-11
| ||
19:16 | [bcd8c5d944] part of check-in [47e716952d] Merge the latest enhancements from trunk. (check-in: [47e716952d] user: drh branch: begin-concurrent, size: 57153) | |
2017-08-07
| ||
14:15 | [58a2de13e8] part of check-in [17bc7ded07] Update this branch with latest trunk changes. (check-in: [17bc7ded07] user: dan branch: server-process-edition, size: 56883) | |
2017-08-02
| ||
11:04 | [52ef3cecd0] part of check-in [1cad2926ad] Rearrange integer token values in the parser and logic in the resolveP2Values() routine for a small size reduction and performance increase. (check-in: [1cad2926ad] user: drh branch: trunk, size: 56823) | |
2017-07-20
| ||
17:47 | [e4dbcc6136] part of check-in [213c61cb82] Merge all the latest trunk enhancements. (check-in: [213c61cb82] user: drh branch: begin-concurrent, size: 56423) | |
2017-07-19
| ||
18:54 | [3a1babd664] part of check-in [be0df0a65f] Merge latest trunk changes with this branch. (check-in: [be0df0a65f] user: dan branch: server-process-edition, size: 56153) | |
2017-07-12
| ||
17:26 | [e384cb73f9] part of check-in [f951c8b71b] Remove unnecessary EP_Leaf settings on the Expr object. (check-in: [f951c8b71b] user: drh branch: trunk, size: 56093) | |
17:08 | [213fda2ad8] part of check-in [54f55d3b79] The EP_Resolved flag on the Expr object is not required for correctness nor performance, so remove it. (check-in: [54f55d3b79] user: drh branch: trunk, size: 56198) | |
2017-07-08
| ||
20:46 | [f732ca9ef4] part of check-in [5a043aa8dd] Support read-only MVCC transactions in server-mode. Started using "BEGIN READONLY". (check-in: [5a043aa8dd] user: dan branch: server-process-edition, size: 56270) | |
2017-07-06
| ||
01:28 | [71bf06b02f] part of check-in [4da663d986] Slightly more compact implementation of the byte-code generator for the COMMIT and ROLLBACK commands. (check-in: [4da663d986] user: drh branch: trunk, size: 56210) | |
2017-06-28
| ||
14:26 | [b13c9fc83c] part of check-in [cc4810b23e] Minor tweak to the SQL grammar to make the parser tables a few bytes smaller. (check-in: [cc4810b23e] user: drh branch: trunk, size: 56271) | |
2017-05-15
| ||
17:34 | [21660e5224] part of check-in [14ea840036] Merge the latest changes from trunk. (check-in: [14ea840036] user: drh branch: begin-concurrent, size: 56636) | |
2017-04-14
| ||
19:03 | [0513387ce0] part of check-in [3a5860d86f] Add the TK_IF_NULL_ROW opcode to deal with non-NULL result columns in the result set of a view or subquery on the RHS of a LEFT JOIN that gets flattened. (check-in: [3a5860d86f] user: drh branch: left-join-view, size: 56306) | |
2017-03-24
| ||
15:09 | [f48aeacb59] part of check-in [fd5676fe7f] Merge all recent enhancements from trunk. (check-in: [fd5676fe7f] user: drh branch: begin-concurrent, size: 56627) | |
2017-03-07
| ||
03:25 | [48b0311370] part of check-in [1a3554e1d7] Small size reduction and performance increase in the name resolver routine for expressions. (check-in: [1a3554e1d7] user: drh branch: trunk, size: 56306) | |
2017-02-20
| ||
14:30 | [af8830094f] part of check-in [0d8a868acd] Small grammar simplification. (check-in: [0d8a868acd] user: drh branch: trunk, size: 56294) | |
2017-02-17
| ||
16:26 | [d5695ae488] part of check-in [e93db23731] Add the "PRAGMA analyze_as_needed" command. (check-in: [e93db23731] user: drh branch: auto-analyze, size: 56329) | |
2017-02-16
| ||
14:02 | [26827d624d] part of check-in [325ccfa95e] Merge recent enhancements from trunk. (check-in: [325ccfa95e] user: drh branch: est_count_pragma, size: 56804) | |
2017-01-28
| ||
20:46 | [591704fce8] part of check-in [4fe879d4b5] In the amalgamation, allocate the parser engine object from stack rather than from heap, for improved performance. This only happens in the amalgamation, since otherwise the sqlite3RunParser() routine does not know the object size. (check-in: [4fe879d4b5] user: drh branch: trunk, size: 56323) | |
2017-01-09
| ||
06:33 | [bb387a078f] part of check-in [d0e212d08f] Upgrade this branch to 3.16 plus the various fixes that appeared after its release. (check-in: [d0e212d08f] user: dan branch: begin-concurrent, size: 56129) | |
2016-12-12
| ||
12:58 | [5280d00e80] part of check-in [dc006e08b8] Merge recent enhancements from trunk. (check-in: [dc006e08b8] user: drh branch: est_count_pragma, size: 56289) | |
2016-12-06
| ||
22:47 | [29153738a7] part of check-in [2a81763e68] Performance improvement and size reduction in the Expr node allocator function sqlite3PExpr(). (check-in: [2a81763e68] user: drh branch: trunk, size: 55808) | |
2016-10-20
| ||
18:20 | [07f68096c9] part of check-in [fd81d8a430] Add the ability for the PRAGMA statement to accept multiple arguments. Currently all arguments other than the first are ignored. (check-in: [fd81d8a430] user: drh branch: multi-arg-pragma, size: 56278) | |
2016-10-03
| ||
15:28 | [0338f906b6] part of check-in [d15ae2e530] Avoid unnecessary strlen() calls in sqlite3ExprAssignVarNumber() by passing in the token length from the parser. (check-in: [d15ae2e530] user: drh branch: trunk, size: 55797) | |
2016-09-26
| ||
12:38 | [6ad22b8f4a] part of check-in [fe89225eab] Inline the relevent parts of sqlite3ExprAlloc() into spanExpr(), for a performance improvement. (check-in: [fe89225eab] user: drh branch: trunk, size: 55777) | |
2016-09-24
| ||
17:42 | [b556d432d8] part of check-in [795454a3fa] Omit the LikeOp object from the parser. Change more sqlite3PExpr() calls into sqlite3ExprAlloc() calls. (check-in: [795454a3fa] user: drh branch: trunk, size: 55221) | |
2016-09-23
| ||
21:36 | [028b531b44] part of check-in [8a6ea455cd] Add the EP_Leaf flag bit to the Expr.flags field to indicate Expr nodes that do not have substructure. Use that bit to avoid unnecessary recursion. (check-in: [8a6ea455cd] user: drh branch: trunk, size: 55499) | |
20:59 | [2e0ac10d15] part of check-in [afac0709ce] Use sqlite3ExprAlloc() instead of sqlite3PExpr() for leaf nodes in the expression tree, where appropriate. This is both smaller and faster. (check-in: [afac0709ce] user: drh branch: trunk, size: 55446) | |
2016-08-20
| ||
18:06 | [0e0b6d46a9] part of check-in [9041ee4a6f] Fixes for problems following OOM errors. (check-in: [9041ee4a6f] user: drh branch: rowvalue, size: 55441) | |
00:51 | [9895eddbbb] part of check-in [f320d47d6b] Add support for vector assignments in the SET clause of an UPDATE statement. (check-in: [f320d47d6b] user: drh branch: rowvalue, size: 55360) | |
2016-08-19
| ||
15:41 | [3d02d64f33] part of check-in [b17872363b] Merge recent enhancements from trunk. (check-in: [b17872363b] user: drh branch: rowvalue, size: 55133) | |
14:20 | [ed6990c2d4] part of check-in [29d63059b4] Add the capability to VACUUM an attached database by specifying the schema name as an argument to the VACUUM command. Since version 2.0, VACUUM has accepted an argument which was silently ignored. Now it has meaning. (check-in: [29d63059b4] user: drh branch: vacuum-attached-db, size: 54909) | |
2016-08-18
| ||
15:36 | [d240b1518f] part of check-in [b40b202c1f] Since the TK_VECTOR token is not actually used by the parser, make it an extra token code added by the tool/addopcodes.tcl script during parser build. (check-in: [b40b202c1f] user: drh branch: rowvalue, size: 55128) | |
2016-08-11
| ||
19:12 | [e87265f235] part of check-in [d9f8918c5b] Merge version 3.14 plus some subsequent patches (including the page-cache performance patch) from trunk. (check-in: [d9f8918c5b] user: drh branch: begin-concurrent, size: 55225) | |
2016-07-26
| ||
18:15 | [a7402dff6f] part of check-in [d4f3d52c5a] Merge latest trunk changes into this branch. (check-in: [d4f3d52c5a] user: dan branch: rowvalue, size: 55143) | |
2016-07-25
| ||
14:40 | [99b676e6fc] part of check-in [38a48cfb9a] Add a new %ifdef to parse.y so that the build works with SQLITE_OMIT_SUBQUERY. (check-in: [38a48cfb9a] user: drh branch: trunk, size: 54904) | |
2016-07-09
| ||
20:23 | [fa040d742f] part of check-in [b2204215b2] Add some support for using row value constructors in certain parts of SQL expressions. There are many bugs on this branch. (check-in: [b2204215b2] user: dan branch: rowvalue, size: 55087) | |
2016-07-02
| ||
12:33 | [f374ab2010] part of check-in [bead151e72] Fix a problem in table-valued functions on the RHS of an IN operator that occurs following an OOM error. (check-in: [bead151e72] user: drh branch: trunk, size: 54848) | |
12:08 | [3660ab75e7] part of check-in [ac6000f050] Add support for table-valued functions on the RHS of an IN operator. (check-in: [ac6000f050] user: drh branch: trunk, size: 54833) | |
2016-06-29
| ||
06:19 | [300a30380b] part of check-in [ba1b441b60] Add the ability to have a table-valued function on the RHS of an IN operator. (check-in: [ba1b441b60] user: drh branch: prototype-int-array, size: 54918) | |
2016-05-31
| ||
21:18 | [01b9f37c4c] part of check-in [49638f180e] An experimental branch with code that allows virtual tables to be declared as WITHOUT ROWID tables. This might be useful for virtual tables that model external data sources that do not have a convenient way of computing a unique rowid. The current check-in almost works, but there are still serious issues. (check-in: [49638f180e] user: drh branch: without-rowid-vtab, size: 54484) | |
2016-04-20
| ||
12:16 | [2e1d371f99] part of check-in [1f709fbf93] Merge all recent enhancements from trunk. (check-in: [1f709fbf93] user: drh branch: begin-concurrent, size: 54662) | |
2016-04-11
| ||
13:36 | [10eb2f3fb6] part of check-in [099478fa75] Remove the VdbeOp.opflags field and its associated initialization overhead. Update mkopcodeh.tcl to reorder opcode numbers to help the resolveP2Values() routine run faster. (check-in: [099478fa75] user: drh branch: trunk, size: 54341) | |
01:43 | [52cdeb4f37] part of check-in [ef1966c246] Back off of the parser optimization in the previous check-in, slightly, to preserve some backwards compatibility regarding some undocumented behavior in the '#AAA' style query parameter. (check-in: [ef1966c246] user: drh branch: trunk, size: 54340) | |
01:26 | [55670f9b80] part of check-in [16df71284b] Small size reduction and performance improvement in the parser. (check-in: [16df71284b] user: drh branch: trunk, size: 54311) | |
01:06 | [b6fcbc84ea] part of check-in [6a5cceee48] Factor out the common operation of setting the Expr.x.pSelect field of an Expr object into a subroutine. (check-in: [6a5cceee48] user: drh branch: trunk, size: 54323) | |
2016-03-17
| ||
18:41 | [fc4d11e4f5] part of check-in [41335d8800] An alternative method of encoding the wildcard in "SELECT *". This is an experiment. (check-in: [41335d8800] user: drh branch: select-wildcard, size: 54961) | |
2016-03-16
| ||
19:34 | [a74adac187] part of check-in [a7978ab6d2] Merge the latest enhancements from trunk. (check-in: [a7978ab6d2] user: drh branch: begin-concurrent, size: 55265) | |
2016-02-29
| ||
13:37 | [5ea8c81c5c] part of check-in [519fd03b84] Further simplifications to the grammar. (check-in: [519fd03b84] user: drh branch: schema-storage, size: 54966) | |
2016-02-27
| ||
23:25 | [3a29fc2916] part of check-in [ad3ffe2eec] Update the parser so that it pulls out the column name and type all in one go, rather than using separate reductions. (check-in: [ad3ffe2eec] user: drh branch: schema-storage, size: 55212) | |
2016-02-17
| ||
12:34 | [c3ce2c4a7c] part of check-in [417e777701] More agressive use of /*A-overwrites-X*/ in the parser. Fix an off-by-one error in parser stack overflow detection. (check-in: [417e777701] user: drh branch: parser-performance, size: 55249) | |
04:33 | [8c2f7e7e12] part of check-in [5cfe9545d4] Enhance Lemon so that if reduce code contains a comment of the form "/*A-overwrites-X*/" then a LHS label A is allowed to overwrite the RHS label X. (check-in: [5cfe9545d4] user: drh branch: parser-performance, size: 55023) | |
01:46 | [b845cfc4ba] part of check-in [ef95a7d649] Further improvements to the Lemon-generated code for yy_reduce(). (check-in: [ef95a7d649] user: drh branch: parser-performance, size: 54724) | |
01:18 | [eb7d241ca2] part of check-in [4bb94c7c4c] In Lemon, add the ability for the left-most RHS label to be the same as the LHS label, causing the LHS values to be written directly into the stack. (check-in: [4bb94c7c4c] user: drh branch: parser-performance, size: 54736) | |
2016-02-16
| ||
21:19 | [36a367a623] part of check-in [a65d583ce9] Experimental changes to Lemon for improved parser performance. (check-in: [a65d583ce9] user: drh branch: parser-performance, size: 55461) | |
2016-02-05
| ||
14:34 | [2d29daf0c0] part of check-in [332c8036ca] Merge PRAGMA synchronous=EXTRA and OOM performance enhancements from trunk. (check-in: [332c8036ca] user: drh branch: begin-concurrent, size: 55864) | |
01:55 | [d7bff41d46] part of check-in [c3ef03478a] Improvements to the way that OOM errors are processed. (check-in: [c3ef03478a] user: drh branch: oom-handling, size: 55528) | |
2016-02-02
| ||
02:53 | [e6a091aeae] part of check-in [347f6a80c2] Merge recent enhancements from trunk. (check-in: [347f6a80c2] user: drh branch: begin-concurrent, size: 55660) | |
2016-01-28
| ||
18:22 | [426a91fbbb] part of check-in [5372f80083] Modify the order of terms in an "if" condition to avoid implicitly comparing a dangling pointer to NULL following an OOM error. (check-in: [5372f80083] user: dan branch: trunk, size: 55324) | |
2016-01-14
| ||
15:46 | [2a2b07ab26] part of check-in [fccc5f20c3] Merge the latest enhancements and fixes from trunk. (check-in: [fccc5f20c3] user: dan branch: begin-concurrent, size: 55660) | |
2016-01-07
| ||
17:09 | [caad1e98ed] part of check-in [828958ff77] Small performance and size optimization spotted while working on the shared-cache problem. (check-in: [828958ff77] user: drh branch: trunk, size: 55324) | |
2015-11-20
| ||
13:49 | [b0ad024157] part of check-in [41c8b8e39b] Merge all the latest enhancements and fixes from trunk. (check-in: [41c8b8e39b] user: drh branch: begin-concurrent, size: 55722) | |
2015-11-19
| ||
16:33 | [23737e649c] part of check-in [201ac6d449] Create the new TK_ASTERISK token to represent the "*" in "SELECT *". Formerly that operator was TK_ALL, which was also used for UNION ALL. Less confusion if they operator symbols are distinct. (check-in: [201ac6d449] user: drh branch: trunk, size: 55386) | |
2015-11-12
| ||
15:04 | [aad5cc866d] part of check-in [f84e3085c8] Fix a #define in parse.y that disabled unused code in the generated parser. (check-in: [f84e3085c8] user: drh branch: trunk, size: 55371) | |
2015-11-10
| ||
13:45 | [8a364a7a69] part of check-in [5dcd212bf6] Save a few bytes in the parser by using "int" instead of "u8" or "u16" for all small integer types. (check-in: [5dcd212bf6] user: drh branch: trunk, size: 55369) | |
00:02 | [56cd095d66] part of check-in [3c37c52288] Remove an unused non-terminal from the grammar. (check-in: [3c37c52288] user: drh branch: parser-enhancements, size: 55370) | |
2015-11-09
| ||
19:33 | [89784cfb2a] part of check-in [0a72991f4e] Change the parser to use the standard "lempar.c" template over in the tool/ folder rather than the customized "lempar.c" found in src/. (check-in: [0a72991f4e] user: drh branch: parser-enhancements, size: 55390) | |
2015-10-30
| ||
17:17 | [764d5b40e8] part of check-in [f2cde4cfc5] Merge the sqlite3_db_cacheflush() enhancements and other changes from trunk. (check-in: [f2cde4cfc5] user: drh branch: begin-concurrent, size: 55446) | |
2015-10-28
| ||
16:05 | [11078cd8e3] part of check-in [0018541816] Factor out adding NOT expression nodes in the parser into a subroutine. (check-in: [0018541816] user: drh branch: trunk, size: 55110) | |
2015-09-07
| ||
18:23 | [9e1777c68d] part of check-in [531c3974b3] For the Lemon-generated parser, add a new action type SHIFTREDUCE and use it to further compress the parser tables and improve parser performance. (check-in: [531c3974b3] user: drh branch: lemon-update, size: 55060) | |
2015-09-04
| ||
16:39 | [0dcce0ae4e] part of check-in [c0bf92eca4] Remove the EXCLUSIVE and CONCURRENT tokens from the tokenizer. Let the BEGIN statement be followed by an ID, but throw a syntax error if the ID is anything other than EXCLUSIVE or CONCURRENT. (check-in: [c0bf92eca4] user: drh branch: begin-concurrent, size: 55404) | |
2015-08-25
| ||
11:16 | [1e645cacb9] part of check-in [3e7d6dd62d] Merge latest trunk changes with this branch. (check-in: [3e7d6dd62d] user: dan branch: begin-concurrent, size: 55111) | |
2015-08-24
| ||
20:21 | [f599aa5e87] part of check-in [bed42116ad] Enhances the parser so that it accepts arbitrary expressions for the arguments of an index, though the code generator still rejects everything other than simple column names. The sqlite3RestrictColumnListSyntax() routine is removed since that feature is now handled by the parser. (check-in: [bed42116ad] user: drh branch: trunk, size: 55068) | |
19:56 | [dc3dda4b19] part of check-in [ba1ab858e2] Change "BEGIN UNLOCKED" to "BEGIN CONCURRENT". (check-in: [ba1ab858e2] user: dan branch: begin-concurrent, size: 53751) | |
17:42 | [07f2084f9e] part of check-in [d794b34da6] Enhance the CREATE VIEW syntax so that the names of columns of the view can be specified after the view name. (check-in: [d794b34da6] user: drh branch: trunk, size: 53667) | |
15:39 | [b5e0a5f8bb] part of check-in [83cbc4d876] Disallow the use of COLLATE clauses and the ASC and DESC keywords within foreign key constraints and in the argument list to common table expressions. (check-in: [83cbc4d876] user: drh branch: trunk, size: 53667) | |
2015-08-21
| ||
16:22 | [e9accdb2cb] part of check-in [deaf3b1856] Merge trunk changes with this branch. (check-in: [deaf3b1856] user: dan branch: begin-concurrent, size: 53749) | |
2015-08-19
| ||
17:11 | [ad9af8552f] part of check-in [40e12cfe4c] A list of arguments following a table name translates into equality constraints against hidden columns in that table. (check-in: [40e12cfe4c] user: drh branch: table-valued-functions, size: 53708) | |
15:20 | [2ed6efe32e] part of check-in [b919376147] Minor refactor of the SrcList object so that it is able to hold the argument list to a table-valued-function in the FROM clause. (check-in: [b919376147] user: drh branch: table-valued-functions, size: 53491) | |
2015-07-27
| ||
19:31 | [199145cd98] part of check-in [8079421604] Add an experimental "BEGIN UNLOCKED" command. (check-in: [8079421604] user: dan branch: begin-concurrent, size: 53529) | |
2015-06-13
| ||
11:48 | [d3388f709c] part of check-in [0be4478209] Add the IS DISTINCT FROM and IS NOT DISTINCT FROM operators. (check-in: [0be4478209] user: drh branch: is-distinct-from, size: 53876) | |
2015-05-29
| ||
01:35 | [6d60dda8f8] part of check-in [a29e117d7e] Using "SELECT ALL" instead of just "SELECT" on a query that uses a single unflattenable subquery or view in its FROM clause will force the subquery to be manifested into a temporary table rather than run incrementally using a co-routine. This is a stop-gap means of controlling the decision to manifest while we try to work out a better to make that decision automatically. (check-in: [a29e117d7e] user: drh branch: trunk, size: 53488) | |
2015-05-27
| ||
13:06 | [44e1605840] part of check-in [0055df0445] CTEs have never had working rowids. So disallow the use of the "rowid" column within CTEs. (check-in: [0055df0445] user: drh branch: no-rowid-in-cte, size: 53470) | |
2015-05-20
| ||
19:34 | [ce1a34cdcc] part of check-in [fc1a4f293c] Fix a problem causing collation sequence names to be dequoted multiple times under some circumstances. Cherrypick of [eddc05e7bb31]. (check-in: [fc1a4f293c] user: dan branch: branch-3.8.6, size: 51925) | |
00:15 | [af55d4fb5e] part of check-in [c403502cdc] Fix handling of queries with VALUES on the left and UNION ALL SELECT on the right and a LIMIT clause. (check-in: [c403502cdc] user: drh branch: trunk, size: 53450) | |
2015-04-16
| ||
23:04 | [c4e0387bc8] part of check-in [cd6598f474] Restrict the scope of a local-use function in the parser. (check-in: [cd6598f474] user: drh branch: trunk, size: 53367) | |
20:27 | [5944031bd7] part of check-in [8f391dffcf] Fix a couple of unreachable branches. (check-in: [8f391dffcf] user: drh branch: trunk, size: 53360) | |
14:13 | [b5c16bc5aa] part of check-in [ec5a493ad2] Improvements to the way VALUES clauses are parsed. (check-in: [ec5a493ad2] user: drh branch: trunk, size: 53352) | |
2015-03-20
| ||
08:43 | [1299c66e7b] part of check-in [eddc05e7bb] Fix a problem causing collation sequence names to be dequoted multiple times under some circumstances. (check-in: [eddc05e7bb] user: dan branch: trunk, size: 52957) | |
2015-02-09
| ||
16:09 | [0f8e7d60f0] part of check-in [c053448a55] Propagate the COLLATE operator upward through function calls. Initial fix for ticket [ca0d20b6cdddec5e8]. (check-in: [c053448a55] user: drh branch: tkt-2f7170d7, size: 52948) | |
15:21 | [d650737151] part of check-in [0b7d65e3fd] Disable the query flattener for aggregate subqueries if the parent query uses other subqueries in its result set or WHERE clause or ORDER BY clause. Preliminary fix for ticket [2f7170d73bf9abf8]. However it still contains a defect similar to the COLLATE problem of [ca0d20b6cddd]. (check-in: [0b7d65e3fd] user: drh branch: tkt-2f7170d7, size: 52900) | |
2015-01-05
| ||
19:16 | [c5d0d964f9] part of check-in [9ce9e43af3] Handle compound-select statements originating from VALUES clauses as a special case that does not use recursion. (check-in: [9ce9e43af3] user: drh branch: many-VALUEs, size: 52852) | |
16:27 | [075cad65e0] part of check-in [c9d65f739a] Towards getting INSERT statements to except many VALUE terms (more than the limit imposed by SQLITE_LIMIT_COMPOUND_SELECT). This check-in segfaults on a stack overflow. And it is slow. (check-in: [c9d65f739a] user: drh branch: many-VALUEs, size: 52745) | |
2014-10-02
| ||
21:52 | [5dfead8aed] part of check-in [ffe7573636] Avoid a NULL pointer deference when processing the IS operator if the right-hand side is an illegal "#ID" style variable. Fix for ticket [8c32a33a53092c85a15b] (check-in: [ffe7573636] user: drh branch: trunk, size: 52705) | |
2014-09-30
| ||
12:33 | [ce14943085] part of check-in [4ff51325d6] Remove the SQLITE_ENABLE_TREE_EXPLAIN compile-time option. Add alternative debugging display routines: sqlite3TreeViewExpr(), sqlite3TreeViewExprList(), and sqlite3TreeViewSelect(). (check-in: [4ff51325d6] user: drh branch: trunk, size: 52716) | |
2014-09-21
| ||
00:27 | [b98772da2b] part of check-in [c0b61f7092] Improved ".selecttrace" output. (check-in: [c0b61f7092] user: drh branch: select-trace, size: 52835) | |
2014-09-20
| ||
18:18 | [1976d28f16] part of check-in [cbe0cf9ddf] Enable SELECT query planning tracing when compiled with SQLITE_ENABLE_SELECTTRACE and either SQLITE_DEBUG or SQLITE_TEST. (check-in: [cbe0cf9ddf] user: drh branch: select-trace, size: 52841) | |
2014-05-06
| ||
15:28 | [b9adfa13ce] part of check-in [8ad0a123a2] Experimental changes that reduce the size of Expr objects from 72 to 64 bytes each on x64 and from 48 to 44 bytes each on x32. (check-in: [8ad0a123a2] user: drh branch: smaller-expr, size: 52085) | |
2014-03-20
| ||
19:04 | [22d6a074e5] part of check-in [d5a1530bdc] Remove a testcase() that is now always true due to the "x IN (?)" optimization. Add an ALWAYS() around a conditional in the parser that cannot be false. (check-in: [d5a1530bdc] user: drh branch: trunk, size: 51916) | |
17:03 | [fb3280d85a] part of check-in [2ea4a9f75f] The "x IN (?)" optimization in check-ins [2ff3b25f40] and [e68b427afb] is incorrect, as demonstrated by the in4-5.1 test case in this check-in. The "COLLATE binary" that was being added to the RHS of IN was overriding the implicit collating sequence of the LHS. This change defines the EP_Generic expression node property that blocks all affinity or collating sequence information in the expression subtree and adds that property to the expression taken from RHS of the IN operator. (check-in: [2ea4a9f75f] user: drh branch: trunk, size: 51760) | |
15:14 | [d210754574] part of check-in [b1435f26b0] Fix harmless compiler warnings. (check-in: [b1435f26b0] user: drh branch: trunk, size: 51473) | |
14:56 | [c9189eca08] part of check-in [2ff3b25f40] Previous check-in is not quite correct. "x IN (?)" is not exactly the same as "x==?" do to collation and affinity issues. The correct converstion should be to "x==(+? COLLATE binary)". The current check-in fixes this problem and provides test cases. Ticket [e39d032577df69] (check-in: [2ff3b25f40] user: drh branch: trunk, size: 51524) | |
13:26 | [52d749e7fd] part of check-in [e68b427afb] Convert expressions of the form "X IN (?)" with exactly one value on the RHS of the IN into equality tests: "X=?". Add test cases to verify that statements work correctly on this corner case. Fix for ticket [e39d032577df6942]. (check-in: [e68b427afb] user: drh branch: trunk, size: 51333) | |
2014-02-19
| ||
01:31 | [2613ca5d60] part of check-in [85b355cfb4] Make sure a multi-row VALUES clause works correctly in a compound SELECT. (check-in: [85b355cfb4] user: drh branch: trunk, size: 50879) | |
2014-02-09
| ||
18:02 | [cce844ccb8] part of check-in [67bfd59d90] Use the WITH clause to help resolve names for SELECT statements on the left of a compound query. Proposed fix for ticket [31a19d11b97088296a]. (check-in: [67bfd59d90] user: drh branch: trunk, size: 50640) | |
2014-01-22
| ||
18:31 | [bd51bc17cb] part of check-in [dea2ca6a15] Fix harmless compiler warnings. (check-in: [dea2ca6a15] user: drh branch: trunk, size: 50210) | |
2014-01-17
| ||
14:59 | [475896cb88] part of check-in [6a549187ed] Fix some problems to do with WITH clauses and name resolution. (check-in: [6a549187ed] user: dan branch: common-table-expr, size: 50207) | |
2014-01-15
| ||
14:17 | [824eeb752c] part of check-in [9472f6d820] Disable the flattening optimization if the sub-query is a recursive CTE. (check-in: [9472f6d820] user: dan branch: common-table-expr, size: 50187) | |
2014-01-13
| ||
16:36 | [e5c4a23f44] part of check-in [8839850c44] Fix some memory leaks and crashes that could follow an OOM condition during WITH clause parsing. (check-in: [8839850c44] user: dan branch: common-table-expr, size: 50154) | |
15:12 | [b433588d79] part of check-in [a26f399ba4] Add code to handle non-recursive CTEs in the same way as SQL views. (check-in: [a26f399ba4] user: dan branch: common-table-expr, size: 50091) | |
2014-01-11
| ||
19:19 | [1e3fd22fc8] part of check-in [704d3931b8] Update the parser so that sub-queries and CTEs may have WITH clauses. (check-in: [704d3931b8] user: dan branch: common-table-expr, size: 49867) | |
13:22 | [0ccd364dd3] part of check-in [da98b7205e] Parse common table expressions. But do not do anything with them (yet). (check-in: [da98b7205e] user: drh branch: common-table-expr, size: 49563) | |
03:54 | [3c5384533a] part of check-in [cb5d1f83e0] Optimizations to the SQL language grammar that result in a small size reduction and speed increase. (check-in: [cb5d1f83e0] user: drh branch: trunk, size: 49197) | |
2014-01-10
| ||
20:51 | [60baa3aced] part of check-in [7f1e7ae313] Remove unused structure definition from parse.y. (check-in: [7f1e7ae313] user: drh branch: trunk, size: 49253) | |
20:46 | [0a284e3f2b] part of check-in [c9ea7d199f] Allow a VALUES clause to be used any place that a SELECT statement can be used. (check-in: [c9ea7d199f] user: drh branch: trunk, size: 49349) | |
2014-01-06
| ||
18:32 | [201902e23b] part of check-in [4365ddd62d] Start a new experimental branch for support of Oracle-style CONNECT BY syntax. (check-in: [4365ddd62d] user: drh branch: connect-by, size: 51591) | |
2013-11-21
| ||
14:44 | [acee1a9958] part of check-in [9b4217f055] Remove the obsolete TK_CONST_FUNC token type. (check-in: [9b4217f055] user: drh branch: trunk, size: 50674) | |
2013-10-21
| ||
23:55 | [eb49c2c79b] part of check-in [4e69dd5f9b] Minor refactoring of the PRIMARY KEY parsing logic to facilitate enhancements. (check-in: [4e69dd5f9b] user: drh branch: omit-rowid, size: 50702) | |
02:14 | [073a8294e1] part of check-in [131cc6e152] Simplification of the syntax: Merely append "WITHOUT rowid" to the end of the table definition. (check-in: [131cc6e152] user: drh branch: omit-rowid, size: 50850) | |
2013-10-19
| ||
23:31 | [909868a9a6] part of check-in [0248ec5e6e] Experimental changes toward "index only" tables. Add the ability to specify options on CREATE TABLE statements using the WITH clause modeled after PostgreSQL and SQL Server. Only the "omit_rowid" option is currently recognized and that option is currently a no-op. (check-in: [0248ec5e6e] user: drh branch: omit-rowid, size: 50719) | |
2013-09-12
| ||
16:50 | [a97566d6da] part of check-in [579a512538] Increase the number of bits available in Expr.flags. Other tweaks aimed at making expression processing more robust. (check-in: [579a512538] user: drh branch: expr-tuning, size: 50581) | |
2013-08-05
| ||
22:05 | [27c6b41384] part of check-in [c589b2fed7] Performance optimization: Avoid calling convertCompoundSelecctToSubquery() on queries that do not use the UNION, EXCEPT, or INTERSECT operators. (check-in: [c589b2fed7] user: drh branch: trunk, size: 50503) | |
2013-08-01
| ||
03:36 | [599bc6338f] part of check-in [6b73ae7c12] Test cases and bug fixes for the partial index logic. (check-in: [6b73ae7c12] user: drh branch: partial-indices, size: 50458) | |
2013-07-31
| ||
18:12 | [a950b48d43] part of check-in [6794b2dcb4] Here begins an experimental branch for exploring the idea of a partial index. This check-in is able to parse a WHERE clause on a CREATE INDEX statement, but does not actually do anythingn with that WHERE clause yet. (check-in: [6794b2dcb4] user: drh branch: partial-indices, size: 50521) | |
2013-05-28
| ||
12:11 | [9acfcc83dd] part of check-in [a0d5cc9315] Many small harmless comment changes. Removal of obsolete comments and fixing misspelled words. No changes to code. (check-in: [a0d5cc9315] user: drh branch: trunk, size: 50449) | |
2013-04-30
| ||
14:06 | [9708365594] part of check-in [1c79569226] Make sure extra parentheses around subqueries in the FROM clause are harmless. Ticket [28c6e830f239ea5]. (check-in: [1c79569226] user: drh branch: trunk, size: 50448) | |
2012-12-18
| ||
19:36 | [5d5e127728] part of check-in [7fecced466] Optimize the degenerate case of a FROM clause table name enclosed all by itself inside parentheses. Generate code as if the parentheses did not exist, rather than the old behavior of manifesting the parenthesized table into a transient table. Also, tag every FROM-clause SELECT subquery that is generated by a parenthesized FROM-clause expression using the SF_NestedFrom flag. The new SF_NestedFrom flag is not yet used for anything. (check-in: [7fecced466] user: drh branch: trunk, size: 50382) | |
13:12 | [15fdc2c98c] part of check-in [7e30c021ab] Remove old commented-out code from parse.y. Fix some over-length source lines in parse.y. No logical changes. (check-in: [7e30c021ab] user: drh branch: trunk, size: 49986) | |
2012-12-07
| ||
18:38 | [c2b4a6454a] part of check-in [972443b4eb] Some errors in veryquick resolved. Many more to go. (check-in: [972443b4eb] user: drh branch: ticket-71e333e7, size: 50452) | |
2012-10-16
| ||
21:08 | [bf81c919e1] part of check-in [8b4c3c5e50] An optimization that converts "a IN (b)" into "a==b". Seems to work, but needs additional test cases. (check-in: [8b4c3c5e50] user: drh branch: degenerate_IN, size: 51049) | |
2012-07-18
| ||
16:07 | [6548920e5a] part of check-in [defd828e90] Remove another branch from the DbMalloc() paths. (check-in: [defd828e90] user: dan branch: calloc, size: 50586) | |
2012-05-12
| ||
18:29 | [f29df90bd3] part of check-in [e536ac0418] Parser bug fix: Make sure the table constraints allowed by prior releases can still be parsed, even if they are technically not allowed by the syntax diagram. (check-in: [e536ac0418] user: drh branch: trunk, size: 50598) | |
2012-05-08
| ||
11:17 | [de06f412a4] part of check-in [38bf90af1e] Further changes to constraint parsing to support legacy syntax. (check-in: [38bf90af1e] user: drh branch: trunk, size: 50623) | |
2012-05-07
| ||
19:21 | [ad29af00e7] part of check-in [a1c014d8a8] Adjust the parser so that certain legacy schema constructs (that are not valid according to the syntax diagram) continue to be accepted, so that older databases that happen to use those constructs are still readable. This fixes an issue introduced by check-in [1b75f301affac6] (check-in: [a1c014d8a8] user: drh branch: trunk, size: 50588) | |
2012-03-30
| ||
15:48 | [eb054bb40a] part of check-in [1b75f301af] When a named CHECK constraint fails, include the name of the constraint in the error message. (check-in: [1b75f301af] user: drh branch: trunk, size: 50492) | |
12:10 | [537c8db136] part of check-in [cbdd863876] Change the name of a local variable from "not" to "bNot" to lessen the chances of it colliding with some prior #define in the appliation. (check-in: [cbdd863876] user: drh branch: trunk, size: 50551) | |
2012-03-07
| ||
19:13 | [180976f414] part of check-in [9a0f90d9de] If a CHECK constraint is named, report that name on the error message when the constraint fails. (check-in: [9a0f90d9de] user: drh branch: named-check-constraints, size: 50643) | |
2012-02-10
| ||
17:38 | [1ddd71ae55] part of check-in [92131195d0] Disable the ability to have multiple values in the VALUES clause of an INSERT statement when SQLITE_OMIT_COMPOUND_SELECT is used. (check-in: [92131195d0] user: drh branch: trunk, size: 50544) | |
2012-01-28
| ||
19:44 | [f36fb379d4] part of check-in [2b2a7d8d73] Remove a couple of unnecessary nonterminals from the grammar. (check-in: [2b2a7d8d73] user: drh branch: trunk, size: 50331) | |
19:41 | [fcda1cc4bc] part of check-in [230983e86a] Add support for IF NOT EXISTS on CREATE VIRTUAL TABLE. (check-in: [230983e86a] user: drh branch: trunk, size: 50437) | |
15:22 | [203ea3305a] part of check-in [eb3b6a0ceb] Add support for multiple rows of VALUES in an INSERT statement. (check-in: [eb3b6a0ceb] user: drh branch: trunk, size: 50403) | |
2011-12-06
| ||
19:44 | [fabb2e7047] part of check-in [79ae51c5b1] Begin adding the data-structure explaining subsystem. All is contained within (check-in: [79ae51c5b1] user: drh branch: tree-explain, size: 49315) | |
2011-11-29
| ||
15:40 | [d02cc7bdb9] part of check-in [431556cac0] Remove unused fields from the Parse object. Documentation and formatting improvements on data structure definitions. (check-in: [431556cac0] user: drh branch: trunk, size: 49196) | |
2010-08-17
| ||
23:13 | [07fdc757ef] part of check-in [220cca50da] Cherrypick the changes for enhancement requests [e090183531fc27474] (use indices on LIKE with no wildcards) and [4711020446da7d93d993] (use nocase index for LIKE even if the column is binary) into the 3.6.23.1 release of the Apple-OSX branch. (check-in: [220cca50da] user: drh branch: apple-osx-3623, size: 48658) | |
2010-07-22
| ||
17:49 | [12b7ebd61e] part of check-in [9f932655f9] Enhance the LIKE/GLOB query optimization so that it works as long as there is an index with the appropriate collating sequence and even if the default collating sequence of the column is different. Ticket [4711020446da7d93d99]. (check-in: [9f932655f9] user: drh branch: trunk, size: 49248) | |
2010-07-19
| ||
02:30 | [220a11ac72] part of check-in [3e5975aa3b] Fix a parser bug that was causing the relative precedence of LIKE and < operators to be incorrect. (check-in: [3e5975aa3b] user: drh branch: trunk, size: 49227) | |
2010-07-15
| ||
11:14 | [06a61a571f] part of check-in [dea7d33b2d] Change a comment inside a block of code in parse.y from C++ to C style. (check-in: [dea7d33b2d] user: dan branch: trunk, size: 49038) | |
2010-07-14
| ||
18:24 | [3d7f529e00] part of check-in [c288ac644d] Make the result of an IN or NOT IN expression with an empty set on the right-hand side always either false or true, respectively, even if the left-hand side is NULL. Ticket [80e031a00f45dc] (check-in: [c288ac644d] user: drh branch: trunk, size: 49038) | |
2009-12-09
| ||
21:43 | [ace5c7a125] part of check-in [54b955c36b] Restore the incorrect legacy ON INSERT syntax to the parser as a no-op. That way, older databases that actually use this meaningless syntax will still be readable. (check-in: [54b955c36b] user: drh branch: trunk, size: 48637) | |
2009-12-03
| ||
04:40 | [b172fba9a9] part of check-in [e3aa0870fc] Fix a couple of compiler warnings under MSVC. (check-in: [e3aa0870fc] user: shaneh branch: trunk, size: 48560) | |
2009-11-12
| ||
03:46 | [f785d81456] part of check-in [cff1b36ab2] Suppress excess OP_Null opcodes caused by binary IS or IS NOT operators that are converted into unary ISNULL or NOTNULL operators. (check-in: [cff1b36ab2] user: drh branch: trunk, size: 48556) | |
2009-11-10
| ||
01:30 | [0a36c62c09] part of check-in [f6c045f649] Remove the obsolete "$Id:$" RCS identifier strings from the source code. (check-in: [f6c045f649] user: drh branch: trunk, size: 48241) | |
2009-10-21
| ||
13:48 | [0204f0dfe8] part of check-in [0441d28e84] Add evidence marks to parse.y. Fix a broken evidence link in e_fkey.tcl. (check-in: [0441d28e84] user: drh branch: trunk, size: 48305) | |
2009-09-23
| ||
08:43 | [2b75a329a5] part of check-in [540c2d18e1] Add missing comments to fkey.c. Also, change the terminology used for comments and names in fkey.c from "referenced/referencing" to "parent/child". This is arguably less correct, but is easier to follow. (check-in: [540c2d18e1] user: dan branch: trunk, size: 48167) | |
02:29 | [563ecc9e63] part of check-in [98853f6104] Generalize the IS and IS NOT operators so that their right-hand side can be an arbitrary expression and not simple the constant NULL. They work like = and <> except that NULL values compare equal to one another an unequal to everything else. (check-in: [98853f6104] user: drh branch: trunk, size: 48167) | |
2009-09-22
| ||
20:08 | [749f39fa21] part of check-in [3fc938c961] Factor the UMINUS and UPLUS tokens out of the parser so that the parser tables can go back to using 8-bit values instead of 16-bit values. (check-in: [3fc938c961] user: drh branch: trunk, size: 47832) | |
2009-09-21
| ||
16:06 | [030c85b2c5] part of check-in [fb6ceed388] Fix compilation with OMIT_TRIGGER defined. Ticket [1ff6d29030]. (check-in: [fb6ceed388] user: dan branch: trunk, size: 47848) | |
2009-09-19
| ||
17:00 | [e2a89b5936] part of check-in [d5d3998118] Check in implementation of foreign key constraints. (check-in: [d5d3998118] user: dan branch: trunk, size: 47844) | |
2009-08-10
| ||
03:57 | [6c42631e72] part of check-in [ee034cfc71] Removed some warnings from the MSVC compile. (CVS 6965) (check-in: [ee034cfc71] user: shane branch: trunk, size: 47861) | |
2009-07-03
| ||
15:37 | [bcd46d43fb] part of check-in [c8bf40df7b] Make explicit the restrictions on UPDATE, DELETE, and INSERT statement syntax within triggers. Ticket #3947. (CVS 6840) (check-in: [c8bf40df7b] user: drh branch: trunk, size: 47857) | |
2009-07-01
| ||
14:56 | [c48ce2025d] part of check-in [42f9d1e564] Do not ignore alias "a" in a query of the form "SELECT ... FROM (...) AS a" Fix for #3935. Also expand upon (6751) to fix some similar obscure memory leaks. (CVS 6831) (check-in: [42f9d1e564] user: danielk1977 branch: trunk, size: 46882) | |
2009-06-19
| ||
14:06 | [b6e99f4208] part of check-in [37ae5f5e8f] Reorganize and cleanup the prepared statement object. Remove code that has been commented out for ages and is no longer relevant to anything. (CVS 6786) (check-in: [37ae5f5e8f] user: drh branch: trunk, size: 46930) | |
2009-06-12
| ||
13:53 | [bab89225c2] part of check-in [fe9c917734] The lemon parser generator now inserts yytestcase() macros on reduce action and on each destructor, to verify that all have been executed. yytestcase() is a no-op by default but can be set to something more useful inside of %include. (CVS 6755) (check-in: [fe9c917734] user: drh branch: trunk, size: 46983) | |
12:04 | [d4bade53de] part of check-in [a17e331717] Enable the SQLITE_LIMIT_FUNCTION_ARG limiter. (CVS 6753) (check-in: [a17e331717] user: drh branch: trunk, size: 46898) | |
03:47 | [90bcb72db4] part of check-in [6197b49271] An additional memory leak in the parser fixed. Ticket #3911. (CVS 6751) (check-in: [6197b49271] user: drh branch: trunk, size: 46876) | |
02:27 | [5d6ab0304c] part of check-in [457e0b245b] Modifications to the parser to eliminate unreachable code. (CVS 6749) (check-in: [457e0b245b] user: drh branch: trunk, size: 46820) | |
2009-05-28
| ||
01:00 | [07690df997] part of check-in [4ac2bdfbb4] Additional refinements to Expr handling. Restore compression of trigger expressions. Change Expr.zToken to Expr.u.zToken and added Expr.u.iValue. Remove an unnecessary ExprDup from CHECK constraint processing. And so forth. (CVS 6682) (check-in: [4ac2bdfbb4] user: drh branch: trunk, size: 46690) | |
2009-05-27
| ||
10:31 | [6b55e52fb3] part of check-in [7cb1c3ba07] Simplifications to the Expr object: Remove Expr.span completely and convert Expr.token into a char* Expr.zToken. Also simplify the Token object by removing the Token.dyn and Token.quoted fields. (CVS 6681) (check-in: [7cb1c3ba07] user: drh branch: trunk, size: 46690) | |
2009-05-11
| ||
18:22 | [ba2fa210be] part of check-in [93772bd7f5] Enhance the parser to allow nested parentheses in the module argument of a CREATE VIRTUAL TABLE statement. (CVS 6625) (check-in: [93772bd7f5] user: drh branch: trunk, size: 43057) | |
2009-05-01
| ||
21:13 | [a0e8b8e5d6] part of check-in [12bcb03d9b] Record within the Token structure itself whether or not the token has been dequoted. This steals one bit from the length of a token and thus limits the size of tokens to 1GiB. (CVS 6589) (check-in: [12bcb03d9b] user: drh branch: trunk, size: 43068) | |
2009-04-06
| ||
14:16 | [b7e4341b21] part of check-in [ed99d2d97f] Allow "default" to be a keyword used by PRAGMA statements. (CVS 6454) (check-in: [ed99d2d97f] user: drh branch: trunk, size: 43039) | |
2009-04-03
| ||
01:43 | [070215cf46] part of check-in [286e83178d] Fix the PRAGMA parser so that it can accept negative numbers in parentheses, like the syntax diagrams say it should be able to. (CVS 6444) (check-in: [286e83178d] user: drh branch: trunk, size: 42992) | |
2009-03-24
| ||
15:08 | [b9ba0946a1] part of check-in [ea74d8dc62] Changes to insure that lookaside memory allocations are never used to hold schema content. Ticket #3743. (CVS 6377) (check-in: [ea74d8dc62] user: drh branch: trunk, size: 42881) | |
2009-03-22
| ||
20:36 | [30ae25cd9c] part of check-in [53149c9f5d] Allow the keyword INDEXED to be used as the name of a table or index or column - for backwards compatibility. (CVS 6370) (check-in: [53149c9f5d] user: drh branch: trunk, size: 42754) | |
2009-03-05
| ||
03:48 | [c315b6f9bf] part of check-in [5477833ec7] Removed compiler warnings from MSVC builds. Ticket #3701. (CVS 6335) (check-in: [5477833ec7] user: shane branch: trunk, size: 42722) | |
2009-02-19
| ||
14:39 | [5202dc7124] part of check-in [d9f6ffbc5e] Changes to reduce the heap space consumed by triggers, views and tables in the in-memory representation of the schema. Also to reduce the space used by prepared statements slightly. (CVS 6305) (check-in: [d9f6ffbc5e] user: danielk1977 branch: trunk, size: 42722) | |
2009-01-29
| ||
19:27 | [4f4d16aee0] part of check-in [6041ca87a1] Add test cases to make sure that keywords that we say can be used as identifiers really can be used as identifiers. These tests were inspired by ticket #3612, but they do not directly address ticket #3612. (CVS 6214) (check-in: [6041ca87a1] user: drh branch: trunk, size: 42538) | |
2009-01-16
| ||
11:04 | [b214295a91] part of check-in [54ab8326a1] Allow recently added keywords 'savepoint' and 'release' to be used as database object names. Just as they could be prior to 3.6.8. Ticket #3590. (CVS 6186) (check-in: [54ab8326a1] user: danielk1977 branch: trunk, size: 42525) | |
2008-12-17
| ||
17:30 | [4d0e33a702] part of check-in [34b56600ec] Add the savepoint feature. This feature is largely untested at this point. (CVS 6036) (check-in: [34b56600ec] user: danielk1977 branch: trunk, size: 42507) | |
2008-12-10
| ||
18:03 | [3dfd941533] part of check-in [14e6d19c31] More explicit type casting to silence VC++. (CVS 6006) (check-in: [14e6d19c31] user: drh branch: trunk, size: 42172) | |
2008-12-08
| ||
16:01 | [1f4b7ad690] part of check-in [cf419d0b01] Fix two unused-parameter warnings in the parser. (CVS 5990) (check-in: [cf419d0b01] user: drh branch: trunk, size: 42119) | |
2008-12-03
| ||
23:23 | [72397fe334] part of check-in [72ebc8cbe0] Allow the entire FROM clause of a SELECT statement to be in parentheses. (CVS 5973) (check-in: [72ebc8cbe0] user: drh branch: trunk, size: 41985) | |
2008-10-23
| ||
05:45 | [2c4758b4c5] part of check-in [0e448bc609] Fix a bug in pragma table_info. Column default values specified as negative numbers (col DEFAULT -1) were being reported as NULL by the pragma. (CVS 5839) (check-in: [0e448bc609] user: danielk1977 branch: trunk, size: 41612) | |
2008-10-11
| ||
17:35 | [f4620f42b5] part of check-in [63dd8be70d] Fix to sqlite3DbMallocRaw() when SQLITE_OMIT_LOOKASIDE is defined so that once it fails it continues to fail. Add a comment explaining why this is important. (CVS 5804) (check-in: [63dd8be70d] user: drh branch: trunk, size: 41567) | |
17:06 | [e73dc4137e] part of check-in [2a21d52c65] Fix a OOM segfault in the BETWEEN operator parsing - discovered while using SQLITE_OMIT_LOOKASIDE. Add SQLITE_OMIT_LOOKASIDE to test_config.c and bypass lookaside.test when defined. (CVS 5803) (check-in: [2a21d52c65] user: drh branch: trunk, size: 41608) | |
2008-10-10
| ||
18:25 | [e8620c7efd] part of check-in [282c6a46b2] Further simplifications of the code for the LIMIT clause on an UPDATE or DELETE. Added a few test cases to wherelimit.test. (CVS 5797) (check-in: [282c6a46b2] user: shane branch: trunk, size: 41569) | |
17:47 | [8862ab3391] part of check-in [3bb33cf59d] Change 'pragma foreign_key_list' to return some extra information. (CVS 5795) (check-in: [3bb33cf59d] user: danielk1977 branch: trunk, size: 41822) | |
14:27 | [72fc66fd30] part of check-in [3de179630e] Simplify the parser reduction code for the LIMIT clause on an UPDATE or DELETE. (CVS 5792) (check-in: [3de179630e] user: drh branch: trunk, size: 41813) | |
04:34 | [ecabcd6402] part of check-in [c10e8a3c7a] Updated LIMIT support for DELETE/UPDATE. Omit option changed to SQLITE_ENABLE_UPDATE_DELETE_LIMIT. (CVS 5788) (check-in: [c10e8a3c7a] user: shane branch: trunk, size: 41992) | |
2008-10-07
| ||
05:27 | [85d57c1dba] part of check-in [9c8b132e34] Initial support for LIMIT clause on DELETEs and UPDATEs. Changes likely with more testing. The code can be omitted with the define SQLITE_OMIT_UPDATE_DELETE_LIMIT. (CVS 5774) (check-in: [9c8b132e34] user: shane branch: trunk, size: 41984) | |
2008-10-06
| ||
16:18 | [d8edf095cd] part of check-in [83a7e446b2] Allow INDEXED BY and NOT INDEXED to be used in UPDATE and DELETE statements. (CVS 5772) (check-in: [83a7e446b2] user: danielk1977 branch: trunk, size: 40816) | |
05:32 | [c69312dff9] part of check-in [98ca5580f5] Allow INDEXED BY and NOT INDEXED clauses in SELECT statements. (CVS 5766) (check-in: [98ca5580f5] user: danielk1977 branch: trunk, size: 40666) | |
2008-08-20
| ||
16:35 | [d0f76d2cb8] part of check-in [daf730d1de] Refactor the name resolution procedures in the code generator. (CVS 5569) (check-in: [daf730d1de] user: drh branch: trunk, size: 39949) | |
2008-08-11
| ||
14:26 | [84003422b2] part of check-in [571adab9d2] Disallow empty triggers. Ticket #3283. This does not present a backwards compatibility problem because prior to this change, an empty trigger would segfault. (CVS 5550) (check-in: [571adab9d2] user: drh branch: trunk, size: 39960) | |
2008-08-08
| ||
15:06 | [95d377a7c8] part of check-in [efcaeb68f9] Back out part of (5546): Even though ON CONFLICT clauses on CHECK constraints are no-ops, if a schema includes them, the database will be unreadable if we do not at least parse and ignore the clause. (CVS 5548) (check-in: [efcaeb68f9] user: drh branch: trunk, size: 39841) | |
14:19 | [3bd91b936a] part of check-in [4cedc641ed] Disallow the ON CONFLICT clause on CHECK constraints. The syntax used to be allowed but never worked, so this should not present compatibility problems. Other internal grammar simplifications. (CVS 5546) (check-in: [4cedc641ed] user: drh branch: trunk, size: 39834) | |
2008-07-31
| ||
01:40 | [d962e544d9] part of check-in [10e0450896] Omit calls to sqlite3Pragma() if SQLITE_OMIT_PARSER defined. Not technically needed, as the entire generated parse.c file should not be included. (CVS 5506) (check-in: [10e0450896] user: shane branch: trunk, size: 39919) | |
2008-07-28
| ||
19:34 | [5ce0b04d2d] part of check-in [e48f9697e9] Implement the "lookaside" memory allocation cache. Use of this cache makes the speed1.test script run about 15% faster. Added new interfaces to control the cache. (CVS 5488) (check-in: [e48f9697e9] user: drh branch: trunk, size: 39864) | |
2008-07-18
| ||
17:03 | [d1316f1b8b] part of check-in [17a9984e76] Make sure expression spans are set correctly for "x.*" expressions in the result set of a SELECT. Ticket #3229. (CVS 5438) (check-in: [17a9984e76] user: drh branch: trunk, size: 39288) | |
2008-07-08
| ||
23:40 | [097bff733e] part of check-in [cbd3c1585b] Remove obsolete code from select.c, including the "affinity" parameter to the sqlite3Select() module. (CVS 5380) (check-in: [cbd3c1585b] user: drh branch: trunk, size: 39284) | |
2008-06-05
| ||
16:47 | [8c2c3145ee] part of check-in [16d4c53a8e] Reorganize some of the code that detects expression trees with a depth greater than EXPR_MAX_DEPTH so that they are detected earlier. This further reduces the opportunities for stack overflow. (CVS 5189) (check-in: [16d4c53a8e] user: danielk1977 branch: trunk, size: 39295) | |
2008-04-17
| ||
20:59 | [fc4bd35c60] part of check-in [4a72a7bb9c] Continuing progress on the journal_mode pragma. It still does not work. (CVS 5027) (check-in: [4a72a7bb9c] user: drh branch: trunk, size: 39239) | |
2008-03-29
| ||
12:50 | [bc1b1cc6f8] part of check-in [bf28f1c260] add two missing initializer values (CVS 4937) (check-in: [bf28f1c260] user: rse branch: trunk, size: 39154) | |
2008-03-20
| ||
16:30 | [b0ee84d942] part of check-in [4c4be4c3c8] Reinstate test cases for the limit tests. The sqlite3_limit() API is now tested and working. (CVS 4899) (check-in: [4c4be4c3c8] user: drh branch: trunk, size: 39148) | |
2008-01-22
| ||
23:37 | [00f2698c8a] part of check-in [c82033faf8] Improved test coverage for the tokenizer and sqlite3_complete() interface. Fix bugs in parsing blob literals and SQL variables beginning with $. (CVS 4743) (check-in: [c82033faf8] user: drh branch: trunk, size: 39204) | |
14:50 | [bcc6092d25] part of check-in [83ca4fc7dc] Remove dead code from the lemon-generated parser. Better testing of the sqlite3_file_control() interface, and in particular make sure the interface works on :memory: databases. (CVS 4738) (check-in: [83ca4fc7dc] user: drh branch: trunk, size: 39243) | |
01:48 | [0a0878dd99] part of check-in [2a0bc1e186] Changes to lemon to generate additional comments in the output file and to remove unreachable code. Additional test cases for improved test coverage. (CVS 4736) (check-in: [2a0bc1e186] user: drh branch: trunk, size: 39272) | |
2008-01-02
| ||
16:27 | [2ae06e8d31] part of check-in [86dcdfe6d7] Combine the eDest and iParm arguments to sqlite3Select() into a single type - "SelectDest". (CVS 4657) (check-in: [86dcdfe6d7] user: danielk1977 branch: trunk, size: 39282) | |
2007-11-17
| ||
22:23 | [a780b33ef4] part of check-in [b48a4bfd32] Fix a bug in the grammar. We were giving the ones-complement operator ~ the same precedence as the NOT operator, which is incorrect. (CVS 4548) (check-in: [b48a4bfd32] user: drh branch: trunk, size: 39242) | |
2007-11-12
| ||
09:50 | [9640f5b930] part of check-in [06749ac7af] Allow collation sequence names to be quoted. Ticket #2744. (CVS 4537) (check-in: [06749ac7af] user: danielk1977 branch: trunk, size: 39151) | |
2007-08-21
| ||
10:44 | [2d2ce439dc] part of check-in [fbbd5bda54] Remove unnecessary #includes of "os.h". New mutex implementations. (CVS 4255) (check-in: [fbbd5bda54] user: drh branch: trunk, size: 39215) | |
2007-08-16
| ||
10:09 | [c03529c3b8] part of check-in [77b1671351] More work on refactoring of malloc() interfaces. There are still many errors. (CVS 4233) (check-in: [77b1671351] user: danielk1977 branch: trunk, size: 39242) | |
04:30 | [4934dc7e7a] part of check-in [deb7ecd65f] Half-way through a major refactoring of the memory allocation. I have not even attempted to compile so I am certain there are countless errors. (CVS 4231) (check-in: [deb7ecd65f] user: drh branch: trunk, size: 39225) | |
2007-06-20
| ||
12:18 | [ad2ce25665] part of check-in [9581e7a4a4] Disallow empty GROUP BY clauses. Ticket #2431. (CVS 4099) (check-in: [9581e7a4a4] user: drh branch: trunk, size: 38394) | |
2007-06-15
| ||
17:03 | [2ed1d91fdc] part of check-in [d0b6e9a07e] Fix a memory leak in the parser that can occur following a malloc failure. (CVS 4071) (check-in: [d0b6e9a07e] user: drh branch: trunk, size: 38411) | |
2007-05-30
| ||
10:36 | [e3d8e3f748] part of check-in [7522d2fb32] Add some extra tests for malloc failure during expression parsing and execution using fuzzily generated SQL. (CVS 4043) (check-in: [7522d2fb32] user: danielk1977 branch: trunk, size: 38382) | |
2007-05-15
| ||
16:51 | [e276a0c35d] part of check-in [f84d9dab11] Make sure pParse->rc gets set whenever sqlite3ErrorMsg() is called. This is added insurance that parsing will stop quickly after an error. This change did make the parser stop faster in some cases, which required some revisions to tests. (CVS 4010) (check-in: [f84d9dab11] user: drh branch: trunk, size: 38369) | |
00:09 | [5d4d60e7e1] part of check-in [d07cdd3c09] Make sure the parser aborts quickly following a syntax error. (CVS 3996) (check-in: [d07cdd3c09] user: drh branch: trunk, size: 38400) | |
2007-05-11
| ||
01:44 | [8451c5b04a] part of check-in [d12a8924c6] Additional parsing bugs fixed. (CVS 3981) (check-in: [d12a8924c6] user: drh branch: trunk, size: 38369) | |
2007-05-10
| ||
10:46 | [39b25cc7f9] part of check-in [2c9c94a24d] Add code to enforce the MAX_EXPR_DEPTH limit. (CVS 3968) (check-in: [2c9c94a24d] user: danielk1977 branch: trunk, size: 38437) | |
2007-05-08
| ||
17:54 | [fe7efcbf0e] part of check-in [eeee6b71e5] Add a few more tests to sqllimit1.test. (CVS 3954) (check-in: [eeee6b71e5] user: danielk1977 branch: trunk, size: 38253) | |
13:58 | [efbca80408] part of check-in [c59d436095] Add more code to enforce the limits specified in limits.h. (CVS 3946) (check-in: [c59d436095] user: drh branch: trunk, size: 38036) | |
2007-05-04
| ||
18:30 | [a5bdc301e9] part of check-in [b13e497a32] Change incremental vacuum to be triggered by a pragma rather than a command. We have a lot to learn about this yet and we do not want to paint ourselves into a corner by commiting to specific syntax too early. (CVS 3921) (check-in: [b13e497a32] user: drh branch: trunk, size: 37860) | |
16:14 | [502cec813c] part of check-in [ed713f9ccb] Optional parameter in the INCREMENTAL VACUUM statement specifies how many pages to vacuum from the database. (CVS 3919) (check-in: [ed713f9ccb] user: drh branch: trunk, size: 38059) | |
14:14 | [c4ee802a60] part of check-in [9d7a2e2bb4] Make "incremental" a fallback token so that you can set "auto_vacuum=incremental" without having to quote the "incremental". (CVS 3917) (check-in: [9d7a2e2bb4] user: drh branch: trunk, size: 37972) | |
2007-04-26
| ||
14:42 | [a3940369e1] part of check-in [f6a6d2b887] Add largely untested code for the incremental vacuum function. (CVS 3876) (check-in: [f6a6d2b887] user: danielk1977 branch: trunk, size: 37968) | |
2007-04-06
| ||
15:02 | [b6cfbadb6d] part of check-in [479b3d965b] Binary file I/O infrastructure added and used to increase test coverage for detection of corrupt database files. (CVS 3822) (check-in: [479b3d965b] user: drh branch: trunk, size: 37860) | |
11:26 | [6112045e2d] part of check-in [8e2559b4da] The FOR EACH STATEMENT clause in a trigger is now a syntax error. It used to be silently ignored. STATEMENT is no longer a keyword. (CVS 3821) (check-in: [8e2559b4da] user: drh branch: trunk, size: 37425) | |
2007-03-27
| ||
14:44 | [207ab04273] part of check-in [cbebfb8960] The -DSQLITE_OMIT_ATTACH=1 option now omits both the ATTACH and VACUUM commands. Ticket #2268. The regression test suite depends on both of these commands and will not run if compiled with this option. (CVS 3727) (check-in: [cbebfb8960] user: drh branch: trunk, size: 37683) | |
2007-02-02
| ||
12:44 | [bcfe366c1f] part of check-in [9740aa95a3] Minor tweaks to collating sequences. We'll hold of making major changes until 3.4.0, since we'll likely end up with some minor technical imcompatibilities. (CVS 3626) (check-in: [9740aa95a3] user: drh branch: trunk, size: 37656) | |
2007-02-01
| ||
23:02 | [ebf4253e37] part of check-in [85cca7cd25] First cut at adding the COLLATE operator. Regression tests pass (or at least the quick set does) and a few new tests have been added. But many more tests are needed. Rules for combining collations need to be worked out. (CVS 3624) (check-in: [85cca7cd25] user: drh branch: trunk, size: 37648) | |
2007-01-27
| ||
02:38 | [31ea08df13] part of check-in [ab6322bf93] Parser changes to allow parenthesized numerical arguments to pragmas, in support of the integrity_check enhancement of check-in (3609) and ticket #2176. (CVS 3610) (check-in: [ab6322bf93] user: drh branch: trunk, size: 37600) | |
2006-12-20
| ||
02:15 | [2f571c5f62] part of check-in [893d58c23d] Allow constraint names on DEFAULT values in a table definition. Ticket #2109. (CVS 3535) (check-in: [893d58c23d] user: drh branch: trunk, size: 37581) | |
2006-12-16
| ||
16:25 | [9b3d1c0f8a] part of check-in [7393c81b8c] Query optimizer enhancement: In "FROM a,b,c left join d" allow the C table to be reordered with A and B. This used to be the case but the capability was removed by (3203) and (3052) in response to ticket #1652. This change restores the capability. (CVS 3529) (check-in: [7393c81b8c] user: drh branch: trunk, size: 37576) | |
2006-09-21
| ||
11:02 | [8c79a1debb] part of check-in [7e618db457] Be more aggressive with the SQLITE_OMIT_VACUUM macro. Saves about 150 bytes of code space. (CVS 3432) (check-in: [7e618db457] user: drh branch: trunk, size: 38045) | |
2006-09-11
| ||
23:45 | [3279443a2b] part of check-in [e4fe736cfb] Add support for IF EXISTS on CREATE/DROP TRIGGER/VIEW. Ticket #1899. (CVS 3406) (check-in: [e4fe736cfb] user: drh branch: trunk, size: 37870) | |
2006-08-25
| ||
23:42 | [b26898e527] part of check-in [bc84cb54b0] Add support for INSERT INTO ... DEFAULT VALUES. Tickets #299, #1940. (CVS 3368) (check-in: [bc84cb54b0] user: drh branch: trunk, size: 37803) | |
2006-08-14
| ||
14:23 | [ec897a969f] part of check-in [b4d53974c3] Change the table_info pragma to show the text of the default value expression, not the result of evaluating the default value expression. Ticket #1919. (CVS 3353) (check-in: [b4d53974c3] user: drh branch: trunk, size: 37678) | |
2006-07-11
| ||
10:42 | [ecac666005] part of check-in [368bcf2644] Fix a possible NULL-pointer deference following a malloc failure. Error discovered by Klocwork. (CVS 3327) (check-in: [368bcf2644] user: drh branch: trunk, size: 37651) | |
2006-07-08
| ||
18:35 | [438e0f9408] part of check-in [6e98373ca1] For infix functions (LIKE, GLOB, REGEXP, and MATCH) treat the left operand as the first argument for the purposes of virtual table function overloading, even though the left operand is really the the second argument. (CVS 3324) (check-in: [6e98373ca1] user: drh branch: trunk, size: 37630) | |
2006-06-16
| ||
08:01 | [e0831a269f] part of check-in [9497c66e55] Add some tests (and fixes) for virtual tables and the authorization callback. Still more to come. (CVS 3260) (check-in: [9497c66e55] user: danielk1977 branch: trunk, size: 37602) | |
2006-06-13
| ||
15:37 | [14ce6fb228] part of check-in [815b84d527] Add support for the MATCH operator. (CVS 3231) (check-in: [815b84d527] user: drh branch: trunk, size: 37592) | |
2006-06-11
| ||
23:41 | [05cd1419b6] part of check-in [898ec36b41] Progress toward CREATE VIRTUAL TABLE. Still not even close to working... (CVS 3211) (check-in: [898ec36b41] user: drh branch: trunk, size: 37466) | |
2006-06-10
| ||
13:29 | [79c324627c] part of check-in [66370cb99b] Basic parsing of CREATE VIRTUAL TABLE statements. (CVS 3210) (check-in: [66370cb99b] user: drh branch: trunk, size: 36957) | |
2006-05-25
| ||
12:17 | [50ab45ec8e] part of check-in [5031ffc665] Syntax errors override errors from the code generator, not the other way around. (CVS 3192) (check-in: [5031ffc665] user: drh branch: trunk, size: 36582) | |
2006-03-13
| ||
12:54 | [ee1887ce0e] part of check-in [a69f697d50] Additional changes due to Coverity scans. (CVS 3130) (check-in: [a69f697d50] user: drh branch: trunk, size: 36527) | |
2006-02-27
| ||
22:22 | [c2daaa24fa] part of check-in [b4fa96d0e9] The parser now permits very large triggers - triggers with 10000 or more statements. (CVS 3113) (check-in: [b4fa96d0e9] user: drh branch: trunk, size: 36474) | |
21:58 | [969fa5ddf7] part of check-in [bd2c38f467] Detect stack overflow in the parser and report an error. (CVS 3112) (check-in: [bd2c38f467] user: drh branch: trunk, size: 36414) | |
2006-02-24
| ||
02:53 | [52b8cdccee] part of check-in [4b22e4b847] Remove unused parameters on internal APIs. Suppress warnings from CodeWarrior. (CVS 3110) (check-in: [4b22e4b847] user: drh branch: trunk, size: 36342) | |
2006-02-10
| ||
02:27 | [6d666d60a3] part of check-in [82f502cdc1] Add the column_origin_name() etc. APIs. (CVS 3069) (check-in: [82f502cdc1] user: danielk1977 branch: trunk, size: 36360) | |
2006-01-30
| ||
23:04 | [ce7182bfd4] part of check-in [669bcf5ab6] Remove support for the non-standard ON CONFLICT clause on CREATE INDEX. Ticket #1486. The ON CONFLICT clause has never worked on CREATE INDEX so removing it should not break anything. (CVS 3042) (check-in: [669bcf5ab6] user: drh branch: trunk, size: 36351) | |
2006-01-23
| ||
13:22 | [4285cd2d0f] part of check-in [1f42a338e2] Do not name variables "operator" because some compilers do not realize that "operator" is not a reserved word in ANSI-C. Ticket #1625. (CVS 2997) (check-in: [1f42a338e2] user: drh branch: trunk, size: 36422) | |
2006-01-07
| ||
14:02 | [83df51fea3] part of check-in [6593199a4d] Fix some memory leaks caused by obscure syntax errors in SQL. (CVS 2882) (check-in: [6593199a4d] user: danielk1977 branch: trunk, size: 36426) | |
2006-01-04
| ||
15:54 | [58258759fa] part of check-in [551cdd6c30] Add support for CREATE INDEX IF NOT EXISTS and DROP INDEX IF EXISTS. (CVS 2855) (check-in: [551cdd6c30] user: drh branch: trunk, size: 36183) | |
2005-12-29
| ||
23:33 | [fea607bdc0] part of check-in [0bd9e35fd2] Add support for CREATE TABLE IF NOT EXISTS. (CVS 2847) (check-in: [0bd9e35fd2] user: drh branch: trunk, size: 36150) | |
01:11 | [1334351090] part of check-in [a4c547de83] Add support for DROP TABLE IF EXISTS. (CVS 2843) (check-in: [a4c547de83] user: drh branch: trunk, size: 36023) | |
2005-12-16
| ||
01:06 | [142a4b347c] part of check-in [cd110aa225] Initial infrastructure for recognizing DESC indices and being able to read and write older databases that specify DESC indices but do not really use them. Nothing is close to working yet. (CVS 2822) (check-in: [cd110aa225] user: drh branch: trunk, size: 35893) | |
2005-12-09
| ||
20:02 | [d0b1f9a4d5] part of check-in [83a5915155] Clean up annoying (and pointless) compiler warnings about differing signedness. (CVS 2810) (check-in: [83a5915155] user: drh branch: trunk, size: 35759) | |
2005-12-06
| ||
17:19 | [87080d8943] part of check-in [5e04ec694a] Modify ATTACH and DETACH to execute at runtime instead of compile time. (CVS 2803) (check-in: [5e04ec694a] user: danielk1977 branch: trunk, size: 35732) | |
2005-11-24
| ||
22:22 | [e4d57c2fd5] part of check-in [2dfc986391] Reduce the number of distinct token symbols in the parser so that the parser can store tokens in a single byte and thus be smaller in size. (CVS 2776) (check-in: [2dfc986391] user: drh branch: trunk, size: 35826) | |
2005-11-14
| ||
22:29 | [9399852d7b] part of check-in [ce06c123d0] Create separate affinities for INTEGER and REAL. (CVS 2766) (check-in: [ce06c123d0] user: drh branch: trunk, size: 36252) | |
2005-11-06
| ||
04:06 | [6322f4b2ef] part of check-in [f39974ebd8] About 0.5KiB of additional compression in the parser tables. (CVS 2764) (check-in: [f39974ebd8] user: drh branch: trunk, size: 36126) | |
2005-11-03
| ||
02:03 | [1d5afb972e] part of check-in [db27afc4cd] Disallow subqueries in CHECK constraints. (CVS 2756) (check-in: [db27afc4cd] user: drh branch: trunk, size: 37286) | |
00:41 | [416bc5ed62] part of check-in [2313d912ba] First cut at supporting CHECK constraints. Everything appears to work, but much more testing is needed as well as documentation. (CVS 2754) (check-in: [2313d912ba] user: drh branch: trunk, size: 37239) | |
2005-09-16
| ||
02:38 | [5602d5cb89] part of check-in [4686d64975] Fix a whole host of newly discovered memory leaks the occur after a failure of realloc(). (CVS 2696) (check-in: [4686d64975] user: drh branch: trunk, size: 37224) | |
2005-09-11
| ||
11:56 | [3bceaece9f] part of check-in [2f397bd814] COUNT(DISTINCT x) is now fully functional, though it could benefit from additional testing. (CVS 2688) (check-in: [2f397bd814] user: drh branch: trunk, size: 37027) | |
2005-09-10
| ||
16:46 | [c97d885c34] part of check-in [986efb7b12] Add the experimental EXPLAIN QUERY PLAN diagnostic capability. (CVS 2685) (check-in: [986efb7b12] user: drh branch: trunk, size: 37131) | |
2005-09-09
| ||
01:33 | [13c3d16e99] part of check-in [4d62e36fe3] Infrastructure for the DISTINCT keyword in aggregate functions. But it does not work yet. If you try to use it you get an error message. (CVS 2680) (check-in: [4d62e36fe3] user: drh branch: trunk, size: 37042) | |
2005-09-07
| ||
21:22 | [4c0cf6b064] part of check-in [17039ec3ff] Rewrite the aggregate handling logic so that it runs in O(1) space. This is the first cut at the code. Many regression tests fail. (CVS 2662) (check-in: [17039ec3ff] user: drh branch: trunk, size: 36882) | |
2005-07-08
| ||
12:13 | [d57cdd2adc] part of check-in [05b6ac9a76] Add infrastructure for the ANALYZE command. Does not yet actually do anything. (CVS 2537) (check-in: [05b6ac9a76] user: drh branch: trunk, size: 36871) | |
2005-06-30
| ||
17:04 | [6caf6855c1] part of check-in [d273766ef2] Allow the DEFAULT value of a column to be obtained by calling a function that has constant arguments, such as julianday('now'). (CVS 2534) (check-in: [d273766ef2] user: drh branch: trunk, size: 36617) | |
2005-06-25
| ||
18:42 | [562246a70c] part of check-in [17631785f9] Remove the blob(), text() and numeric() functions added in (2524) and replace them with the standard CAST operator. Ticket #1287. (CVS 2527) (check-in: [17631785f9] user: drh branch: trunk, size: 36544) | |
2005-05-23
| ||
17:26 | [72cd7553f0] part of check-in [42a626ace1] The REGEXP operator is recognized. It tries to invoke a function named regexp() which does not exist in the native build. But users who want to can add an appropriate regexp() function using sqlite3_create_function(). (CVS 2478) (check-in: [42a626ace1] user: drh branch: trunk, size: 35443) | |
2005-04-22
| ||
02:38 | [3e314b3a96] part of check-in [88b39436f0] Remove some vestigal code. Add the experimental sqlite3_transfer_bindings() API. (CVS 2446) (check-in: [88b39436f0] user: drh branch: trunk, size: 35556) | |
2005-03-29
| ||
03:10 | [1770b8673c] part of check-in [c41d55443c] Add the SQLITE_OMIT_TEMPDB compile time macro. (CVS 2427) (check-in: [c41d55443c] user: danielk1977 branch: trunk, size: 35564) | |
2005-03-17
| ||
05:03 | [10c0ace9ef] part of check-in [94185dd4f7] Add the ALTER TABLE ... ADD COLUMN command. (CVS 2393) (check-in: [94185dd4f7] user: danielk1977 branch: trunk, size: 35530) | |
2005-03-16
| ||
12:15 | [5c8336e7df] part of check-in [9a358fc33d] Fix some memory leaks that can occur if a memory allocation fails. (CVS 2388) (check-in: [9a358fc33d] user: danielk1977 branch: trunk, size: 35112) | |
2005-03-09
| ||
12:26 | [0b6135268a] part of check-in [9d5abc1ddf] Support for a future ALTER TABLE command to add columns with default values. (CVS 2367) (check-in: [9d5abc1ddf] user: danielk1977 branch: trunk, size: 34945) | |
2005-02-14
| ||
06:38 | [450fc9c4d5] part of check-in [41d2214b83] Tighten up the CREATE INDEX syntax accepted by the parser. (CVS 2329) (check-in: [41d2214b83] user: danielk1977 branch: trunk, size: 34945) | |
2005-02-05
| ||
12:48 | [ee046c1ea3] part of check-in [515e5033a5] Allow expressions (including variables) in LIMIT and OFFSET clauses. Ticket #1096. (CVS 2316) (check-in: [515e5033a5] user: danielk1977 branch: trunk, size: 34926) | |
2005-02-04
| ||
04:07 | [7a4965d65c] part of check-in [2eb9087055] Remove code for SQL cursors. (CVS 2312) (check-in: [2eb9087055] user: danielk1977 branch: trunk, size: 34809) | |
2005-01-29
| ||
08:32 | [959948ee97] part of check-in [b1b50f3158] Modify sub-query handling. Tickets #1083 and #1084. (CVS 2286) (check-in: [b1b50f3158] user: danielk1977 branch: trunk, size: 36270) | |
2005-01-21
| ||
03:12 | [5f2c197fcb] part of check-in [bb0254ab14] Modify test scripts to work when SQLITE_OMIT_SUBQUERY (along with other OMIT macros) is defined. (CVS 2251) (check-in: [bb0254ab14] user: danielk1977 branch: trunk, size: 36273) | |
2005-01-20
| ||
13:36 | [301d07db05] part of check-in [d30fdf0f2c] Added the SQLITE_OMIT_SUBQUERY compile-time option and the EXISTS operator. Regression tests are currently failing with an assertion fault. (CVS 2245) (check-in: [d30fdf0f2c] user: drh branch: trunk, size: 36247) | |
02:14 | [276efb30de] part of check-in [2d3ab1ab5a] Turn SQLITE_OMIT_CURSOR on by default. (CVS 2240) (check-in: [2d3ab1ab5a] user: drh branch: trunk, size: 35869) | |
2005-01-19
| ||
23:24 | [a1084470b3] part of check-in [d8b2a7e091] Continued refactoring of the name resolution logic and query optimizer. (CVS 2236) (check-in: [d8b2a7e091] user: drh branch: trunk, size: 35865) | |
2004-11-22
| ||
19:12 | [ceba179b97] part of check-in [fc8c1393c8] Add initial infrastructure for cursors. In where.c, optimize out clauses of the form "ORDER BY rowid" if a table scan is being performed. Do a reverse table scan if "ORDER BY rowid DESC" is present. (CVS 2141) (check-in: [fc8c1393c8] user: drh branch: trunk, size: 35862) | |
2004-11-17
| ||
16:41 | [0a4bdfd7b6] part of check-in [49268c2b7a] Add the ESCAPE clause to the LIKE operator. Not fully tested yet. (CVS 2107) (check-in: [49268c2b7a] user: danielk1977 branch: trunk, size: 34413) | |
2004-11-13
| ||
15:59 | [3282026b61] part of check-in [dcbc0c22cf] More compile-time options for removing components. (CVS 2098) (check-in: [dcbc0c22cf] user: drh branch: trunk, size: 34199) | |
03:48 | [7978be1733] part of check-in [10c712a219] Autoincrement is now working and has regression tests. (CVS 2095) (check-in: [10c712a219] user: drh branch: trunk, size: 34143) | |
2004-11-12
| ||
13:42 | [b64ebeb91d] part of check-in [a1b2cc63e6] Add the "ALTER TABLE xxx RENAME TO yyy" command. (CVS 2092) (check-in: [a1b2cc63e6] user: danielk1977 branch: trunk, size: 34611) | |
03:56 | [91a01b5f11] part of check-in [8fde833c81] Autoincrement code installed. Simple smoke-testing only. No regression tests developed yet. (CVS 2091) (check-in: [8fde833c81] user: drh branch: trunk, size: 34391) | |
2004-11-09
| ||
16:13 | [02e0d88a6d] part of check-in [f81b9c1c02] Have "DEFAULT CURRENT_TIME" & co. work even if SQLITE_OMIT_DATETIME_FUNCS is defined. (CVS 2083) (check-in: [f81b9c1c02] user: danielk1977 branch: trunk, size: 33946) | |
12:44 | [0af8d009ca] part of check-in [0d27c8ff48] Port the "DEFAULT CURRENT_TIME" etc. functionality from an earlier fork of sqlite. (CVS 2082) (check-in: [0d27c8ff48] user: danielk1977 branch: trunk, size: 33946) | |
2004-11-05
| ||
23:46 | [8456726833] part of check-in [11dba47e61] First cut at a REINDEX command. Basic testing only. No documentation. (CVS 2072) (check-in: [11dba47e61] user: drh branch: trunk, size: 33486) | |
05:10 | [97247c0a89] part of check-in [ac2d5a605c] More use of sqlite3NestedParse. This version of the code does not work. (CVS 2060) (check-in: [ac2d5a605c] user: drh branch: trunk, size: 33240) | |
00:43 | [e7f4e87a2a] part of check-in [10c3d88305] Incremental check-in of changes that will ultimately lead to a working autoincrement. (CVS 2056) (check-in: [10c3d88305] user: drh branch: trunk, size: 33172) | |
2004-11-03
| ||
13:59 | [4a27450611] part of check-in [a82980fd70] More work on optionally removing unused features at compile-time. (CVS 2049) (check-in: [a82980fd70] user: drh branch: trunk, size: 32987) | |
03:59 | [625750bf4b] part of check-in [007aec1133] The makefile now runs mkkeywordhash.c. Keywords that are unused are omitted from the keyword hash table. (CVS 2045) (check-in: [007aec1133] user: drh branch: trunk, size: 32987) | |
2004-10-31
| ||
02:22 | [08f4971f89] part of check-in [be661acfa8] Insert #ifdefs that can optionally remove features at compiletime resulting in a database engine with a smaller footprint. (CVS 2034) (check-in: [be661acfa8] user: drh branch: trunk, size: 32932) | |
2004-10-07
| ||
03:06 | [8d97a91cba] part of check-in [618dee121e] Additional parser optimizations. (CVS 2010) (check-in: [618dee121e] user: drh branch: trunk, size: 32581) | |
2004-10-06
| ||
14:39 | [329d1bca30] part of check-in [8e2ae24498] Size optimization in the parser. (CVS 2004) (check-in: [8e2ae24498] user: drh branch: trunk, size: 33384) | |
2004-10-05
| ||
02:41 | [e03d7d7f71] part of check-in [81ff8107ad] Add support for DEFERRED, IMMEDIATE, and EXCLUSIVE transactions. (CVS 2000) (check-in: [81ff8107ad] user: drh branch: trunk, size: 33745) | |
2004-10-04
| ||
13:38 | [3616bdde17] part of check-in [e8e972ba65] More changes to take advantage of the TK_ and OP_ alignments to avoid unnecessary translations. (CVS 1999) (check-in: [e8e972ba65] user: drh branch: trunk, size: 33524) | |
13:19 | [eb4920f637] part of check-in [4c817e3f29] Save about 800 bytes of code space by aligning TK_ and OP_ constants so that we do not have to translate between them. (CVS 1998) (check-in: [4c817e3f29] user: drh branch: trunk, size: 33524) | |
2004-09-30
| ||
14:22 | [968231351d] part of check-in [85ad18712d] Correctly parser column typenames that contain more than one identifier. Ticket #934. (CVS 1990) (check-in: [85ad18712d] user: drh branch: trunk, size: 33215) | |
2004-09-25
| ||
15:29 | [52ca09eec1] part of check-in [54ee1664aa] Remove unused CLUSTER keyword from the parser. (CVS 1986) (check-in: [54ee1664aa] user: drh branch: trunk, size: 33225) | |
13:12 | [93edda0f1e] part of check-in [cb631a135d] Code simplifications and size reductions. (CVS 1983) (check-in: [cb631a135d] user: drh branch: trunk, size: 33233) | |
2004-09-07
| ||
16:19 | [9389af67bd] part of check-in [435b3f301f] Wildcards with the same name map into the same variable number. New api sqlite3_bind_parameter_index() added to map wildcard names into wildcard index numbers. Support for "?nnn" wildcards. (CVS 1945) (check-in: [435b3f301f] user: drh branch: trunk, size: 33233) | |
2004-08-25
| ||
04:07 | [581a2ce014] part of check-in [fd584d1ccf] Host parameter names conform to SQL-2003. (CVS 1902) (check-in: [fd584d1ccf] user: drh branch: trunk, size: 33243) | |
2004-08-20
| ||
16:02 | [8b4cab1901] part of check-in [d3be0b7c5a] Add support for named wildcards in SQL statements. (CVS 1897) (check-in: [d3be0b7c5a] user: drh branch: trunk, size: 33387) | |
2004-08-19
| ||
15:12 | [7b71425aa0] part of check-in [28215096e0] Enhance lemon so that a @X instead of just X in the code expands to the major token value rather than the minor token value. Use this to make the parser a few hundred bytes smaller. (CVS 1895) (check-in: [28215096e0] user: drh branch: trunk, size: 33186) | |
2004-08-01
| ||
00:10 | [589b1a39b2] part of check-in [b56afe640f] Add the ".import" command to the command-line shell. (CVS 1873) (check-in: [b56afe640f] user: drh branch: trunk, size: 33210) | |
2004-07-22
| ||
15:02 | [0bcc53bba4] part of check-in [b0a3becd82] Fix bugs associated with the codec. (CVS 1846) (check-in: [b0a3becd82] user: drh branch: trunk, size: 33241) | |
2004-07-20
| ||
14:06 | [1c22ccb2b6] part of check-in [3c5aa850ee] Lemon collapses common destructors and reduce actions into a single case. (CVS 1837) (check-in: [3c5aa850ee] user: drh branch: trunk, size: 32980) | |
2004-06-30
| ||
09:49 | [51c8e69627] part of check-in [152e9940b9] Coverage tests for vacuum.c (CVS 1776) (check-in: [152e9940b9] user: danielk1977 branch: trunk, size: 32991) | |
2004-06-26
| ||
06:37 | [e19e066e72] part of check-in [212de3ce66] Remove default_synchronous and temp_store pragmas. Allow the safety-level and cache-size to be set for attached databases. (CVS 1735) (check-in: [212de3ce66] user: danielk1977 branch: trunk, size: 32983) | |
2004-06-09
| ||
09:55 | [0974386749] part of check-in [c634e71f19] Some progress on user-defined collation sequences. (CVS 1544) (check-in: [c634e71f19] user: danielk1977 branch: trunk, size: 32962) | |
00:48 | [19972fbaa3] part of check-in [1086196460] Start all transactions and verify all schema cookies near the beginning of of each vdbe program. (CVS 1543) (check-in: [1086196460] user: drh branch: trunk, size: 32632) | |
2004-05-31
| ||
08:55 | [27c1ce09f9] part of check-in [9029274b61] Remove the <ON CONFLICT> clause from BEGIN (CVS 1501) (check-in: [9029274b61] user: danielk1977 branch: trunk, size: 32632) | |
2004-05-29
| ||
10:23 | [facaa7d078] part of check-in [4feb4b9a71] Fix vacuum so that it works with blobs. (CVS 1490) (check-in: [4feb4b9a71] user: danielk1977 branch: trunk, size: 32644) | |
02:37 | [fbb2378795] part of check-in [4060a37d0b] Allow CREATE and DROP TRIGGER on attached databases. (CVS 1488) (check-in: [4060a37d0b] user: danielk1977 branch: trunk, size: 32621) | |
2004-05-28
| ||
12:33 | [9d3be712ab] part of check-in [ad879a957d] Allow CREATE and DROP VIEW on attached databases. (CVS 1485) (check-in: [ad879a957d] user: danielk1977 branch: trunk, size: 32568) | |
12:11 | [32d6d4b209] part of check-in [2fb3708e10] Allow DROP TABLE and DROP INDEX on attached databases. (CVS 1484) (check-in: [2fb3708e10] user: danielk1977 branch: trunk, size: 32521) | |
11:37 | [1ab0393a97] part of check-in [4984a130cc] Allow CREATE TABLE and CREATE INDEX on attached databases. (CVS 1483) (check-in: [4984a130cc] user: danielk1977 branch: trunk, size: 32487) | |
2004-05-27
| ||
17:22 | [63d39b6fe1] part of check-in [287f86731c] Remove the COPY command. (CVS 1477) (check-in: [287f86731c] user: drh branch: trunk, size: 32513) | |
09:28 | [1a39b21982] part of check-in [67a140cf78] Various bugfixes. 68 Test cases still fail. (CVS 1471) (check-in: [67a140cf78] user: danielk1977 branch: trunk, size: 32875) | |
2004-05-20
| ||
23:37 | [567718866b] part of check-in [b032b646b7] Fix a bug that prevented sorting by index. Down to 162 failed tests. (CVS 1421) (check-in: [b032b646b7] user: drh branch: trunk, size: 32800) | |
22:16 | [7c8eb3a305] part of check-in [a6cb09d7af] Add internal support for collating sequences. This breaks 244 tests. (CVS 1420) (check-in: [a6cb09d7af] user: drh branch: trunk, size: 32784) | |
12:41 | [4ed66f1258] part of check-in [8411718f0a] Fix problems with types and the recognition of BLOB as having no affinity. (CVS 1418) (check-in: [8411718f0a] user: drh branch: trunk, size: 32837) | |
2004-05-18
| ||
10:06 | [d2e2266507] part of check-in [ad4a964158] Fix many problems with manifest types and column affinity. Most things are working now. (CVS 1393) (check-in: [ad4a964158] user: danielk1977 branch: trunk, size: 32813) | |
2004-05-08
| ||
08:23 | [d0258aa3cc] part of check-in [8af6474c49] Change lots of internal symbols from sqliteXXX to sqlite3XXX so that the library links again. It doesn't work yet, due to changes in the btree layer calling convention. (CVS 1324) (check-in: [8af6474c49] user: danielk1977 branch: trunk, size: 32810) | |
2004-02-22
| ||
18:40 | [023720cb8c] part of check-in [69aac043af] Use sqliteErrorMsg instead of sqliteSetString whereever practical. (CVS 1264) (check-in: [69aac043af] user: drh branch: trunk, size: 32550) | |
16:27 | [b990b5841e] part of check-in [d372c16ec6] Rearrange the grammar some so that tokens that are used together appear together in the grammar file. This reduces the size of the parser tables and some of the jump tables in switch statements. (CVS 1262) (check-in: [d372c16ec6] user: drh branch: trunk, size: 32635) | |
2004-02-14
| ||
23:59 | [226bbdba2d] part of check-in [2dbc4593ca] Eliminate obsolete code associated with the older callback functionality. (CVS 1243) (check-in: [2dbc4593ca] user: drh branch: trunk, size: 32377) | |
2004-02-12
| ||
18:46 | [1e311dc6aa] part of check-in [800c11f4bc] Add hooks on each attached database connection for storing auxiliary information. Add the USING clause to ATTACH. (CVS 1232) (check-in: [800c11f4bc] user: drh branch: trunk, size: 32430) | |
17:28 | [eb3af3b6e6] part of check-in [a6b862a9db] All REPLACE INTO syntax inside of triggers. Ticket #610. (CVS 1231) (check-in: [a6b862a9db] user: drh branch: trunk, size: 32300) | |
2004-01-24
| ||
20:18 | [7a121554c0] part of check-in [3626f6d4a1] Add the ability to group FROM terms using parentheses. Names of columns in a join no longer include the table name. (CVS 1197) (check-in: [3626f6d4a1] user: drh branch: trunk, size: 32306) | |
2004-01-15
| ||
03:30 | [e41722d111] part of check-in [01874d252a] Allow "expr IN table" as a shorthand for "expr IN (SELECT * FROM table)" (CVS 1180) (check-in: [01874d252a] user: drh branch: trunk, size: 32027) | |
2003-12-06
| ||
21:43 | [c65aa6c550] part of check-in [656c90387a] Always use "(char*)0" to terminate the argument list of sqliteSetString(). This is needed for 64-bit systems that use a 32-bit integer by default. (CVS 1126) (check-in: [656c90387a] user: drh branch: trunk, size: 31373) | |
2003-11-27
| ||
00:48 | [1c72ca2a1f] part of check-in [72bf73b2c1] Disallow temporary indices on persistent tables. (CVS 1122) (check-in: [72bf73b2c1] user: drh branch: trunk, size: 31366) | |
2003-09-30
| ||
01:54 | [ec5d0d0a59] part of check-in [95b27ebd13] All LIKE and GLOB operators to use function notation. "A LIKE B" can be expressed as "LIKE(B,A)". (CVS 1108) (check-in: [95b27ebd13] user: drh branch: trunk, size: 31379) | |
2003-09-27
| ||
13:39 | [8ef7f4e09b] part of check-in [824430b3ce] Remove support for the Oracle8 outer join syntax. (CVS 1106) (check-in: [824430b3ce] user: drh branch: trunk, size: 31370) | |
2003-09-06
| ||
22:18 | [121daf2125] part of check-in [990bb11898] Update Makefile.in for the new vdbeaux.c file. Remove the experimental "sqlite_instantiate()" routine and replace it with "sqlite_bind()" which is more like ODBC and JDBC. (CVS 1095) (check-in: [990bb11898] user: drh branch: trunk, size: 31509) | |
01:10 | [5cd707f0e5] part of check-in [912f47c72d] The beginnings of changes to support pre-compiled SQL. Mostly untested, though all regression tests to pass. (CVS 1093) (check-in: [912f47c72d] user: drh branch: trunk, size: 31467) | |
2003-07-16
| ||
02:19 | [16aed0e3ed] part of check-in [e6a752bfef] Allow negative values for LIMIT and OFFSET. Add tests for negative LIMITs and OFFSETs. Make the OFFSET work even if LIMIT is 0 or negative. (CVS 1052) (check-in: [e6a752bfef] user: drh branch: trunk, size: 31396) | |
2003-05-17
| ||
19:04 | [917250e5d8] part of check-in [c8c823b068] Prevent an infinite loop when deleting a table that has a TEMP trigger. (CVS 984) (check-in: [c8c823b068] user: drh branch: trunk, size: 31320) | |
2003-04-29
| ||
17:19 | [39b5240cb7] part of check-in [1a0c542088] Allow the ASC or DESC keyword to appear after a column name in a CREATE INDEX statement. SQLite indices are aways ASC (ascending) regardless of which keyword is used. (CVS 943) (check-in: [1a0c542088] user: drh branch: trunk, size: 31322) | |
2003-04-21
| ||
18:48 | [15ae47e7dd] part of check-in [58ddd587b0] Add support for TEMPORARY triggers. Such triggers can write temporary or permanent tables. (CVS 926) (check-in: [58ddd587b0] user: drh branch: trunk, size: 31322) | |
2003-04-17
| ||
22:57 | [ad40843ae5] part of check-in [1e5e00fb73] Fix triggers to work in an ATTACHed database. Ticket #295. (CVS 915) (check-in: [1e5e00fb73] user: drh branch: trunk, size: 31167) | |
2003-03-31
| ||
00:30 | [3be47fa183] part of check-in [c7c5e927a5] The ATTACH and DETACH statements are now coded but are still mostly untested. (CVS 890) (check-in: [c7c5e927a5] user: drh branch: trunk, size: 31166) | |
2003-03-27
| ||
12:51 | [243cfc277d] part of check-in [d2fb2bb50c] Changes to the "sqlite" structure that allow simultaneous operations on multiple database files. Many regession tests pass - but not all of them. Do not use this version except for debugging SQLite itself. (CVS 883) (check-in: [d2fb2bb50c] user: drh branch: trunk, size: 31091) | |
2003-03-20
| ||
01:16 | [7a9f333e7b] part of check-in [a5d8fc95ee] Record the database name in addition to the table name for DELETE, INSERT, and UPDATE statements. (CVS 879) (check-in: [a5d8fc95ee] user: drh branch: trunk, size: 30575) | |
2003-02-20
| ||
00:44 | [4c4b2ff3d2] part of check-in [6ef91a364b] Fix the parsing of the LIMIT clause when the limit and offset are separated by a comma. The offset comes before the limit in that case. Ticket #245. (CVS 872) (check-in: [6ef91a364b] user: drh branch: trunk, size: 30016) | |
2003-01-29
| ||
18:46 | [cdaed50094] part of check-in [ccc82f1ab4] Better error messages on constraint violations. Additional tests and bug fixes for the callback-free API. (CVS 854) (check-in: [ccc82f1ab4] user: drh branch: trunk, size: 29928) | |
2003-01-28
| ||
23:13 | [aea0819c07] part of check-in [065fa818ff] First code for the new callback-free API. All regression tests pass but the new API is mostly untested and is unlikely to work. (CVS 852) (check-in: [065fa818ff] user: drh branch: trunk, size: 29902) | |
2003-01-18
| ||
20:11 | [a4fbfbe3c4] part of check-in [71cc292dce] Fix datatype reporting and collating sequence selection so that it works correctly on views and with the UNION, EXCEPT, and INTERCEPT operators. (CVS 839) (check-in: [71cc292dce] user: drh branch: trunk, size: 29711) | |
2003-01-13
| ||
23:27 | [58655a5081] part of check-in [45de93f913] Revise the sqlite_set_authorizer API to provide more detailed information about the SQL statement being authorized. Only partially tested so far. (CVS 830) (check-in: [45de93f913] user: drh branch: trunk, size: 29715) | |
2003-01-07
| ||
02:47 | [427a17888c] part of check-in [a362981b20] More optimizations. (CVS 816) (check-in: [a362981b20] user: drh branch: trunk, size: 29713) | |
2002-10-27
| ||
19:35 | [469c9636ff] part of check-in [31df3690d0] Minimal support for oracle8 outer join syntax. (CVS 771) (check-in: [31df3690d0] user: drh branch: trunk, size: 29696) | |
2002-10-22
| ||
23:38 | [e37e66aa0a] part of check-in [3b68aa25c4] Correctly handle column names and string constants in parentheses. Fix for ticket #179. (CVS 770) (check-in: [3b68aa25c4] user: drh branch: trunk, size: 29557) | |
2002-08-31
| ||
18:53 | [818b03a73f] part of check-in [170711ca65] Parse foreign key constraints and populate internal data structures appropriately. Constraints are still not enforced. (CVS 738) (check-in: [170711ca65] user: drh branch: trunk, size: 29659) | |
2002-08-24
| ||
18:24 | [1b180e14b6] part of check-in [22d8726e61] Change the way token memory is allocated in an effort to fix ticket #136. There is now a memory leak when using views of views. (CVS 725) (check-in: [22d8726e61] user: drh branch: trunk, size: 28323) | |
2002-08-18
| ||
22:41 | [5de87bb0f5] part of check-in [39bd52d330] This COLLATE keyword was not being parsed correctly inside CREATE TABLE statements - it was being included as part of the datatype. This fixes the problem. (CVS 722) (check-in: [39bd52d330] user: drh branch: trunk, size: 28087) | |
2002-08-11
| ||
20:10 | [66e7da55b3] part of check-in [ce4b943bf6] Fix for ticket #9: Add the ability to read little-endian database files from a big-endian machine and vice versa. (CVS 704) (check-in: [ce4b943bf6] user: drh branch: trunk, size: 28095) | |
2002-07-15
| ||
18:55 | [5307e1a7b2] part of check-in [7e918c8b0d] Fix for ticket #102: Honor the ORDER BY clause in subqueries. (CVS 677) (check-in: [7e918c8b0d] user: drh branch: trunk, size: 28072) | |
2002-07-08
| ||
22:03 | [9267b76818] part of check-in [87cd10c1f6] Add support for TEMPORARY views. The code is here but it is mostly untested. (CVS 668) (check-in: [87cd10c1f6] user: drh branch: trunk, size: 28157) | |
2002-07-05
| ||
21:42 | [35437ac294] part of check-in [b4737a16c9] All the code is now in place for SQLite to distinguish between NUMERIC and TEXT datatypes. Still need to turn on the new code and test it. (CVS 659) (check-in: [b4737a16c9] user: drh branch: trunk, size: 28146) | |
2002-07-01
| ||
12:27 | [dcaf21965b] part of check-in [1f8a73b1c3] Fix for tickets #90 and #89: Make the AS keyword optional again. (CVS 654) (check-in: [1f8a73b1c3] user: drh branch: trunk, size: 28133) | |
2002-06-25
| ||
01:09 | [c75ea2580d] part of check-in [9c1432bf74] Added support for the "sqlite_temp_master" table. Increased the version number to 2.5.2. (CVS 640) (check-in: [9c1432bf74] user: drh branch: trunk, size: 27892) | |
2002-06-17
| ||
17:07 | [2285d8967d] part of check-in [05783a9db5] Add preliminary logic for the eventual move to having separate TEXT and NUMTEXT datatypes. Also change the version number to 2.5.0 in preparation for an interim release. (CVS 625) (check-in: [05783a9db5] user: drh branch: trunk, size: 27828) | |
2002-06-11
| ||
02:25 | [42920305d4] part of check-in [d4a2fb1006] Add RAISE() function, which allows more advanced flow-control in trigger programs (ticket #55) (CVS 614) (check-in: [d4a2fb1006] user: danielk1977 branch: trunk, size: 27559) | |
2002-06-06
| ||
19:04 | [3b4989cb81] part of check-in [c0cb3a012e] Additional grammar cleanup resulting from the %fallback directive. (CVS 606) (check-in: [c0cb3a012e] user: drh branch: trunk, size: 26902) | |
18:54 | [e8c65150e8] part of check-in [7ac5bd293c] Added the %fallback directive to the lemon parser generator and used this in the parser to make the parse tables much smaller. This reduced the size of the library by 15K. (CVS 605) (check-in: [7ac5bd293c] user: drh branch: trunk, size: 28045) | |
2002-06-02
| ||
18:19 | [68c0ab3d6b] part of check-in [6fdcee3c99] Add the ability to parse FOREIGN KEYs. Foreign keys are still ignored, but at least they now do not cause a syntax error. (CVS 603) (check-in: [6fdcee3c99] user: drh branch: trunk, size: 27699) | |
2002-05-24
| ||
16:14 | [c681da701b] part of check-in [e238643efd] Add support for the full SQL join syntax. This is just a parser enhancement. We now recognize all kinds of joins, but we don't actually do anything with them yet. (CVS 586) (check-in: [e238643efd] user: drh branch: trunk, size: 26577) | |
02:04 | [8053fead16] part of check-in [a167b71d8c] Split the IdList structure into IdList and SrcList. SrcList is used to represent a FROM clause and IdList is used for everything else. This change allows SrcList to grow to support outer joins without burdening the other uses of IdList. (CVS 584) (check-in: [a167b71d8c] user: drh branch: trunk, size: 25261) | |
2002-05-23
| ||
00:30 | [3f2f7334aa] part of check-in [275ba356f3] Do not allow triggers on the SQLITE_MASTER table. (CVS 579) (check-in: [275ba356f3] user: drh branch: trunk, size: 24767) | |
2002-05-21
| ||
11:38 | [964a7cc954] part of check-in [37dbdd551e] Additional code cleanup resulting from a review of the new trigger code. (CVS 572) (check-in: [37dbdd551e] user: drh branch: trunk, size: 24733) | |
2002-05-15
| ||
14:17 | [12d6f6c0d1] part of check-in [f45c4b767a] Fix for ticket #41: Better handling of CREATE TRIGGER in the sqlite_complete() function. (CVS 567) (check-in: [f45c4b767a] user: drh branch: trunk, size: 24600) | |
08:30 | [164789531d] part of check-in [794bf67b6b] Added FOR EACH ROW triggers functionality (CVS 562) (check-in: [794bf67b6b] user: danielk1977 branch: trunk, size: 24575) | |
2002-05-08
| ||
21:46 | [83850a81fe] part of check-in [1b0ee944c9] Fix for ticket #35: Ignore any ORDER BY clause on a subquery in a FROM clause. (CVS 557) (check-in: [1b0ee944c9] user: drh branch: trunk, size: 22264) | |
2002-04-20
| ||
14:24 | [0ce56f1c75] part of check-in [51572bf717] Fix for ticket #1: Implement the GLOB and LIKE operators as functions that can be overridden. This way, a developer can change the LIKE operator to be case sensitive, for example. (CVS 537) (check-in: [51572bf717] user: drh branch: trunk, size: 22094) | |
2002-04-06
| ||
13:57 | [9a8a2311dd] part of check-in [28ce42f787] Make the FROM clause on a SELECT optional. If omitted, the result of the SELECT is a single row consisting of the values in the expression list. (CVS 520) (check-in: [28ce42f787] user: drh branch: trunk, size: 21985) | |
2002-04-04
| ||
02:10 | [d63f93b67e] part of check-in [c2320eabfe] Fix for bug #2: Add support for TABLE.* in SELECT statements. (CVS 518) (check-in: [c2320eabfe] user: drh branch: trunk, size: 21907) | |
2002-03-30
| ||
15:26 | [a0943e2774] part of check-in [d2bdc0feeb] Fix for bug #3: Allow VIEW as a column name. Also allow COPY. (CVS 507) (check-in: [d2bdc0feeb] user: drh branch: trunk, size: 21697) | |
2002-03-24
| ||
13:13 | [e6f300a355] part of check-in [836b59d057] Added support for CASE expressions - patches from Dan Kennedy. (CVS 437) (check-in: [836b59d057] user: drh branch: trunk, size: 21629) | |
2002-03-13
| ||
18:54 | [9a8be2eeba] part of check-in [c0e3f1c592] Fix bug in anonymous subquery in a join. Parser requires a semicolon or end-of-input before executing. (CVS 429) (check-in: [c0e3f1c592] user: drh branch: trunk, size: 20835) | |
2002-03-05
| ||
01:11 | [f7483ccff7] part of check-in [414da4af1f] Add the ability to turn of calls to fsync() using the "synchronous" pragma. Increased the default cache size from 100 to 2000 and made the "cache_size" pragma persistent. (CVS 418) (check-in: [414da4af1f] user: drh branch: trunk, size: 20826) | |
2002-03-03
| ||
23:06 | [25b794bfbe] part of check-in [8130776230] More bugs fixed for views. (CVS 416) (check-in: [8130776230] user: drh branch: trunk, size: 20826) | |
2002-03-02
| ||
17:04 | [d62960cdee] part of check-in [d5d3e79cc5] Subquery flattening is implemented and passes all regression tests. We still need to add addition tests to the suite to further exercise the flattener, however. (CVS 408) (check-in: [d5d3e79cc5] user: drh branch: trunk, size: 20821) | |
2002-02-23
| ||
02:32 | [fc460cda6f] part of check-in [39fed2df11] Code to implement CREATE VIEW is in place. A quick smoke test shows that it works, but there are probably still many bugs. (CVS 387) (check-in: [39fed2df11] user: drh branch: trunk, size: 20812) | |
2002-02-18
| ||
22:49 | [b822789179] part of check-in [553579f936] Bug fix: CREATE TABLE, followed by DROP TABLE within the same transaction is working now. (CVS 378) (check-in: [553579f936] user: drh branch: trunk, size: 20582) | |
18:30 | [722bc0b6aa] part of check-in [78a50971e9] Add support for CREATE TABLE AS. (CVS 377) (check-in: [78a50971e9] user: drh branch: trunk, size: 20534) | |
13:56 | [39c336ff9a] part of check-in [ec1f3fae6f] Allow general expressions in the VALUES clause of an INSERT statement. (CVS 376) (check-in: [ec1f3fae6f] user: drh branch: trunk, size: 20514) | |
01:17 | [f7a6d8122b] part of check-in [89ffa9ff13] Add support for subqueries in the FROM clause of a SELECT. Still need to add tests for this feature. (CVS 372) (check-in: [89ffa9ff13] user: drh branch: trunk, size: 21215) | |
2002-02-03
| ||
17:37 | [734ba1e0dc] part of check-in [7c65029e5b] Put in PRAGMA SANITY_CHECK in place of VACUUM. (CVS 365) (check-in: [7c65029e5b] user: drh branch: trunk, size: 20947) | |
00:56 | [f081d7d4ef] part of check-in [0115518f8e] Five-algorithm conflict resolution appears to be working. (CVS 363) (check-in: [0115518f8e] user: drh branch: trunk, size: 20874) | |
2002-02-02
| ||
15:01 | [88856227ae] part of check-in [aaa53e113e] Checkpoint code added to the pager. Regression tests work but the new APIs have not been tested yet. (CVS 361) (check-in: [aaa53e113e] user: drh branch: trunk, size: 21088) | |
2002-01-31
| ||
15:54 | [90e9fc913c] part of check-in [d0e7cf4a83] Change to five conflict resolution algorithms: ROLLBACK, ABORT, FAIL, IGNORE, and REPLACE. This checkin is code only. Documentation and tests are still needed. Also, ABORT is not fully implemented. (CVS 360) (check-in: [d0e7cf4a83] user: drh branch: trunk, size: 20752) | |
2002-01-30
| ||
16:17 | [e80f1cf6a2] part of check-in [cf1538d71c] Added ON CONFLICT support to COPY. Updates to documentation. Bug fixes. (CVS 359) (check-in: [cf1538d71c] user: drh branch: trunk, size: 20582) | |
2002-01-29
| ||
18:41 | [fd79a09265] part of check-in [e00a9ff8f9] Beginning to insert the infrastructure for ON CONFLICT clauses. (CVS 355) (check-in: [e00a9ff8f9] user: drh branch: trunk, size: 20554) | |
2002-01-06
| ||
17:07 | [f3fc4fb576] part of check-in [9b0be4fcc1] Comment updates most. Also some small changes to the VDBE. (CVS 339) (check-in: [9b0be4fcc1] user: drh branch: trunk, size: 19528) | |
2001-12-22
| ||
14:49 | [f050644e7a] part of check-in [29cab124b4] Bug fixing in the new integer primary key code. (CVS 334) (check-in: [29cab124b4] user: drh branch: trunk, size: 19494) | |
2001-12-21
| ||
14:30 | [c62f32e332] part of check-in [236a54d289] Added support for the INTEGER PRIMARY KEY column type. (CVS 333) (check-in: [236a54d289] user: drh branch: trunk, size: 19494) | |
2001-12-16
| ||
20:05 | [23ff6728eb] part of check-in [ffbdd43f5d] Added the ability to say things like "SELECT rowid, * FROM table1;" (CVS 332) (check-in: [ffbdd43f5d] user: drh branch: trunk, size: 19509) | |
2001-11-06
| ||
04:00 | [5295f393f4] part of check-in [eb07768ae9] Implement indices that occur in sort order and the LIMIT...OFFSET clause of SELECT statements. (CVS 301) (check-in: [eb07768ae9] user: drh branch: trunk, size: 19420) | |
2001-10-13
| ||
02:59 | [148e4cd134] part of check-in [75e90cf09b] 2.0.3 (CVS 287) (check-in: [75e90cf09b] user: drh branch: trunk, size: 18964) | |
2001-10-12
| ||
17:30 | [2275a832b5] part of check-in [0a7848b619] Fix an assertion failure when the disk fills up. Add tests for a full disk situation. (CVS 285) (check-in: [0a7848b619] user: drh branch: trunk, size: 18964) | |
2001-10-08
| ||
13:22 | [e88f1efe09] part of check-in [9368c62e40] Support for temporary tables added. Still need more testing. (CVS 279) (check-in: [9368c62e40] user: drh branch: trunk, size: 18335) | |
2001-10-06
| ||
16:33 | [fcd3452640] part of check-in [b63b3f3684] Adding table column query capability to support ODBC. (CVS 278) (check-in: [b63b3f3684] user: drh branch: trunk, size: 18177) | |
2001-10-01
| ||
14:29 | [5ead6fe1e7] part of check-in [20382325c7] The .dump output uses INSERT instead of COPY now. Expression syntax of the form "expr NOT NULL" is now supported. (CVS 276) (check-in: [20382325c7] user: drh branch: trunk, size: 16999) | |
2001-09-27
| ||
15:11 | [7a61488cb5] part of check-in [116fdad068] Fixed the support of UNIQUE and PRIMARY KEY. (CVS 268) (check-in: [116fdad068] user: drh branch: trunk, size: 16783) | |
03:22 | [a136e0a24c] part of check-in [34c42967f3] Added basic support for enforcement of UNIQUE on indices and primary keys. Support for addition constraints is to follow. (CVS 267) (check-in: [34c42967f3] user: drh branch: trunk, size: 16667) | |
2001-09-16
| ||
00:13 | [2bcf47bb8e] part of check-in [4e926efe2b] Disclaimed copyright. Preparing for release 2.0. (CVS 250) (check-in: [4e926efe2b] user: drh branch: trunk, size: 16595) | |
2001-09-14
| ||
18:54 | [8b30e07220] part of check-in [5e3724603e] Added a PRAGMA statement. Took out the special comment parsing. (CVS 245) (check-in: [5e3724603e] user: drh branch: trunk, size: 17150) | |
2001-04-11
| ||
14:28 | [8fc0969489] part of check-in [86b30cd097] better handling of out-of-memory errors (CVS 207) (check-in: [86b30cd097] user: drh branch: trunk, size: 16567) | |
2001-04-04
| ||
11:48 | [1ba81d3b75] part of check-in [35a8feed0d] Added transaction support (CVS 196) (check-in: [35a8feed0d] user: drh branch: trunk, size: 16481) | |
2001-01-04
| ||
14:20 | [25ee4d8efc] part of check-in [d49e10fb5e] :-) (CVS 171) (check-in: [d49e10fb5e] user: drh branch: trunk, size: 15399) | |
2000-08-01
| ||
09:56 | [5d199034de] part of check-in [bffca90f37] fix parser stack overflow (CVS 119) (check-in: [bffca90f37] user: drh branch: trunk, size: 15398) | |
2000-07-29
| ||
13:06 | [754653f073] part of check-in [3bf434d93a] better column labels in select results (CVS 110) (check-in: [3bf434d93a] user: drh branch: trunk, size: 15398) | |
2000-06-21
| ||
13:59 | [86e268c29a] part of check-in [e1bf96a467] :-) (CVS 104) (check-in: [e1bf96a467] user: drh branch: trunk, size: 14848) | |
2000-06-19
| ||
19:09 | [974ed07702] part of check-in [8cce4d279d] :-) (CVS 102) (check-in: [8cce4d279d] user: drh branch: trunk, size: 14831) | |
2000-06-16
| ||
20:51 | [766844e4c6] part of check-in [1d4fe5599e] :-) (CVS 100) (check-in: [1d4fe5599e] user: drh branch: trunk, size: 14820) | |
2000-06-09
| ||
14:14 | [6a3085fd8e] part of check-in [d573b431ed] :-) (CVS 91) (check-in: [d573b431ed] user: drh branch: trunk, size: 14732) | |
2000-06-08
| ||
16:26 | [03d246c261] part of check-in [33355b2d8d] :-) (CVS 82) (check-in: [33355b2d8d] user: drh branch: trunk, size: 14740) | |
15:10 | [389687d20f] part of check-in [61c381e7e6] :-) (CVS 81) (check-in: [61c381e7e6] user: drh branch: trunk, size: 14796) | |
13:36 | [e6c61f2062] part of check-in [bf98cf82a7] remove all memory leaks (CVS 80) (check-in: [bf98cf82a7] user: drh branch: trunk, size: 14882) | |
2000-06-07
| ||
23:51 | [bb2126c831] part of check-in [2ffeb8509c] :-) (CVS 74) (check-in: [2ffeb8509c] user: drh branch: trunk, size: 14934) | |
14:42 | [4a2e6b1417] part of check-in [5d773b5d4e] :-) (CVS 1697) (check-in: [5d773b5d4e] user: drh branch: trunk, size: 14926) | |
2000-06-06
| ||
21:56 | [8b632f4c4f] part of check-in [f4d9089c5d] :-) (CVS 62) (check-in: [f4d9089c5d] user: drh branch: trunk, size: 14817) | |
17:27 | [210c888c05] part of check-in [db88a0c2d4] GROUP BY and HAVING installed (CVS 58) (check-in: [db88a0c2d4] user: drh branch: trunk, size: 14390) | |
13:54 | [51ef63a49e] part of check-in [54d198189b] added IN and BETWEEN operators (CVS 57) (check-in: [54d198189b] user: drh branch: trunk, size: 14029) | |
01:50 | [9c45921244] part of check-in [bd8b2645cc] :-) (CVS 55) (check-in: [bd8b2645cc] user: drh branch: trunk, size: 13276) | |
2000-06-05
| ||
18:54 | [79b4032409] part of check-in [c02268bdf4] :-) (CVS 52) (check-in: [c02268bdf4] user: drh branch: trunk, size: 12888) | |
16:01 | [020e5da71e] part of check-in [ce45dea902] separate Select structure (CVS 51) (check-in: [ce45dea902] user: drh branch: trunk, size: 12796) | |
2000-06-03
| ||
19:19 | [9ec486608b] part of check-in [729d6586b8] :-) (CVS 47) (check-in: [729d6586b8] user: drh branch: trunk, size: 12366) | |
18:06 | [64d9e48089] part of check-in [27c0678623] added default values (CVS 46) (check-in: [27c0678623] user: drh branch: trunk, size: 12280) | |
2000-05-31
| ||
20:00 | [16322c46ec] part of check-in [1f0c4ffd98] added DISTINCT on select (CVS 27) (check-in: [1f0c4ffd98] user: drh branch: trunk, size: 11256) | |
18:20 | [038e0f0fd2] part of check-in [35a8f523e8] :-) (CVS 25) (check-in: [35a8f523e8] user: drh branch: trunk, size: 11129) | |
15:34 | [bdfcd0a3fe] part of check-in [dee7a8be88] added aggregate functions like count(*) (CVS 21) (check-in: [dee7a8be88] user: drh branch: trunk, size: 11345) | |
02:27 | [05de7dec04] part of check-in [01d85b35e9] :-) (CVS 20) (check-in: [01d85b35e9] user: drh branch: trunk, size: 11356) | |
2000-05-30
| ||
16:27 | [50ca06d471] part of check-in [8d66c7355d] :-) (CVS 15) (check-in: [8d66c7355d] user: drh branch: trunk, size: 11087) | |
2000-05-29
| ||
20:41 | Added: [265c859659] part of check-in [1517f85243] :-) (CVS 6) (check-in: [1517f85243] user: drh branch: trunk, size: 10851) | |