Skip to content

Commit 662d731

Browse files
authored
Merge pull request #395 from sparklemotion/flavorjones-update-sqlite-3.43.0
dep: update sqlite3 to v3.43.0
2 parents 676b1a7 + 5c67d56 commit 662d731

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

dependencies.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22
:sqlite3:
33
# checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
44
#
5-
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-3420000.tar.gz
6-
# 643898e9fcc8f6069bcd47b0e6057221c1ed17bbee57da20d2752c79d91274e8 ports/archives/sqlite-autoconf-3420000.tar.gz
5+
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-3430000.tar.gz
6+
# cc321c7b0a70f87aaefe5d0aa89cdd97b432c3d2d448fa623f20988007c49f34 ports/archives/sqlite-autoconf-3430000.tar.gz
77
#
8-
# $ sha256sum ports/archives/sqlite-autoconf-3420000.tar.gz
9-
# 7abcfd161c6e2742ca5c6c0895d1f853c940f203304a0b49da4e1eca5d088ca6 ports/archives/sqlite-autoconf-3420000.tar.gz
8+
# $ sha256sum ports/archives/sqlite-autoconf-3430000.tar.gz
9+
# 49008dbf3afc04d4edc8ecfc34e4ead196973034293c997adad2f63f01762ae1 ports/archives/sqlite-autoconf-3430000.tar.gz
1010
#
11-
:version: "3.42.0"
11+
:version: "3.43.0"
1212
:files:
13-
- :url: "https://sqlite.org/2023/sqlite-autoconf-3420000.tar.gz"
14-
:sha256: "7abcfd161c6e2742ca5c6c0895d1f853c940f203304a0b49da4e1eca5d088ca6"
13+
- :url: "https://sqlite.org/2023/sqlite-autoconf-3430000.tar.gz"
14+
:sha256: "49008dbf3afc04d4edc8ecfc34e4ead196973034293c997adad2f63f01762ae1"

test/test_integration_statement.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,10 @@ def test_bind_param_by_name_good
7777
def test_bind_param_with_various_types
7878
@db.transaction do
7979
@db.execute "create table all_types ( a integer primary key, b float, c string, d integer )"
80-
@db.execute "insert into all_types ( b, c, d ) values ( 1.4, 'hello', 68719476735 )"
80+
@db.execute "insert into all_types ( b, c, d ) values ( 1.5, 'hello', 68719476735 )"
8181
end
8282

83-
assert_equal 1, @db.execute( "select * from all_types where b = ?", 1.4 ).length
83+
assert_equal 1, @db.execute( "select * from all_types where b = ?", 1.5 ).length
8484
assert_equal 1, @db.execute( "select * from all_types where c = ?", 'hello').length
8585
assert_equal 1, @db.execute( "select * from all_types where d = ?", 68719476735).length
8686
end

0 commit comments

Comments
 (0)