aboutsummaryrefslogtreecommitdiff
path: root/Foundation/GTMSQLite.m
Commit message (Collapse)AuthorAge
* userdata structures need to exist for lifetime of hooks.Gravatar Thomas Van Lenten2020-06-12
| | | | | | | Apparently earlier compilers took our `const structs` and put them into const data for us so their lifetime was effectively equivalent to `static`. Some change/optimization in 11.4.1 has moved to that not being the case. Explicitly make the data structures `static`.
* Add some more assert context.Gravatar Thomas Van Lenten2020-06-11
|
* Create interface for initializing DB with SQLite flagsGravatar Nicholas Tsoi-A-Sue2020-06-10
|
* First cut at pruning things/updating things.Gravatar dmaclach2016-10-07
| | | | | | | | | | | | | | | Remove a bunch of code that Google stopped using/maintaining rather than trying to update it it. Some would be hard to update, some actually has system provided replacements; others are patterns that just don't seem as common now. Prune out the code related to macOS <= 10.5, start pruning some of the really old iOS support also. Get the projects mostly limping again with modern Xcodes so tests can be run. If someone ends up on this commit via history for something they still find as useful, feel free to do a pull request to bring the snippet of code back to life and update it for current SDKs.
* Fix build of Mac GTM project with static analyzer. Remove ↵Gravatar gtm.daemon2013-12-19
| | | | | GTMGarbageCollection. Remove GC build configs. Remove internal dependence on GTMObjectSingleton. DELTA=447 (49 added, 296 deleted, 102 changed)
* [Author: thomasvl]Gravatar gtm.daemon2013-01-02
| | | | | | | | Remove the GC support code. Add the needed images for the iOS unittests under iOS 6.0. Add a workspace file for the iPhone project. R=dmaclach DELTA=215 (85 added, 122 deleted, 8 changed)
* [Author: kbongort]Gravatar gtm.daemon2012-10-15
| | | | | | | Ensure that |returnBuffer| is freed. R=thomasvl APPROVED=thomasvl DELTA=1 (1 added, 0 deleted, 0 changed)
* [Author: dmaclach]Gravatar gtm.daemon2009-03-13
| | | | | | | | Fixes up the leaks in the tests. Sets up the RunMacOSUnitTest script so that it actually works correctly with respect to enabling leaks. DELTA=20 (4 added, 3 deleted, 13 changed) R=thomasvl
* - increase some test coverageGravatar thomasvl@gmail.com2009-03-11
| | | | | | - fixed system include in GTMTheme - put the logging of execected dev logs under env control and default it to off to make unittest output a little easier to read.
* Remove some NF comments on code that was being hit.Gravatar thomasvl@gmail.com2009-03-09
| | | | Added a stack trace test to make sure all code paths are covered.
* adding SQLite helper/wrapperGravatar thomasvl@gmail.com2009-02-26