Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 6781372

Browse files
committed
Set version to 2.0 for 1C modules
1 parent 08e17d0 commit 6781372

14 files changed

+13
-13
lines changed

contrib/fasttrun/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MODULE_big = fasttrun
22
OBJS = fasttrun.o $(WIN32RES)
33
EXTENSION = fasttrun
4-
DATA = fasttrun--1.0.sql fasttrun--unpackaged--1.0.sql
4+
DATA = fasttrun--2.0.sql fasttrun--unpackaged--2.0.sql
55
DOCS = README.fasttrun
66
REGRESS = fasttrun
77
PGFIELDDESC = "fasttrun - functions to truncates the temporary table and doesn't grow pg_class size."

contrib/fasttrun/fasttrun.control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# fasttrun extension
22
comment = 'Functions to truncates the temporary table and does not grow pg_class size'
3-
default_version = '1.0'
3+
default_version = '2.0'
44
module_pathname = '$libdir/fasttrun'
5-
relocatable = true
5+
relocatable = true

contrib/fulleq/Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MODULE_big = fulleq
22
OBJS = fulleq.o
33
EXTENSION = fulleq
4-
DATA = fulleq--1.0.sql fulleq--unpackaged--1.0.sql
4+
DATA = fulleq--2.0.sql fulleq--unpackaged--2.0.sql
55
DOCS = README.fulleq
66
REGRESS = fulleq
77
PGFIELDDESC = "fulleq - introduce operator == which returns true when operands are equal or both are nulls."
@@ -11,7 +11,7 @@ ARGTYPE = bool bytea char name int8 int2 int4 text \
1111
inet cidr varchar date time timestamp timestamptz \
1212
interval timetz
1313

14-
#EXTRA_CLEAN = fulleq--1.0.sql fulleq--unpackaged--1.0.sql
14+
#EXTRA_CLEAN = fulleq--2.0.sql fulleq--unpackaged--2.0.sql
1515

1616
ifdef USE_PGXS
1717
PGXS := $(shell pg_config --pgxs)
@@ -23,17 +23,17 @@ include $(top_builddir)/src/Makefile.global
2323
include $(top_srcdir)/contrib/contrib-global.mk
2424
endif
2525

26-
all: fulleq--1.0.sql fulleq--unpackaged--1.0.sql
26+
all: fulleq--2.0.sql fulleq--unpackaged--2.0.sql
2727

28-
fulleq--1.0.sql: fulleq--1.0.sql.in.in
28+
fulleq--2.0.sql: fulleq--2.0.sql.in.in
2929
echo '\echo Use "CREATE EXTENSION fulleq" to load this file. \quit' > $@
3030
echo 'SET search_path = public;' >> $@
3131
for type in $(ARGTYPE); \
3232
do \
3333
sed -e "s/ARGTYPE/$$type/g" < $< >> $@; \
3434
done
3535

36-
fulleq--unpackaged--1.0.sql: fulleq-unpackaged.sql.in.in
36+
fulleq--unpackaged--2.0.sql: fulleq-unpackaged.sql.in.in
3737
echo '\echo Use "CREATE EXTENSION fulleq FROM unpackaged" to load this file. \quit' > $@
3838
echo 'DROP OPERATOR CLASS IF EXISTS int2vector_fill_ops USING hash;' >> $@
3939
echo 'DROP OPERATOR FAMILY IF EXISTS int2vector_fill_ops USING hash;' >> $@
File renamed without changes.

contrib/fulleq/fulleq.control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# fulleq extension
22
comment = 'Introduce operator == which returns true when operands are equal or both are nulls.'
3-
default_version = '1.0'
3+
default_version = '2.0'
44
module_pathname = '$libdir/fulleq'
5-
relocatable = true
5+
relocatable = true

contrib/mchar/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ MODULE_big = mchar
22
OBJS = mchar_io.o mchar_proc.o mchar_op.o mchar_recode.o \
33
mchar_like.o
44
EXTENSION = mchar
5-
DATA = mchar--1.0.sql mchar--unpackaged--1.0.sql
5+
DATA = mchar--2.0.sql mchar--unpackaged--2.0.sql
66
DOCS = README.mchar
77
REGRESS = init mchar mvarchar like
88
ENCODING = UTF8
File renamed without changes.

contrib/mchar/mchar.control

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# mchar extension
22
comment = 'mchar type implementation'
3-
default_version = '1.0'
3+
default_version = '2.0'
44
module_pathname = '$libdir/mchar'
5-
relocatable = true
5+
relocatable = true

0 commit comments

Comments
 (0)