Navigation Menu

Skip to content

Commit

Permalink
Remove trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 27, 2017
1 parent 072ba3d commit 5131903
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/groonga/client/command-line/groonga-client-index-check.rb
Expand Up @@ -146,7 +146,7 @@ def column_create(table_name, name, flags, type, source)
:type => type,
:source => source)
end

def column_remove(table_name, column_name)
execute_command(:column_remove,
:table => table_name,
Expand Down Expand Up @@ -212,14 +212,14 @@ def list_tokens(table_name)
keys = []
response = execute_command(:select,
:table => table_name,
:limit => -1,
:limit => -1,
:output_columns => :_key)
keys = response.records.collect do |record|
record["_key"]
end
keys
end

def verify_tokens(table_name, old_column, new_column, tokens)
broken_index_tokens = []
tokens.each do |token|
Expand Down Expand Up @@ -250,7 +250,7 @@ def verify_tokens(table_name, old_column, new_column, tokens)
end
broken_index_tokens
end

def check_index_integrity
table_names = table_list.collect do |table|
if check_target_table?(table["name"])
Expand Down

0 comments on commit 5131903

Please sign in to comment.