aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | add -DHAVE_USLEEP=1Yasuhiro Matsumoto2018-02-071-1/+1
| | | | | | | | | | | | fixes #211
* | | Merge pull request #524 from jckimble/mastermattn2018-02-023-0/+25
|\ \ \ | | | | | | | | Add static_mock.go to allow building with CGO_ENABLED=0
| * | | Add static_mock.go to allow building with CGO_ENABLED=0James C Kimble2018-01-313-0/+25
|/ / /
* | | Merge pull request #521 from mattn/fix520mattn2018-01-292-11/+13
|\| | | | | | | | fix type of event code
| * | fix type of event codeYasuhiro Matsumoto2018-01-292-11/+13
| | | | | | | | | | | | fixes #520
* | | Merge pull request #501 from matthewswain/patch-1mattn2018-01-221-1/+1
|\ \ \ | | | | | | | | Update README.md
| * | | Update README.mdMatthew Swain2017-11-301-1/+1
| | | | | | | | | | | | Clarified the gcc requirement to avoid confusion.
* | | | Merge pull request #515 from mattn/fix514mattn2018-01-221-0/+12
|\ \ \ \ | |_|/ / |/| | | add build constraint for solaris
| * | | add build constraint for solarisYasuhiro Matsumoto2018-01-221-0/+12
|/ / / | | | | | | | | | fixes #514
* | | Merge pull request #462 from faruzzy/mastermattn2018-01-121-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 Pangu2017-09-051-2/+1
| | | | | | | | | | | | https://golang.org/doc/go1.7#context
* | | Merge pull request #489 from Projectplace/fix-cancel-racemattn2017-11-222-2/+27
|\ \ \ | | | | | | | | Fix race in ExecContext
| * | | Fix race in ExecContextNiklas Janlert2017-11-212-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.0mattn2017-11-214-6858/+11082
|\ \ \ | | | | | | | | upgrade SQLite3 amalgamation code
| * | | fix error messageYasuhiro Matsumoto2017-11-191-2/+2
| | | |
| * | | handle new error messageYasuhiro Matsumoto2017-11-181-1/+1
| | | |
| * | | upgrade SQLite3 amalgamation codeYasuhiro Matsumoto2017-11-183-6856/+11080
|/ / /
* | | replace header nameYasuhiro Matsumoto2017-11-181-1/+13
| | |
* | | Merge pull request #484 from mattn/fix-headermattn2017-11-181-2/+2
|\ \ \ | | | | | | | | fix header file
| * | | fix header fileYasuhiro Matsumoto2017-11-171-2/+2
|/ / /
* | | Merge pull request #479 from kenshaw/move-registeraggregatormattn2017-11-144-201/+187
|\ \ \ | | | | | | | | Move RegisterAggregator implementation
| * | | Move RegisterAggregator implementationKenneth Shaw2017-11-054-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-limitmattn2017-11-142-0/+169
|\ \ \ \ | |/ / / |/| | | Support sqlite3_limit to get/set the value of run-time limits
| * | | fix to be able to build with GOTAGS=libsqlite3Tetsuya Morimoto2017-11-051-0/+2
| | | |
| * | | update to call _sqlite3_limit as a wrapper instead of sqlite3_limitTetsuya Morimoto2017-11-051-2/+26
| | | |
| * | | support sqlite3_limit to get/set run time limitTetsuya Morimoto2017-11-052-0/+143
|/ / /
* | | Merge pull request #471 from msoap/patch-1mattn2017-10-241-3/+4
|\ \ \ | | | | | | | | Updated travis.yml
| * | | Updated travis.ymlSergey Mudrik2017-10-221-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 testYasuhiro Matsumoto2017-09-281-1/+1
| | |
* | | remove rows.Close() in TestShortTimeoutYasuhiro Matsumoto2017-09-281-1/+0
| | | | | | | | | | | | couldn't reproduce on local environment
* | | fix broken testYasuhiro Matsumoto2017-09-281-3/+3
| | |
* | | fix error handlingYasuhiro Matsumoto2017-09-281-2/+2
| | | | | | | | | | | | close #464
* | | use file instead of memory for TestShortTimeoutYasuhiro Matsumoto2017-09-281-14/+9
|/ /
* | Merge pull request #423 from danderson/mastermattn2017-09-013-0/+152
|\ \ | | | | | | Add support for collation sequences implemented in Go.
| * \ Merge branch 'master' into mastermattn2017-08-309-454/+823
| |\ \ | |/ / |/| |
* | | Merge pull request #461 from mattn/solarismattn2017-08-303-5/+28
|\ \ \ | | | | | | | | support Solaris
| * | | fix raceYasuhiro Matsumoto2017-08-301-10/+10
| | | |
| * | | fix raceYasuhiro Matsumoto2017-08-301-1/+0
| | | |
| * | | fix lockYasuhiro Matsumoto2017-08-301-2/+24
| | | |
| * | | support SolarisYasuhiro Matsumoto2017-08-302-0/+2
|/ / / | | | | | | | | | See #459
* | | fixes #458Yasuhiro Matsumoto2017-08-282-0/+93
| | |
* | | fix README.mdYasuhiro Matsumoto2017-08-271-1/+1
| |/ |/| | | | | close #456
* | Merge pull request #454 from gholt/mastermattn2017-08-222-2/+59
|\ \ | | | | | | Fix to better handle NULL values in TEXT and BLOB columns.
| * | Improved TestNilAndEmptyBytesGreg Holt2017-08-211-1/+3
| | | | | | | | | | | | I forgot that bytes.Equals treats nil and []byte{} as equal.
| * | Fix to pass TestNilAndEmptyBytesGreg Holt2017-08-211-2/+3
| | |
| * | Added TestNilAndEmptyBytesGreg Holt2017-08-211-0/+54
|/ /
* | fix testYasuhiro Matsumoto2017-08-021-34/+35
| |
* | ignore errors in teardownYasuhiro Matsumoto2017-08-021-2/+2
| |
* | remove mutexYasuhiro Matsumoto2017-08-021-5/+4
| |
* | fix tests on tipYasuhiro Matsumoto2017-08-022-437/+420
| |