mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-23 22:29:58 +00:00
## Problem We have to test the extensions, shipped with Neon for compatibility before the upgrade. ## Summary of changes Added the test for compatibility with the upgraded extensions.
19 lines
501 B
Diff
19 lines
501 B
Diff
diff --git a/expected/rum.out b/expected/rum.out
|
|
index 5966d19..8860b79 100644
|
|
--- a/expected/rum.out
|
|
+++ b/expected/rum.out
|
|
@@ -1,4 +1,3 @@
|
|
-CREATE EXTENSION rum;
|
|
CREATE TABLE test_rum( t text, a tsvector );
|
|
CREATE TRIGGER tsvectorupdate
|
|
BEFORE UPDATE OR INSERT ON test_rum
|
|
diff --git a/sql/rum.sql b/sql/rum.sql
|
|
index 8414bb9..898e6ab 100644
|
|
--- a/sql/rum.sql
|
|
+++ b/sql/rum.sql
|
|
@@ -1,5 +1,3 @@
|
|
-CREATE EXTENSION rum;
|
|
-
|
|
CREATE TABLE test_rum( t text, a tsvector );
|
|
|
|
CREATE TRIGGER tsvectorupdate
|