Otherwise, since it is a type based on text, users could receive an error like > ERROR: could not determine which collation to use for string comparison when running VACUUM ANALYZE, for instance.
14 lines
255 B
Makefile
14 lines
255 B
Makefile
MODULE_big = vat
|
|
OBJS = vatin.o es.o
|
|
|
|
EXTENSION = vat
|
|
DATA = vat--0.0.sql \
|
|
vat--0.0--0.1.sql
|
|
PGFILEDESC = "vat - data type for VAT identification numbers"
|
|
|
|
REGRESS = vat
|
|
|
|
PG_CONFIG := pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|