Skip to content

Commit

Permalink
fix materialized views
Browse files Browse the repository at this point in the history
  • Loading branch information
BuonOmo committed Sep 3, 2024
1 parent aa0f937 commit 60e531b
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions test/excludes/MaterializedViewTest.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# frozen_string_literal: true


# Materialized views in CRDB do not show up in `pg_class` in
# the transaction they are created. Try this again to see if
# it changed:
#
# ```sql
# BEGIN;
# CREATE MATERIALIZED VIEW foo AS SELECT 1;
# SELECT * FROM pg_class WHERE relname = 'foo';
# ```
self.use_transactional_tests = false

0 comments on commit 60e531b

Please sign in to comment.