Skip to content

Commit

Permalink
Bump tiny-presto to 0.0.7 to use docker image in GitHub Container Reg…
Browse files Browse the repository at this point in the history
…istry (#69)
  • Loading branch information
takezoe authored Mar 31, 2021
1 parent 6e44b75 commit 57b5045
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ source 'https://rubygems.org/'
gemspec

group :development, :test do
gem 'tiny-presto', '~> 0.0.5'
gem 'tiny-presto', '~> 0.0.7'
end
2 changes: 1 addition & 1 deletion spec/basic_query_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
describe Presto::Client::Client do
before(:all) do
WebMock.disable!
@cluster = TinyPresto::Cluster.new('316')
@cluster = TinyPresto::Cluster.new('ghcr.io/trinodb/presto', '316')
@container = @cluster.run
@client = Presto::Client.new(server: 'localhost:8080', catalog: 'memory', user: 'test-user', schema: 'default')
loop do
Expand Down
2 changes: 1 addition & 1 deletion spec/tpch_query_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
before(:all) do
@spec_path = File.dirname(__FILE__)
WebMock.disable!
@cluster = TinyPresto::Cluster.new('316')
@cluster = TinyPresto::Cluster.new('ghcr.io/trinodb/presto', '316')
@container = @cluster.run
@client = Presto::Client.new(server: 'localhost:8080', catalog: 'tpch', user: 'test-user', schema: 'tiny')
loop do
Expand Down

0 comments on commit 57b5045

Please sign in to comment.