Sha256: b9c8290385a5fc03650963ae854aab3f8c5014d4c607779d24194807e9782132
Contents?: true
Size: 1 KB
Versions: 68
Compression:
Stored size: 1 KB
Contents
module Blazer module Adapters class PrestoAdapter < BaseAdapter def run_statement(statement, comment) columns = [] rows = [] error = nil begin columns, rows = client.run("#{statement} /*#{comment}*/") columns = columns.map(&:name) rescue => e error = e.message end [columns, rows, error] end def tables _, rows = client.run("SHOW TABLES") rows.map(&:first) end def preview_statement "SELECT * FROM {table} LIMIT 10" end protected def client @client ||= begin uri = URI.parse(settings["url"]) query = uri.query ? CGI::parse(uri.query) : {} Presto::Client.new( server: "#{uri.host}:#{uri.port}", catalog: uri.path.to_s.sub(/\A\//, ""), schema: query["schema"] || "public", user: uri.user, http_debug: false ) end end end end end
Version data entries
68 entries across 68 versions & 3 rubygems