Skip to content

Commit

Permalink
Revert "Test for schema order of non-public-schema views"
Browse files Browse the repository at this point in the history
This reverts commit d0f2052. It is
failing every build on main.
  • Loading branch information
derekprior committed Mar 28, 2024
1 parent d0f2052 commit b371800
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions spec/scenic/schema_dumper_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -69,22 +69,6 @@ class SearchInAHaystack < ActiveRecord::Base

Search.connection.drop_view :"scenic.searches"
end

it "sorts dependency order when views exist in a non-public schema" do
Search.connection.execute("CREATE SCHEMA IF NOT EXISTS scenic; SET search_path TO public, scenic")
Search.connection.execute("CREATE VIEW scenic.apples AS SELECT 1;")
Search.connection.execute("CREATE VIEW scenic.bananas AS SELECT 2;")
Search.connection.execute("CREATE OR REPLACE VIEW scenic.apples AS SELECT * FROM scenic.bananas;")
stream = StringIO.new

ActiveRecord::SchemaDumper.dump(Search.connection, stream)
views = stream.string.lines.grep(/create_view/).map do |view_line|
view_line.match('create_view "(?<name>.*)"')[:name]
end
expect(views).to eq(%w[scenic.bananas scenic.apples])

Search.connection.execute("DROP SCHEMA IF EXISTS scenic CASCADE; SET search_path TO public")
end
end

it "handles active record table name prefixes and suffixes" do
Expand Down

0 comments on commit b371800

Please sign in to comment.