1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
--- a/src/monitor/expected/upgrade.out
+++ b/src/monitor/expected/upgrade.out
@@ -2,34 +2,34 @@
-- Licensed under the PostgreSQL License.
CREATE EXTENSION pgautofailover VERSION '1.0';
\dx pgautofailover
- List of installed extensions
- Name | Version | Schema | Description
-----------------+---------+--------+------------------
- pgautofailover | 1.0 | public | pg_auto_failover
+ List of installed extensions
+ Name | Version | Default version | Schema | Description
+----------------+---------+-----------------+--------+------------------
+ pgautofailover | 1.0 | 2.2 | public | pg_auto_failover
(1 row)
ALTER EXTENSION pgautofailover UPDATE TO '1.1';
\dx pgautofailover
- List of installed extensions
- Name | Version | Schema | Description
-----------------+---------+--------+------------------
- pgautofailover | 1.1 | public | pg_auto_failover
+ List of installed extensions
+ Name | Version | Default version | Schema | Description
+----------------+---------+-----------------+--------+------------------
+ pgautofailover | 1.1 | 2.2 | public | pg_auto_failover
(1 row)
ALTER EXTENSION pgautofailover UPDATE TO '1.2';
\dx pgautofailover
- List of installed extensions
- Name | Version | Schema | Description
-----------------+---------+--------+------------------
- pgautofailover | 1.2 | public | pg_auto_failover
+ List of installed extensions
+ Name | Version | Default version | Schema | Description
+----------------+---------+-----------------+--------+------------------
+ pgautofailover | 1.2 | 2.2 | public | pg_auto_failover
(1 row)
ALTER EXTENSION pgautofailover UPDATE TO '1.3';
\dx pgautofailover
- List of installed extensions
- Name | Version | Schema | Description
-----------------+---------+--------+------------------
- pgautofailover | 1.3 | public | pg_auto_failover
+ List of installed extensions
+ Name | Version | Default version | Schema | Description
+----------------+---------+-----------------+--------+------------------
+ pgautofailover | 1.3 | 2.2 | public | pg_auto_failover
(1 row)
DROP EXTENSION pgautofailover;
--- /dev/null
+++ b/src/monitor/expected/upgrade_0.out
@@ -0,0 +1,35 @@
+-- Copyright (c) Microsoft Corporation. All rights reserved.
+-- Licensed under the PostgreSQL License.
+CREATE EXTENSION pgautofailover VERSION '1.0';
+\dx pgautofailover
+ List of installed extensions
+ Name | Version | Schema | Description
+----------------+---------+--------+------------------
+ pgautofailover | 1.0 | public | pg_auto_failover
+(1 row)
+
+ALTER EXTENSION pgautofailover UPDATE TO '1.1';
+\dx pgautofailover
+ List of installed extensions
+ Name | Version | Schema | Description
+----------------+---------+--------+------------------
+ pgautofailover | 1.1 | public | pg_auto_failover
+(1 row)
+
+ALTER EXTENSION pgautofailover UPDATE TO '1.2';
+\dx pgautofailover
+ List of installed extensions
+ Name | Version | Schema | Description
+----------------+---------+--------+------------------
+ pgautofailover | 1.2 | public | pg_auto_failover
+(1 row)
+
+ALTER EXTENSION pgautofailover UPDATE TO '1.3';
+\dx pgautofailover
+ List of installed extensions
+ Name | Version | Schema | Description
+----------------+---------+--------+------------------
+ pgautofailover | 1.3 | public | pg_auto_failover
+(1 row)
+
+DROP EXTENSION pgautofailover;
|