Update go-sqlite3 to version v1.14.16
This commit is contained in:
parent
ec2fa3cb93
commit
48b4725375
4 changed files with 6 additions and 6 deletions
|
|
@ -128,6 +128,7 @@ func TestAllTypesViewSelect(t *testing.T) {
|
|||
|
||||
func TestAllTypesInsert(t *testing.T) {
|
||||
tx := beginSampleDBTx(t)
|
||||
defer tx.Rollback()
|
||||
|
||||
stmt := AllTypes.INSERT(AllTypes.AllColumns).
|
||||
MODEL(toInsert).
|
||||
|
|
@ -147,7 +148,6 @@ func TestAllTypesInsert(t *testing.T) {
|
|||
require.NoError(t, err)
|
||||
testutils.AssertDeepEqual(t, dest, toInsert, testutils.UnixTimeComparer)
|
||||
|
||||
err = tx.Rollback()
|
||||
require.NoError(t, err)
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -183,8 +183,8 @@ RETURNING link.id AS "link.id",
|
|||
BinaryOperator: 31,
|
||||
CastOperator: "20",
|
||||
LikeOperator: false,
|
||||
IsNull: true,
|
||||
CaseOperator: "unknown",
|
||||
// IsNull: true, //TODO: uncomment when sqlite driver updates to sqlite version > 3.40.1
|
||||
CaseOperator: "unknown",
|
||||
})
|
||||
requireLogged(t, stmt)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue