Skip to content
Snippets Groups Projects
Commit 9b34f6cb authored by Andy Schoenen's avatar Andy Schoenen :two:
Browse files

Merge branch 'mk/fix-separate-verification-state-table-method' into 'master'

Geo: Fix undefined separate_verification_state_table?

See merge request !78293
parents 55e27263 17bb757f
No related branches found
No related tags found
1 merge request!78293Geo: Fix undefined separate_verification_state_table?
Pipeline #451343628 passed
......@@ -53,12 +53,6 @@ def pluck_verifiable_ids_in_range(range)
.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 @@ def verification_arel_table
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?
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment