Sha256: 6de93f71fa1f692520a3f25516a1845ca10b81c1abbb8c862cbc8d2eeba70fb3
Contents?: true
Size: 391 Bytes
Versions: 1
Compression:
Stored size: 391 Bytes
Contents
require_relative '../command' module AmazonAthena module Commands class ShowCreateTable < AmazonAthena::Command def initialize(database_table) @database_table = database_table end def statement "SHOW CREATE TABLE #{@database_table};" end def run(connection) connection.query(statement).raw_output end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
athena-cli-0.1.0 | lib/amazon_athena/commands/show_create_table.rb |