summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarko Kreen2012-09-28 13:49:11 +0000
committerMarko Kreen2012-09-28 13:52:35 +0000
commitb95b5865dedea3b7b695680459b8463c34de7a9a (patch)
treefb7551b4f7bbee0bd97775bbea60df0ebd9a5e9a
parent46a5a85e72382d804b9e0e9fd48f331270e27e77 (diff)
sql: sync versions in all files
Seems there aretoo many places where version needs to be mentioned..
-rw-r--r--sql/londiste/londiste.control2
-rw-r--r--sql/pgq/pgq.control2
-rw-r--r--sql/pgq_coop/functions/pgq_coop.version.sql2
3 files changed, 3 insertions, 3 deletions
diff --git a/sql/londiste/londiste.control b/sql/londiste/londiste.control
index 96c0e96f..2dd908e2 100644
--- a/sql/londiste/londiste.control
+++ b/sql/londiste/londiste.control
@@ -1,6 +1,6 @@
# Londiste extensions
comment = 'Londiste Replication'
-default_version = '3.1'
+default_version = '3.1.1'
relocatable = false
superuser = true
schema = 'pg_catalog'
diff --git a/sql/pgq/pgq.control b/sql/pgq/pgq.control
index f02c27d5..0aa89ede 100644
--- a/sql/pgq/pgq.control
+++ b/sql/pgq/pgq.control
@@ -1,6 +1,6 @@
# pgq extension
comment = 'Generic queue for PostgreSQL'
-default_version = '3.1'
+default_version = '3.1.1'
relocatable = false
superuser = true
schema = 'pg_catalog'
diff --git a/sql/pgq_coop/functions/pgq_coop.version.sql b/sql/pgq_coop/functions/pgq_coop.version.sql
index aab49258..2b89fbb0 100644
--- a/sql/pgq_coop/functions/pgq_coop.version.sql
+++ b/sql/pgq_coop/functions/pgq_coop.version.sql
@@ -8,7 +8,7 @@ returns text as $$
-- and only bumped when database code changes.
-- ----------------------------------------------------------------------
begin
- return '3.1.0.0';
+ return '3.1.1';
end;
$$ language plpgsql;