Skip to content

Commit e4fe3f6

Browse files
authored
Use jdbc:sqlite::memory: as documented in Sequel docs
* Remove confusing comment.
1 parent f6cb19c commit e4fe3f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

benchmarks/sequel/benchmark.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
require "sequel"
88

99
if RUBY_ENGINE == "jruby"
10-
DB = Sequel.connect("jdbc:sqlite:") # Can add :memory: afterward for mem DB
10+
DB = Sequel.connect("jdbc:sqlite::memory:")
1111
else
1212
DB = Sequel.sqlite
1313
end

0 commit comments

Comments
 (0)