Sha256: d275ac33c65bb4c326f41420f3d8847c582f95f45cbf02a23c3e292bd02bb024
Contents?: true
Size: 391 Bytes
Versions: 1
Compression:
Stored size: 391 Bytes
Contents
require_relative '../command' module AmazonAthena module Commands class RepairTable < AmazonAthena::Command def initialize(database_table) @database_table = database_table end def statement "MSCK REPAIR TABLE #{@database_table};" end def run(connection) connection.query(statement) return 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/repair_table.rb |