# File lib/rubyrep/table_spec_resolver.rb, line 11
    def tables(database)
      @table_cache ||= {}
      unless @table_cache[database]
        @table_cache[database] = session.send(database).tables
      end
      @table_cache[database]
    end