sqlite/src
drh cf55b7aef7 Handle quotes on the table name in TABLE.* terms in SELECT statements.
Ticket #680. (CVS 1833)

FossilOrigin-Name: 826b6797a9f08c69b9378cb403d746e91a54dcde
2004-07-20 01:45:19 +00:00
..
attach.c A failed ATTACH leaves the database in a consistent state. Ticket #811. (CVS 1811) 2004-07-19 00:56:23 +00:00
auth.c Omit the DB_Locked and DB_Cookie flags. Other minor cleanup. (CVS 1642) 2004-06-19 16:06:10 +00:00
btree.c Fixes for compiler warnings. Also more coverage. (CVS 1775) 2004-06-30 08:20:16 +00:00
btree.h Remove the 'nMaster' argument from various pager and btree functions. (CVS 1737) 2004-06-26 08:38:24 +00:00
build.c Store schema cookies on the TEMP database. Ticket #807. (CVS 1817) 2004-07-19 17:25:24 +00:00
date.c Comment out all of date/time functions with SQLITE_OMIT_DATETIME_FUNCS. 2004-07-20 00:39:14 +00:00
delete.c Fix an uninitialized variable. The variable was harmless, but pedantic 2004-06-21 18:14:45 +00:00
encode.c Change lots of internal symbols from sqliteXXX to sqlite3XXX so that the 2004-05-08 08:23:19 +00:00
expr.c When comparing two expressions do not apply affinity to either operand. 2004-07-19 00:39:45 +00:00
func.c Use only unsigned characters for upper() and lower(). Ticket #708. (CVS 1808) 2004-07-18 23:06:53 +00:00
hash.c Do not use "new" as a variable name - some compilers think it is a keyword. (CVS 1787) 2004-06-30 22:43:21 +00:00
hash.h Change lots of internal symbols from sqliteXXX to sqlite3XXX so that the 2004-05-08 08:23:19 +00:00
insert.c Update sqlite3_changes() to match the documentation and add 2004-06-21 06:50:26 +00:00
legacy.c Refactoring of the vdbe Mem functions and the APIs that deal with them. 2004-05-26 23:25:30 +00:00
main.c Store schema cookies on the TEMP database. Ticket #807. (CVS 1817) 2004-07-19 17:25:24 +00:00
md5.c Remove the iCollate argument from sqlite3_create_function() (CVS 1632) 2004-06-19 08:18:07 +00:00
os.h A few more comment changes. No code alterations. (CVS 1689) 2004-06-25 08:32:25 +00:00
os_common.h Fix TRACE7 in os_common.h. (CVS 1765) 2004-06-29 13:54:50 +00:00
os_mac.c Minor bugfixes and test case adjustments for version 2 test cases to work 2004-06-15 11:40:04 +00:00
os_mac.h Split up os.c into separate files, one for each platform. (CVS 1441) 2004-05-22 17:41:58 +00:00
os_test.c Fix a memory allocation problem in os_test.c (CVS 1782) 2004-06-30 12:42:59 +00:00
os_test.h Test cases to verify recovery after a crash. (CVS 1675) 2004-06-23 10:43:10 +00:00
os_unix.c Report an error when attempting to open a directory as a database. 2004-07-20 01:14:13 +00:00
os_unix.h The OsFile under Unix records a pointer back to the pager. This is intended 2004-07-19 22:08:09 +00:00
os_win.c Specify ASCII versions of Win32 API functions. (CVS 1785) 2004-06-30 14:28:59 +00:00
os_win.h Fix an uninitialized variable. The variable was harmless, but pedantic 2004-06-21 18:14:45 +00:00
pager.c The OsFile under Unix records a pointer back to the pager. This is intended 2004-07-19 22:08:09 +00:00
pager.h Fixes for compiler warnings. Also more coverage. (CVS 1775) 2004-06-30 08:20:16 +00:00
parse.y Coverage tests for vacuum.c (CVS 1776) 2004-06-30 09:49:22 +00:00
pragma.c Coverage tests for vacuum.c (CVS 1776) 2004-06-30 09:49:22 +00:00
printf.c mprintf() correctly handles "%s","". Fix for ticket #812. (CVS 1800) 2004-07-17 21:56:09 +00:00
random.c Change lots of internal symbols from sqliteXXX to sqlite3XXX so that the 2004-05-08 08:23:19 +00:00
select.c Handle quotes on the table name in TABLE.* terms in SELECT statements. 2004-07-20 01:45:19 +00:00
shell.c Fixes for compiler warnings. Also more coverage. (CVS 1775) 2004-06-30 08:20:16 +00:00
sqlite.h.in Implement the experimental sqlite3_bind_parameter_count() API in support 2004-07-15 14:15:00 +00:00
sqliteInt.h Make SrcList.nSrc a signed quantity to avoid problems in AIX. (CVS 1796) 2004-07-15 13:37:22 +00:00
table.c Improved test coverage of table.c and printf.c. (CVS 1762) 2004-06-29 13:04:32 +00:00
tclsqlite.c Fix a memory allocation problem in os_test.c (CVS 1782) 2004-06-30 12:42:59 +00:00
test1.c mprintf() correctly handles "%s","". Fix for ticket #812. (CVS 1800) 2004-07-17 21:56:09 +00:00
test2.c Fix an uninitialized variable. The variable was harmless, but pedantic 2004-06-21 18:14:45 +00:00
test3.c Improve test coverage of util.c (CVS 1773) 2004-06-30 04:02:11 +00:00
test4.c Remove the third argument from the sqlite3_open() API. (CVS 1540) 2004-06-08 00:02:33 +00:00
test5.c Modifications to the journal format to make it more robust. (CVS 1686) 2004-06-25 02:38:54 +00:00
tokenize.c Fix a couple of gcc warnings. (CVS 1615) 2004-06-18 06:02:35 +00:00
trigger.c Fix error reporting path for errors that occur while reading the database 2004-06-29 08:59:35 +00:00
update.c Update sqlite3_changes() to match the documentation and add 2004-06-21 06:50:26 +00:00
utf.c More coverage testing. (CVS 1754) 2004-06-28 13:09:11 +00:00
util.c Fix the return type on sqliteStrICmp when the input strings are not 2004-07-15 13:23:21 +00:00
vacuum.c Coverage tests for vacuum.c (CVS 1776) 2004-06-30 09:49:22 +00:00
vdbe.c Store schema cookies on the TEMP database. Ticket #807. (CVS 1817) 2004-07-19 17:25:24 +00:00
vdbe.h Remove unused routines from vdbeaux.c. Improve test coverage. (CVS 1746) 2004-06-27 21:31:39 +00:00
vdbeInt.h When a statement causes a ROLLBACK due to an ON CONFLICT clause, other active 2004-06-30 11:14:18 +00:00
vdbeapi.c Implement the experimental sqlite3_bind_parameter_count() API in support 2004-07-15 14:15:00 +00:00
vdbeaux.c Add the crashtest target to Makefile.in. Add LL suffix to long long constants 2004-06-30 11:41:55 +00:00
vdbemem.c Coverage improvements for malloc and vdbemem.c (CVS 1781) 2004-06-30 11:54:06 +00:00
where.c Fix for ticket #813. (CVS 1818) 2004-07-19 19:14:01 +00:00