Skip to content

Commit

Permalink
Merge pull request #395 from sparklemotion/flavorjones-update-sqlite-…
Browse files Browse the repository at this point in the history
…3.43.0

dep: update sqlite3 to v3.43.0
  • Loading branch information
flavorjones authored Aug 25, 2023
2 parents 676b1a7 + 5c67d56 commit 662d731
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
:sqlite3:
# checksum verified by first checking the published sha3(256) checksum against https://sqlite.org/download.html:
#
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-3420000.tar.gz
# 643898e9fcc8f6069bcd47b0e6057221c1ed17bbee57da20d2752c79d91274e8 ports/archives/sqlite-autoconf-3420000.tar.gz
# $ sha3sum -a 256 ports/archives/sqlite-autoconf-3430000.tar.gz
# cc321c7b0a70f87aaefe5d0aa89cdd97b432c3d2d448fa623f20988007c49f34 ports/archives/sqlite-autoconf-3430000.tar.gz
#
# $ sha256sum ports/archives/sqlite-autoconf-3420000.tar.gz
# 7abcfd161c6e2742ca5c6c0895d1f853c940f203304a0b49da4e1eca5d088ca6 ports/archives/sqlite-autoconf-3420000.tar.gz
# $ sha256sum ports/archives/sqlite-autoconf-3430000.tar.gz
# 49008dbf3afc04d4edc8ecfc34e4ead196973034293c997adad2f63f01762ae1 ports/archives/sqlite-autoconf-3430000.tar.gz
#
:version: "3.42.0"
:version: "3.43.0"
:files:
- :url: "https://sqlite.org/2023/sqlite-autoconf-3420000.tar.gz"
:sha256: "7abcfd161c6e2742ca5c6c0895d1f853c940f203304a0b49da4e1eca5d088ca6"
- :url: "https://sqlite.org/2023/sqlite-autoconf-3430000.tar.gz"
:sha256: "49008dbf3afc04d4edc8ecfc34e4ead196973034293c997adad2f63f01762ae1"
4 changes: 2 additions & 2 deletions test/test_integration_statement.rb
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,10 @@ def test_bind_param_by_name_good
def test_bind_param_with_various_types
@db.transaction do
@db.execute "create table all_types ( a integer primary key, b float, c string, d integer )"
@db.execute "insert into all_types ( b, c, d ) values ( 1.4, 'hello', 68719476735 )"
@db.execute "insert into all_types ( b, c, d ) values ( 1.5, 'hello', 68719476735 )"
end

assert_equal 1, @db.execute( "select * from all_types where b = ?", 1.4 ).length
assert_equal 1, @db.execute( "select * from all_types where b = ?", 1.5 ).length
assert_equal 1, @db.execute( "select * from all_types where c = ?", 'hello').length
assert_equal 1, @db.execute( "select * from all_types where d = ?", 68719476735).length
end
Expand Down

0 comments on commit 662d731

Please sign in to comment.