Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
| * | | add -DHAVE_USLEEP=1 | Yasuhiro Matsumoto | 2018-02-07 | 1 | -1/+1 | |
| | | | | | | | | | | | | fixes #211 | |||||
* | | | Merge pull request #524 from jckimble/master | mattn | 2018-02-02 | 3 | -0/+25 | |
|\ \ \ | | | | | | | | | Add static_mock.go to allow building with CGO_ENABLED=0 | |||||
| * | | | Add static_mock.go to allow building with CGO_ENABLED=0 | James C Kimble | 2018-01-31 | 3 | -0/+25 | |
|/ / / | ||||||
* | | | Merge pull request #521 from mattn/fix520 | mattn | 2018-01-29 | 2 | -11/+13 | |
|\| | | | | | | | | fix type of event code | |||||
| * | | fix type of event code | Yasuhiro Matsumoto | 2018-01-29 | 2 | -11/+13 | |
| | | | | | | | | | | | | fixes #520 | |||||
* | | | Merge pull request #501 from matthewswain/patch-1 | mattn | 2018-01-22 | 1 | -1/+1 | |
|\ \ \ | | | | | | | | | Update README.md | |||||
| * | | | Update README.md | Matthew Swain | 2017-11-30 | 1 | -1/+1 | |
| | | | | | | | | | | | | Clarified the gcc requirement to avoid confusion. | |||||
* | | | | Merge pull request #515 from mattn/fix514 | mattn | 2018-01-22 | 1 | -0/+12 | |
|\ \ \ \ | |_|/ / |/| | | | add build constraint for solaris | |||||
| * | | | add build constraint for solaris | Yasuhiro Matsumoto | 2018-01-22 | 1 | -0/+12 | |
|/ / / | | | | | | | | | | fixes #514 | |||||
* | | | Merge pull request #462 from faruzzy/master | mattn | 2018-01-12 | 1 | -2/+1 | |
|\ \ \ | |/ / |/| | | Updated "context" import since it has become a standard library | |||||
| * | | Updated "context" import since it has become a standard library after go 1.7 ↵ | Roland Pangu | 2017-09-05 | 1 | -2/+1 | |
| | | | | | | | | | | | | https://golang.org/doc/go1.7#context | |||||
* | | | Merge pull request #489 from Projectplace/fix-cancel-race | mattn | 2017-11-22 | 2 | -2/+27 | |
|\ \ \ | | | | | | | | | Fix race in ExecContext | |||||
| * | | | Fix race in ExecContext | Niklas Janlert | 2017-11-21 | 2 | -2/+27 | |
|/ / / | | | | | | | | | | | | | When the context is cancelled, an interrupt should only be made if the operation is still ongoing. | |||||
* | | | Merge pull request #485 from mattn/sqlite3-3.21.0 | mattn | 2017-11-21 | 4 | -6858/+11082 | |
|\ \ \ | | | | | | | | | upgrade SQLite3 amalgamation code | |||||
| * | | | fix error message | Yasuhiro Matsumoto | 2017-11-19 | 1 | -2/+2 | |
| | | | | ||||||
| * | | | handle new error message | Yasuhiro Matsumoto | 2017-11-18 | 1 | -1/+1 | |
| | | | | ||||||
| * | | | upgrade SQLite3 amalgamation code | Yasuhiro Matsumoto | 2017-11-18 | 3 | -6856/+11080 | |
|/ / / | ||||||
* | | | replace header name | Yasuhiro Matsumoto | 2017-11-18 | 1 | -1/+13 | |
| | | | ||||||
* | | | Merge pull request #484 from mattn/fix-header | mattn | 2017-11-18 | 1 | -2/+2 | |
|\ \ \ | | | | | | | | | fix header file | |||||
| * | | | fix header file | Yasuhiro Matsumoto | 2017-11-17 | 1 | -2/+2 | |
|/ / / | ||||||
* | | | Merge pull request #479 from kenshaw/move-registeraggregator | mattn | 2017-11-14 | 4 | -201/+187 | |
|\ \ \ | | | | | | | | | Move RegisterAggregator implementation | |||||
| * | | | Move RegisterAggregator implementation | Kenneth Shaw | 2017-11-05 | 4 | -201/+187 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The SQLiteConn.RegisterAggregator implementation was defined in sqlite3_trace.go file, which is guarded with a build constraint. This change simply moves RegisterAggregator to the main sqlite3.go file, and moves accompanying unit tests. The rationale for this move is that it was not possible for downstream using packages to use RegisterAggregator without also specifying (and notifying the user) the 'trace' build tag. | |||||
* | | | | Merge pull request #440 from t2y/add-sqlite3-limit | mattn | 2017-11-14 | 2 | -0/+169 | |
|\ \ \ \ | |/ / / |/| | | | Support sqlite3_limit to get/set the value of run-time limits | |||||
| * | | | fix to be able to build with GOTAGS=libsqlite3 | Tetsuya Morimoto | 2017-11-05 | 1 | -0/+2 | |
| | | | | ||||||
| * | | | update to call _sqlite3_limit as a wrapper instead of sqlite3_limit | Tetsuya Morimoto | 2017-11-05 | 1 | -2/+26 | |
| | | | | ||||||
| * | | | support sqlite3_limit to get/set run time limit | Tetsuya Morimoto | 2017-11-05 | 2 | -0/+143 | |
|/ / / | ||||||
* | | | Merge pull request #471 from msoap/patch-1 | mattn | 2017-10-24 | 1 | -3/+4 | |
|\ \ \ | | | | | | | | | Updated travis.yml | |||||
| * | | | Updated travis.yml | Sergey Mudrik | 2017-10-22 | 1 | -3/+4 | |
|/ / / | | | | | | | Use the latest Go version in each major branch (documentation: https://docs.travis-ci.com/user/languages/go/#Specifying-a-Go-version-to-use) | |||||
* | | | fix test | Yasuhiro Matsumoto | 2017-09-28 | 1 | -1/+1 | |
| | | | ||||||
* | | | remove rows.Close() in TestShortTimeout | Yasuhiro Matsumoto | 2017-09-28 | 1 | -1/+0 | |
| | | | | | | | | | | | | couldn't reproduce on local environment | |||||
* | | | fix broken test | Yasuhiro Matsumoto | 2017-09-28 | 1 | -3/+3 | |
| | | | ||||||
* | | | fix error handling | Yasuhiro Matsumoto | 2017-09-28 | 1 | -2/+2 | |
| | | | | | | | | | | | | close #464 | |||||
* | | | use file instead of memory for TestShortTimeout | Yasuhiro Matsumoto | 2017-09-28 | 1 | -14/+9 | |
|/ / | ||||||
* | | Merge pull request #423 from danderson/master | mattn | 2017-09-01 | 3 | -0/+152 | |
|\ \ | | | | | | | Add support for collation sequences implemented in Go. | |||||
| * \ | Merge branch 'master' into master | mattn | 2017-08-30 | 9 | -454/+823 | |
| |\ \ | |/ / |/| | | ||||||
* | | | Merge pull request #461 from mattn/solaris | mattn | 2017-08-30 | 3 | -5/+28 | |
|\ \ \ | | | | | | | | | support Solaris | |||||
| * | | | fix race | Yasuhiro Matsumoto | 2017-08-30 | 1 | -10/+10 | |
| | | | | ||||||
| * | | | fix race | Yasuhiro Matsumoto | 2017-08-30 | 1 | -1/+0 | |
| | | | | ||||||
| * | | | fix lock | Yasuhiro Matsumoto | 2017-08-30 | 1 | -2/+24 | |
| | | | | ||||||
| * | | | support Solaris | Yasuhiro Matsumoto | 2017-08-30 | 2 | -0/+2 | |
|/ / / | | | | | | | | | | See #459 | |||||
* | | | fixes #458 | Yasuhiro Matsumoto | 2017-08-28 | 2 | -0/+93 | |
| | | | ||||||
* | | | fix README.md | Yasuhiro Matsumoto | 2017-08-27 | 1 | -1/+1 | |
| |/ |/| | | | | | close #456 | |||||
* | | Merge pull request #454 from gholt/master | mattn | 2017-08-22 | 2 | -2/+59 | |
|\ \ | | | | | | | Fix to better handle NULL values in TEXT and BLOB columns. | |||||
| * | | Improved TestNilAndEmptyBytes | Greg Holt | 2017-08-21 | 1 | -1/+3 | |
| | | | | | | | | | | | | I forgot that bytes.Equals treats nil and []byte{} as equal. | |||||
| * | | Fix to pass TestNilAndEmptyBytes | Greg Holt | 2017-08-21 | 1 | -2/+3 | |
| | | | ||||||
| * | | Added TestNilAndEmptyBytes | Greg Holt | 2017-08-21 | 1 | -0/+54 | |
|/ / | ||||||
* | | fix test | Yasuhiro Matsumoto | 2017-08-02 | 1 | -34/+35 | |
| | | ||||||
* | | ignore errors in teardown | Yasuhiro Matsumoto | 2017-08-02 | 1 | -2/+2 | |
| | | ||||||
* | | remove mutex | Yasuhiro Matsumoto | 2017-08-02 | 1 | -5/+4 | |
| | | ||||||
* | | fix tests on tip | Yasuhiro Matsumoto | 2017-08-02 | 2 | -437/+420 | |
| | |