Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop unused env_content_ids_with_null_content method #940

Merged
merged 1 commit into from
Oct 16, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions definitions/features/candlepin_database.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,6 @@ def check_option_using_cpdb_help(option_name, parent_cmd = '')
execute?(help_cmd)
end

def env_content_ids_with_null_content
sql = <<-SQL
SELECT ec.id
FROM cp_env_content ec
LEFT JOIN cp_content c ON ec.contentid = c.id WHERE c.id IS NULL
SQL
query(sql).map { |r| r['id'] }
end

private

def load_configuration
Expand Down
Loading