diff options
author | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2016-12-15 13:15:57 +0900 |
---|---|---|
committer | Yasuhiro Matsumoto <mattn.jp@gmail.com> | 2016-12-15 13:15:57 +0900 |
commit | 2d44decb4941c9cdf72c22297b7890faf7da9bcb (patch) | |
tree | 70cd8044869384cdf025869ecd6372b007791bdd | |
parent | Merge branch 'master' of https://github.com/mattn/go-sqlite3 (diff) | |
download | golite-2d44decb4941c9cdf72c22297b7890faf7da9bcb.tar.gz golite-2d44decb4941c9cdf72c22297b7890faf7da9bcb.tar.xz |
temporary fix BeginTx
-rw-r--r-- | sqlite3_go18.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sqlite3_go18.go b/sqlite3_go18.go index 6bb2ead..f9e08e1 100644 --- a/sqlite3_go18.go +++ b/sqlite3_go18.go @@ -46,7 +46,7 @@ func (c *SQLiteConn) PrepareContext(ctx context.Context, query string) (driver.S } // BeginTx implement ConnBeginTx. -func (c *SQLiteConn) BeginTx(ctx context.Context) (driver.Tx, error) { +func (c *SQLiteConn) BeginTx(ctx context.Context, opts driver.TxOptions) (driver.Tx, error) { return c.begin(ctx) } |