Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
History for src/table.c
2020-05-17
| ||
00:26 | [0f141b58a1] part of check-in [1313557b51] Use the sqlite3Realloc() interface internally, rather than the public sqlite3_realloc64() equivalent, to avoid unnecessary calls to sqlite3_initialize(). (check-in: [1313557b51] user: drh branch: trunk, size: 6113) | |
2017-01-19
| ||
21:20 | [b46ad56774] part of check-in [9ed3852161] If compiled with SQLITE_INLINE_MEMCPY, all memcpy() calls are replaced with in-line code. With that change, cachegrind shows which memcpy() calls are taking the most time. This is a performance-measurement hack only and is not for production use. (check-in: [9ed3852161] user: drh branch: trunk, size: 6119) | |
2016-02-13
| ||
23:43 | [5226df15ab] part of check-in [6a9c4a3ebf] Enhance ability to debug out-of-memory errors. (check-in: [6a9c4a3ebf] user: mistachkin branch: noMemBkpt, size: 6159) | |
2015-04-29
| ||
16:50 | [51b46b2a62] part of check-in [48f553b05c] Use sqlite3_malloc64() in place of sqlite3_malloc() internally. (check-in: [48f553b05c] user: drh branch: trunk, size: 6144) | |
2014-12-20
| ||
21:14 | [e7a0921531] part of check-in [cb3e4219ac] Minor fixes and enhancements to the SQLITE_ENABLE_API_ARMOR functionality. (check-in: [cb3e4219ac] user: mistachkin branch: trunk, size: 6138) | |
2014-10-24
| ||
00:35 | [f142bba790] part of check-in [c297a84bc6] Add the SQLITE_ENABLE_API_ARMOR compile-time option. This is a work in progress and is not yet completely functional. (check-in: [c297a84bc6] user: drh branch: api-armor, size: 6109) | |
2014-09-18
| ||
01:21 | [2e99ef7ef1] part of check-in [163bfae858] Fix compiler warnings and change the nullMem structure initializer into a format that MSVC can understand. (check-in: [163bfae858] user: drh branch: micro-optimizations, size: 6023) | |
2014-09-09
| ||
17:27 | [218ae2ba02] part of check-in [94954850cf] Add new APIs that take 64-bit length parameters: sqlite3_malloc64(), sqlite3_realloc64(), sqlite3_bind_blob64(), sqlite3_bind_texte64(), sqlite3_result_blob64(), and sqlite3_result_texte64(). Internal memory allocation routines also now use 64-bit unsigned length parameters for safety. Also add the sqlite3_msize() interface. Fix the sqlite3_get_table() to use sqlite3_realloc64() to avoid a integer overflow problem. (check-in: [94954850cf] user: drh branch: 64-bit-lengths, size: 6018) | |
2014-09-06
| ||
16:39 | [4e28a53e66] part of check-in [e62aab5e92] Fix typos in comments. No code changes. (check-in: [e62aab5e92] user: peter.d.reid branch: trunk, size: 6016) | |
2009-11-10
| ||
01:30 | [2cd62736f8] part of check-in [f6c045f649] Remove the obsolete "$Id:$" RCS identifier strings from the source code. (check-in: [f6c045f649] user: drh branch: trunk, size: 6021) | |
2009-04-10
| ||
14:28 | [cc86ad3d6a] part of check-in [57e3e6b3cb] Simplifications and additional comments on the sqlite3_get_table() implementation. Changes to facilitate full branch test coverage. (CVS 6482) (check-in: [57e3e6b3cb] user: drh branch: trunk, size: 6077) | |
2009-01-19
| ||
20:49 | [332ab0ea69] part of check-in [7035c35dbe] Make sure the *pzErrMsg return from sqlite3_get_table() is aways zeroed. Ticket #3598. (CVS 6195) (check-in: [7035c35dbe] user: drh branch: trunk, size: 5646) | |
2008-12-10
| ||
19:26 | [23db1e5f27] part of check-in [c872d55493] Never use strlen(). Use our own internal sqlite3Strlen30() which is guaranteed to never overflow an integer. Additional explicit casts to avoid nuisance warning messages. (CVS 6007) (check-in: [c872d55493] user: drh branch: trunk, size: 5614) | |
2008-12-09
| ||
03:55 | [caf335a98a] part of check-in [59ae002068] Get rid of more silly compiler warnings. (CVS 5996) (check-in: [59ae002068] user: drh branch: trunk, size: 5610) | |
2008-07-08
| ||
22:28 | [2274478619] part of check-in [6cdb6841ff] Added macros to convert between 32-bit ints and 64-bit ptrs to avoid compiler warnings. (CVS 5378) (check-in: [6cdb6841ff] user: shane branch: trunk, size: 5607) | |
2008-05-16
| ||
04:51 | [1fa8f8113a] part of check-in [81a8c70ed7] Add more version tags to files that lack them. Ticket #3120. (CVS 5137) (check-in: [81a8c70ed7] user: danielk1977 branch: trunk, size: 5587) | |
2008-03-06
| ||
09:58 | [2c48c575dd] part of check-in [e2a9f5f105] Handle non-autoconf build correctly with new changes (CVS 4832) (check-in: [e2a9f5f105] user: mlcreech branch: trunk, size: 5567) | |
07:35 | [c688f2679d] part of check-in [54839a84e6] Use intptr_t definition to silence warnings about ptr-int casts (CVS 4824) (check-in: [54839a84e6] user: mlcreech branch: trunk, size: 5543) | |
2008-01-23
| ||
14:51 | [46ccf9b789] part of check-in [45c59802f6] Testing coverage enhancements to sqlite3_get_table() and to the SELECT code generator. (CVS 4746) (check-in: [45c59802f6] user: drh branch: trunk, size: 5523) | |
12:52 | [e97099ce0e] part of check-in [9f95d79dae] Improvements to test coverage in the lemon-generated parser and in the sqlite3_get_table() interface. (CVS 4745) (check-in: [9f95d79dae] user: drh branch: trunk, size: 5680) | |
2007-08-29
| ||
14:06 | [1aeb9eab57] part of check-in [c790c234c3] Use the DbMalloc() and DbRealloc() functions more consistently. (CVS 4323) (check-in: [c790c234c3] user: danielk1977 branch: trunk, size: 5733) | |
2007-08-16
| ||
10:09 | [c725e47f6f] 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: 5549) | |
2007-05-04
| ||
13:15 | [a8de75bced] part of check-in [ba4845b32b] Eliminate all uses of sprintf() and strcpy(). These were not being misused. But getting rid of them removes a library dependency. And it avoids warnings from the OpenBSD compiler. Ticket #2336. (CVS 3916) (check-in: [ba4845b32b] user: drh branch: trunk, size: 5545) | |
2006-09-15
| ||
07:28 | [6d0da66dde] part of check-in [ba579ddc43] Add support for extended result codes - additional result information carried in the higher bits of the integer return codes. This must be enabled using the sqlite3_extended_result_code() API. Only a few extra result codes are currently defined. (CVS 3422) (check-in: [ba579ddc43] user: drh branch: trunk, size: 5523) | |
2006-06-27
| ||
20:39 | [d8817f43a6] part of check-in [9f13972b93] Better handling of NULL column names. (CVS 3317) (check-in: [9f13972b93] user: drh branch: trunk, size: 5474) | |
2006-06-26
| ||
21:35 | [e707e822aa] part of check-in [85a66a25e9] Publish APIs sqlite3_malloc() and sqlite3_realloc() that use the OS-layer memory allocator. Convert sqlite3_free() and sqlite3_mprintf() to also use the OS-layer memory allocator. (CVS 3298) (check-in: [85a66a25e9] user: drh branch: trunk, size: 5528) | |
2006-02-10
| ||
18:08 | [f64ec4fbfe] part of check-in [d20a33ac2a] Make sure pointers are always aligned to 8-bytes when creating internal Index structures. (CVS 3079) (check-in: [d20a33ac2a] user: drh branch: trunk, size: 5464) | |
2005-11-24
| ||
22:33 | [486dcfce53] part of check-in [ab76453553] Make sure sqliteInt.h is included before any system includes. This is required for QNX. Ticket #1478. (CVS 2777) (check-in: [ab76453553] user: drh branch: trunk, size: 5405) | |
2005-10-06
| ||
16:53 | [e03b60eaab] part of check-in [edca8913ca] More efficient handling of the LIMIT clause. Scalar subqueries and EXISTS on compound SELECT statements now working properly. Ticket #1473. (CVS 2747) (check-in: [edca8913ca] user: drh branch: trunk, size: 5405) | |
2005-10-05
| ||
02:13 | [abc7b6946a] part of check-in [6d4bc8f83b] Add the SQLITE_OMIT_GET_TABLE compile-time flag. (CVS 2740) (check-in: [6d4bc8f83b] user: drh branch: trunk, size: 5399) | |
2004-09-30
| ||
13:43 | [25b3ff2b39] part of check-in [d0f1dc5898] Allow functions to be created when there are outstanding VMs. (Ticket #926) Fix problems with sqlite3_errcode(). Add tests for sqlite3_errcode(). (CVS 1989) (check-in: [d0f1dc5898] user: drh branch: trunk, size: 5338) | |
2004-09-25
| ||
14:39 | [549f324e32] part of check-in [9ef4c24a9a] Code cleanup: get rid of the sqlite3SetNString utility function. (CVS 1984) (check-in: [9ef4c24a9a] user: drh branch: trunk, size: 5312) | |
2004-09-06
| ||
17:24 | [8168c6e824] part of check-in [3ddf5a9d1c] Fix a naming conflict between sqlite versions 2 and 3. An open sqlite3 connection now *must* be called "sqlite3". You cannot call it "sqlite". This might break existing code. (CVS 1941) (check-in: [3ddf5a9d1c] user: drh branch: trunk, size: 5342) | |
2004-06-29
| ||
13:04 | [4521c27889] part of check-in [ba87834d86] Improved test coverage of table.c and printf.c. (CVS 1762) (check-in: [ba87834d86] user: drh branch: trunk, size: 5342) | |
2004-06-26
| ||
14:40 | [eea34544be] part of check-in [a4a2570822] Fold in changes submitted by the PHP developers. (CVS 1742) (check-in: [a4a2570822] user: drh branch: version_2, size: 5406) | |
2004-05-10
| ||
10:34 | [af14284fa3] part of check-in [2242423e31] Change the names of external symbols from sqlite_XXX to sqlite3_XXX. (CVS 1338) (check-in: [2242423e31] user: danielk1977 branch: trunk, size: 5420) | |
2004-05-08
| ||
08:23 | [882b0ae952] 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: 5404) | |
2003-12-06
| ||
21:43 | [d845cb101b] 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: 5399) | |
2003-05-17
| ||
00:05 | [4301926464] part of check-in [f1d955efd9] Fix memory allocation problem in the sqlite_get_table() API. Ticket #315. (CVS 976) (check-in: [f1d955efd9] user: drh branch: trunk, size: 5385) | |
2002-03-23
| ||
00:52 | [eed2098c9b] part of check-in [e2558c3403] The sqlite_get_table() function now returns an error if you pass in two or more SELECT statements that return different numbers of columns. (CVS 436) (check-in: [e2558c3403] user: drh branch: trunk, size: 5332) | |
2002-02-23
| ||
23:45 | [203a09d5d0] part of check-in [c490a1ff95] Added support for user-defined normal functions. Support for user-defined aggregates is pending. (CVS 390) (check-in: [c490a1ff95] user: drh branch: trunk, size: 4884) | |
2001-11-03
| ||
23:57 | [c89698bd5b] part of check-in [1c448f1fd2] Added "const" to lots of "char*" parameters in the API. (CVS 298) (check-in: [1c448f1fd2] user: drh branch: trunk, size: 4864) | |
2001-10-22
| ||
02:58 | [be9c7bf883] part of check-in [f8328a5f11] More changes for 2.0.7. (CVS 293) (check-in: [f8328a5f11] user: drh branch: trunk, size: 4864) | |
2001-10-20
| ||
12:30 | [7102da21a8] part of check-in [a835658e50] 2.0.7 (CVS 292) (check-in: [a835658e50] user: drh branch: trunk, size: 4740) | |
2001-10-19
| ||
16:44 | [4e8cbabfbc] part of check-in [8467d84fc6] Version 2.0.6 (CVS 291) (check-in: [8467d84fc6] user: drh branch: trunk, size: 4740) | |
2001-09-16
| ||
00:13 | [abd0adbe0f] part of check-in [4e926efe2b] Disclaimed copyright. Preparing for release 2.0. (CVS 250) (check-in: [4e926efe2b] user: drh branch: trunk, size: 4680) | |
2001-04-11
| ||
14:28 | [adcaf074f6] part of check-in [86b30cd097] better handling of out-of-memory errors (CVS 207) (check-in: [86b30cd097] user: drh branch: trunk, size: 5229) | |
2000-12-10
| ||
18:23 | [5be76051a8] part of check-in [ced90c3f93] speed tweaks and documentation updates (CVS 167) (check-in: [ced90c3f93] user: drh branch: trunk, size: 5230) | |
2000-10-11
| ||
19:28 | [f08189678c] part of check-in [3f0f1fa1fc] Misc cleanup. Notes on compiling for Win95. (CVS 152) (check-in: [3f0f1fa1fc] user: drh branch: trunk, size: 4308) | |
2000-09-29
| ||
13:30 | Added: [12f0165b47] part of check-in [e11f7527f9] :-) (CVS 147) (check-in: [e11f7527f9] user: drh branch: trunk, size: 4320) | |