aboutsummaryrefslogtreecommitdiff
path: root/src/test_tclvar.c
Commit message (Collapse)AuthorAge
* Fix a few minor TCL9 compatibilities issues.drh2024-08-09
| | | FossilOrigin-Name: 69eed19914ef52bc0101f4ae1c7b242df4ee28675b3581e1f4d60a35494f9f76
* First attempt at getting the build to work with Tcl 9.0.drh2024-07-30
| | | FossilOrigin-Name: 6e5bb48a74d63fb8c30528f0005d1763cd2dbb882abf86baf1565721e6bfcf84
* Ensure that all fields of static sqlite3_module objects are explicitlydrh2023-10-06
| | | | | initialized, in order to hush-up nuisance compiler warnings. FossilOrigin-Name: f3b3d712d6e58b1cb8fdebd2b6b3125080b6b3ac8c7c849a8cc1e5e778d62fe7
* Test case for writing to a WITHOUT ROWID virtual table. The TCLVAR virtualdrh2017-08-10
| | | | | | table is modified to add a "fullname" column which is the primary key, and to accept update operations against the primary key. FossilOrigin-Name: 6997e00c3221f266f4d9187501d8a9e5bafb85551e88a744cdc8ffe3b75ec2a4
* Make sure the SQLITE_TCLAPI macro is always defined.mistachkin2016-07-28
| | | FossilOrigin-Name: f2f1323cc4d2ad2d6794dbfae8d50b747213e85d
* Allow the 'testfixture.exe' target to be compiled with the __stdcall calling ↵mistachkin2016-07-28
| | | | | convention. FossilOrigin-Name: e8be3dfeabaa31b3490793cf8230faae1204be15
* Fix harmless compiler warnings in the TCL test harness logic.drh2015-11-24
| | | FossilOrigin-Name: 2fba7a96566b5448f527a4ec6a26e860c4889813
* Add further tests and related fixes for GLOB/REGEXP/LIKE support in virtual ↵dan2015-11-24
| | | | | tables. FossilOrigin-Name: c5e9fd0dc92a07db3d3b5f5c5ad8fb63b3425c2b
* Make sure registers computed for the VFilter opcode are marked invaliddrh2009-11-23
| | | | | after the VFilter opcode finishes. Ticket [16fbf14cb2]. FossilOrigin-Name: 83dc7d38c2695d1b2a7d4866a4df9be9e41d1abe
* Remove the obsolete "$Id:$" RCS identifier strings from the source code.drh2009-11-10
| | | FossilOrigin-Name: f6c045f649036958078cb15cd9d5453680c82b0c
* Fix warnings and a compilation error in test code. (CVS 5556)danielk19772008-08-12
| | | FossilOrigin-Name: 80c129e63ec7dbed3de1e485dffea96fae40aa6d
* Additional test cases added on the sqlite3_create_function() interface. (CVS ↵drh2008-07-07
| | | | | 5349) FossilOrigin-Name: 4e941f3d43556d8a503bb96e8a74451de36d243e
* Fix cosmetic issues spotted while working on ticket #3146 (CVS 5177)drh2008-05-29
| | | FossilOrigin-Name: 5f6eab65dba421a736659a6673a51a0e487d68ac
* Remove unnecessary #includes of "os.h". New mutex implementations. (CVS 4255)drh2007-08-21
| | | FossilOrigin-Name: fbbd5bda544ffec4e1b43407b12e546235dc7873
* Fix some more small problems introduced by recent refactoring. (CVS 4235)danielk19772007-08-16
| | | FossilOrigin-Name: 5e2795d0eb8ea2a076b3014cfa9096aa7e8f69d7
* Half-way through a major refactoring of the memory allocation.drh2007-08-16
| | | | | | I have not even attempted to compile so I am certain there are countless errors. (CVS 4231) FossilOrigin-Name: deb7ecd65f7b83eaf0ba610eeef3b0ede61db1c3
* Implement xRename() for fts2 so that it is possible to rename fts2 tables. ↵danielk19772007-06-27
| | | | | (CVS 4143) FossilOrigin-Name: 488474fde753c5a7a14ed8f2fad7f16efd236491
* Add a rudimentary tokenizer and parser to FTS1 for parsing the moduledrh2006-09-11
| | | | | | arguments during initialization. Recognized arguments include a tokenizer selector and a list of virtual table columns. (CVS 3403) FossilOrigin-Name: 227dc3feb537e6efd5b0c1d2dad40193db07d5aa
* Add pzErr parameters to the xConnect and xCreate methods of virtual tablesdrh2006-09-10
| | | | | | | in order to provide better error reporting. This is an interface change for virtual tables. Prior virtual table implementations will need to be modified and recompiled. (CVS 3402) FossilOrigin-Name: f44b8bae97b6872524580009c96d07391578c388
* Tighten an assert (ticket #1920). Change to "sqlite3.h" from <sqlite3.h>drh2006-08-15
| | | | | on the sqlite3ext.h header (ticket #1916). Fix a bug in the test scripts. (CVS 3354) FossilOrigin-Name: 3ebedbb6f90ec0f9d3bed181f8fb5366f91fc48c
* Allow virtual table implementations to overload function that usedrh2006-07-08
| | | | | a column of the virtual table as their first argument. Untested. (CVS 3322) FossilOrigin-Name: 12cc7af4b6b8b4f1a43d962fbafde8cba683a907
* Fix up the test tclvar virtual module. (CVS 3307)danielk19772006-06-27
| | | FossilOrigin-Name: a20bfa46316b9d8f884f147960620fc8e56a7c7f
* Remove the sqlite3_module.zName field which was used only for debugging. ↵drh2006-06-26
| | | | | (CVS 3297) FossilOrigin-Name: 74a3961f39b9a045518835b20940471ac97bca66
* Fix trivial compiler warnings. (CVS 3295)danielk19772006-06-26
| | | FossilOrigin-Name: 3538beace8ece6339fe8aaf40852ce5e5e7da283
* Add void* argument to sqlite3_create_module to replace sqlite3_module.pAux. ↵danielk19772006-06-15
| | | | | (CVS 3251) FossilOrigin-Name: 470a3a0b20775be1226fb4d477c798d8da2d5708
* Change the pModule parameter of the xCreate and xConnect methods to a void*. ↵danielk19772006-06-14
| | | | | (CVS 3236) FossilOrigin-Name: 3ffa51b50a7831ef359bc40acf605decc922c498
* The echo module test is now running. Added the tclvar module test but havedrh2006-06-13
not yet done anything with it. (CVS 3234) FossilOrigin-Name: 29199eeea4c46168ccaa7535d4941bd740479dee