| Commit message (Expand) | Author | Age | Files | Lines |
| * | only enable pread/pwrite for linux. fixes #533 and fixes #532 | Bas van Beek | 2018-02-17 | 1 | -1/+2 |
| * | Let SQLite use pread/pwrite•••With current settings SQLite was using lseek/read syscalls to read data, e.g.:
20:43:17.640660 fcntl(3, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
20:43:17.640683 fcntl(3, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
20:43:17.640705 fcntl(3, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510}) = 0
20:43:17.640725 fcntl(3, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
20:43:17.640744 stat(".../neo.sqlite-journal", 0x7ffef2c91080) = -1 ENOENT (No such file or directory)
20:43:17.640764 lseek(3, 24, SEEK_SET) = 24
20:43:17.640779 read(3, "\0\0\0\33\0\0\10\235\0\0\10]\0\0\0\27", 16) = 16
20:43:17.640795 stat(".../neo.sqlite-wal", 0x7ffef2c91080) = -1 ENOENT (No such file or directory)
but if we allow it to use pread it will be only 1 system call instead of 2 and
reading this way can also be done in parallel because there is no global to
file seeking:
20:48:42.668466 fcntl(3, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=0, l_len=0}) = 0
20:48:42.668501 fcntl(3, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
20:48:42.668522 fcntl(3, F_SETLK, {l_type=F_RDLCK, l_whence=SEEK_SET, l_start=1073741826, l_len=510}) = 0
20:48:42.668542 fcntl(3, F_SETLK, {l_type=F_UNLCK, l_whence=SEEK_SET, l_start=1073741824, l_len=1}) = 0
20:48:42.668561 stat(".../neo.sqlite-journal", 0x7ffdbc1f22c0) = -1 ENOENT (No such file or directory)
20:48:42.668580 pread64(3, "\0\0\0\33\0\0\10\235\0\0\10]\0\0\0\27", 16, 24) = 16
20:48:42.668597 stat(".../neo.sqlite-wal", 0x7ffdbc1f22c0) = -1 ENOENT (No such file or directory)
(if needed this enablement can be done per OS)
| Kirill Smelkov | 2018-02-16 | 1 | -1/+1 |
| * | Merge pull request #525 from mattn/add-usleep•••add -DHAVE_USLEEP=1 | mattn | 2018-02-07 | 1 | -1/+1 |
| |\ |
|
| | * | add -DHAVE_USLEEP=1•••fixes #211
| Yasuhiro Matsumoto | 2018-02-07 | 1 | -1/+1 |
| * | | Add static_mock.go to allow building with CGO_ENABLED=0 | James C Kimble | 2018-01-31 | 1 | -0/+2 |
| |/ |
|
| * | Merge pull request #462 from faruzzy/master•••Updated "context" import since it has become a standard library | mattn | 2018-01-12 | 1 | -2/+1 |
| |\ |
|
| | * | Updated "context" import since it has become a standard library after go 1.7 ... | Roland Pangu | 2017-09-05 | 1 | -2/+1 |
| * | | Fix race in ExecContext•••When the context is cancelled, an interrupt should only be made if the
operation is still ongoing.
| Niklas Janlert | 2017-11-21 | 1 | -2/+6 |
| * | | Merge pull request #479 from kenshaw/move-registeraggregator•••Move RegisterAggregator implementation | mattn | 2017-11-14 | 1 | -0/+127 |
| |\ \ |
|
| | * | | Move RegisterAggregator implementation•••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.
| Kenneth Shaw | 2017-11-05 | 1 | -0/+127 |
| | |/ |
|
| * | | 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 | 1 | -0/+30 |
| |/ |
|
| * | Merge branch 'master' into master | mattn | 2017-08-30 | 1 | -16/+136 |
| |\ |
|
| | * | 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 |
| | * | fixes #458 | Yasuhiro Matsumoto | 2017-08-28 | 1 | -0/+1 |
| | * | Fix to pass TestNilAndEmptyBytes | Greg Holt | 2017-08-21 | 1 | -2/+3 |
| | * | remove mutex | Yasuhiro Matsumoto | 2017-08-02 | 1 | -5/+4 |
| | * | fix possibly double Close.•••fixes #448
| Yasuhiro Matsumoto | 2017-08-02 | 1 | -5/+9 |
| | * | Add connection option for recursive triggers•••Similar to foreign keys, the recursive triggers PRAGMA affects the
interpretation of all statements on a connection.
| Ross Light | 2017-07-09 | 1 | -0/+26 |
| | * | Merge pull request #2 from mattn/master•••Merge lastest from mattn | Jason Abbott | 2017-07-06 | 1 | -1/+1 |
| | |\ |
|
| | | * | SQLITE_THREADSAFE=1•••fixes #274
| Yasuhiro Matsumoto | 2017-07-05 | 1 | -1/+1 |
| | * | | Incorporate original PR 271 from https://github.com/brokensandals | Jason Abbott | 2017-07-03 | 1 | -0/+54 |
| | |/ |
|
| | * | Don't convert Unix times to nanoseconds when querying datetime fields. Fixes ... | deepilla | 2017-06-30 | 1 | -2/+3 |
| | * | Fix for cgo panic, issue #428: https://github.com/mattn/go-sqlite3/issues/428 | Evgeniy Makeev | 2017-06-20 | 1 | -7/+4 |
| | * | Sync database-close and statement-close•••Potential fix for issue #426.
| Philip O'Toole | 2017-06-17 | 1 | -1/+14 |
| | * | Use global variable for better performance. | Xu Xinran | 2017-06-14 | 1 | -3/+4 |
| | * | Treat []byte{} as empty bytes instead of NULL. | Xu Xinran | 2017-06-14 | 1 | -2/+4 |
| * | | Add support for collation sequences implemented in Go.•••This allows Go programs to register custom comparison functions with
sqlite, and ORDER BY that comparator.
| David Anderson | 2017-06-08 | 1 | -0/+25 |
| |/ |
|
| * | Merge pull request #407 from zombiezen/foreignkeys•••Add _foreign_keys connection parameter | mattn | 2017-04-02 | 1 | -3/+43 |
| |\ |
|
| | * | Add _foreign_keys connection parameter•••Fixes #377
Updates #255
| Ross Light | 2017-04-01 | 1 | -3/+43 |
| * | | Avoid leaking db if setting busy timeout fails | Ross Light | 2017-04-01 | 1 | -0/+1 |
| |/ |
|
| * | Removed ambitious conn.Close() | Marko Kungla | 2017-03-24 | 1 | -1/+0 |
| * | close connection when got errors in Open | Yasuhiro Matsumoto | 2017-03-24 | 1 | -0/+3 |
| * | fix breaking compatibility.•••revert cf4bd560f1588d96c502b4c3407fe1a10cef4a28
close #394
| Yasuhiro Matsumoto | 2017-03-21 | 1 | -6/+6 |
| * | fix build | Yasuhiro Matsumoto | 2017-03-20 | 1 | -2/+2 |
| * | fix build | Yasuhiro Matsumoto | 2017-03-20 | 1 | -3/+3 |
| * | fix build | Yasuhiro Matsumoto | 2017-03-20 | 1 | -1/+1 |
| * | return nil when last error is SQLITE_OK | Yasuhiro Matsumoto | 2017-03-20 | 1 | -1/+5 |
| * | refactoring | Yasuhiro Matsumoto | 2017-03-05 | 1 | -2/+2 |
| * | Add Go API for virtual tables•••See https://www.sqlite.org/vtab.html for more details.
This work was started from
https://github.com/gwenn/gosqlite/blob/master/vtab.{c,go} and adds:
- Porting the API to go-sqlite3 APIs.
- Support for >= Go 1.6 without requiring the `cgocheck` flag to be changed.
- Filling out the unfinished callback functions for the `Vtable` struct.
- A simple `Context` API layer for ease of use when adding modules.
Tests are included.
| Conor Branagan | 2017-03-04 | 1 | -1/+1 |
| * | rename function | Yasuhiro Matsumoto | 2017-03-05 | 1 | -2/+2 |
| * | workaround for a compiler•••Apple LLVM version 7.0.2 (clang-700.1.81)
Close #386
| Yasuhiro Matsumoto | 2017-03-01 | 1 | -0/+1 |
| * | use variable db | Yasuhiro Matsumoto | 2017-02-16 | 1 | -1/+1 |
| * | fixes race | Yasuhiro Matsumoto | 2017-02-11 | 1 | -4/+8 |
| * | close statement | Yasuhiro Matsumoto | 2017-01-07 | 1 | -0/+1 |
| * | fix race condition | Yasuhiro Matsumoto | 2017-01-03 | 1 | -3/+3 |
| * | fix named args | Yasuhiro Matsumoto | 2016-12-09 | 1 | -1/+1 |