mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-21 22:07:01 +08:00
- Really prepare statements - Added more regression tests - Added auto-prepare mode - Use '$n' for positional variables, '?' is still possible via ecpg option - Cleaned up the sources a little bit
30 lines
723 B
Makefile
30 lines
723 B
Makefile
subdir = src/interfaces/ecpg/test/sql
|
|
top_builddir = ../../../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/$(subdir)/../Makefile.regress
|
|
|
|
TESTS = array array.c \
|
|
binary binary.c \
|
|
code100 code100.c \
|
|
copystdout copystdout.c \
|
|
define define.c \
|
|
desc desc.c \
|
|
dyntest dyntest.c \
|
|
dynalloc dynalloc.c \
|
|
dynalloc2 dynalloc2.c \
|
|
execute execute.c \
|
|
fetch fetch.c \
|
|
func func.c \
|
|
indicators indicators.c \
|
|
oldexec oldexec.c \
|
|
parser parser.c \
|
|
quote quote.c \
|
|
show show.c \
|
|
insupd insupd.c
|
|
|
|
all: $(TESTS)
|
|
|
|
oldexec.c: oldexec.pgc ../regression.h
|
|
$(ECPG) -r questionmarks -o $@ -I$(srcdir) $<
|
|
|