aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/test/cases/relations_test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activerecord/test/cases/relations_test.rb')
-rw-r--r--activerecord/test/cases/relations_test.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/activerecord/test/cases/relations_test.rb b/activerecord/test/cases/relations_test.rb
index 1781a015bc..b27815539b 100644
--- a/activerecord/test/cases/relations_test.rb
+++ b/activerecord/test/cases/relations_test.rb
@@ -207,8 +207,11 @@ class RelationTest < ActiveRecord::TestCase
end
def test_select_with_subquery_in_from_uses_original_table_name
- if current_adapter?(:SQLite3Adapter) && ENV["TRAVIS"]
- skip "https://travis-ci.org/rails/rails/jobs/496726410#L1198-L1208"
+ if current_adapter?(:SQLite3Adapter) && (ENV["TRAVIS"] || ENV["BUILDKITE"])
+ skip <<~MSG
+ https://travis-ci.org/rails/rails/jobs/496726410#L1198-L1208
+ https://buildkite.com/rails/rails/builds/58981#2423c707-7c56-4639-a76e-8db4fd1e5cf3/102-111
+ MSG
end
relation = Comment.joins(:post).select(:id).order(:id)
subquery = Comment.from(Comment.all, Comment.quoted_table_name).joins(:post).select(:id).order(:id)