diff options
| author | Marc G. Fournier | 1997-03-25 02:37:21 +0000 |
|---|---|---|
| committer | Marc G. Fournier | 1997-03-25 02:37:21 +0000 |
| commit | ef56e51cd32b0590d5e048e8a6ff777b8a64916b (patch) | |
| tree | 9df03033a6e9bf685dab5f402fdbb0ca43c880b0 /src/backend/tcop | |
| parent | e16b43e2dc87fa8dea1f71f9bb924bdac14497d9 (diff) | |
- Renamed the variable names to something shorter, and I hope
nicer. Also, I grabbed my copy of the Informix manual, and
added a couple of variables that make sense (formats for
money, time, a language setting, a timezone).
- New functions SetPGVariable() and GetPGVariable() in tcop/*.
These don't actually do anything for the moment, but should
be enough to implement the SET var_name TO var_val in the
parser?
SetPGVariable() expects just two strings, the var_name and
the var_value from above, and is expected to do the right thing.
Returns TRUE if everything okay.
From: "Martin J. Laubach" <mjl@wwx.vip.at>
Diffstat (limited to 'src/backend/tcop')
| -rw-r--r-- | src/backend/tcop/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/tcop/Makefile b/src/backend/tcop/Makefile index 47bdd96909e..a40e3e717e5 100644 --- a/src/backend/tcop/Makefile +++ b/src/backend/tcop/Makefile @@ -4,7 +4,7 @@ # Makefile for tcop # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.8 1996/11/18 02:26:55 bryanh Exp $ +# $Header: /cvsroot/pgsql/src/backend/tcop/Makefile,v 1.9 1997/03/25 02:35:22 scrappy Exp $ # #------------------------------------------------------------------------- @@ -24,7 +24,7 @@ ifeq ($(CC), gcc) CFLAGS+= -Wno-error endif -OBJS= aclchk.o dest.o fastpath.o postgres.o pquery.o utility.o +OBJS= aclchk.o dest.o fastpath.o postgres.o pquery.o utility.o variable.o all: SUBSYS.o |
