Commit 17bb757f authored by Mike Kozono's avatar Mike Kozono

Geo: Fix undefined separate_verification_state_table?

Changelog: fixed
EE: true
parent 15c73d5d
......@@ -53,12 +53,6 @@ module Geo
.primary_key_in(range)
.pluck_primary_key
end
# @return whether primary checksum data is stored in a table separate
# from the model table
def separate_verification_state_table?
verification_state_table_name != table_name
end
end
end
end
......@@ -200,6 +200,12 @@ module Geo
verification_state_table_class.arel_table
end
# @return whether primary checksum data is stored in a table separate
# from the model table
def separate_verification_state_table?
verification_state_table_name != table_name
end
def verification_timed_out_batch_query
return verification_timed_out unless separate_verification_state_table?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment