- 25 Mar, 1997 6 commits
-
-
Marc G. Fournier authored
-
Vadim B. Mikheev authored
(#ifdef-ed).
-
Marc G. Fournier authored
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>
-
Marc G. Fournier authored
-
Marc G. Fournier authored
fix, but figure I"ll know soon enough, eh? Patch submitted by Dan McGuirk
-
Marc G. Fournier authored
Pointed out by Dan McGuirk
-
- 24 Mar, 1997 4 commits
-
-
Vadim B. Mikheev authored
Actually required by multi-column indices support. We still don't use btree for 'A is (not) null', but now btree keep items with NULL attrs using single rule for placing/finding items on pages: NULLs greater NOT_NULLs and NULL = NULL. + Bulkload code (nbtsort.c) support for multi-column indices building and NULLs. + Fix for btendscan()->pfree(scanopaque) from Chris Dunlop.
-
Vadim B. Mikheev authored
for which checking was TRUE.
-
Vadim B. Mikheev authored
-
Vadim B. Mikheev authored
is in use by btree now.
-
- 21 Mar, 1997 2 commits
-
-
Marc G. Fournier authored
Thanks to D'Arcy for pointing this one out
-
Marc G. Fournier authored
Subject: [HACKERS] backend/utils/adt/nabstime.c There is a problem with some of the calls to strftime. The second arg is missing. In all cases the buffer is CTZName which, according to the file init/globals.c, is char CTZName[8] so I have added this value. I know there should be a #define set up for this but I wasn't sure which header to put it in.
-
- 20 Mar, 1997 4 commits
-
-
Marc G. Fournier authored
From: Keith Parks <emkxp01@mtcc.demon.co.uk>
-
Marc G. Fournier authored
Subject: [HACKERS] libpq/pqcomm stuff and Solaris byte order I decided to go ahead with the required changes since no one else seems to. I don't guarantee that it is perfect but with these changes the package actually compiles. While I was at it I added to the Sparc Solaris header to define the byte order. Note that NetBSD sets this in the system headers so it wasn't required there. In particular, someone may want to check whether I removed the correct 84 lines from backend/libpq/pqcomprim.c.
-
Marc G. Fournier authored
include crypt.h in password.c if crypt.h does exist
-
Marc G. Fournier authored
*hopefully* will fix the linux configuration problem..?
-
- 19 Mar, 1997 8 commits
-
-
Vadim B. Mikheev authored
-
Vadim B. Mikheev authored
-
Vadim B. Mikheev authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
Change Makefile to refl removal of portc Change dynloader.c so that its only used if PRE_BSDI_2_1 is defined
-
Marc G. Fournier authored
found
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
- 18 Mar, 1997 8 commits
-
-
Marc G. Fournier authored
Subject: [HACKERS] auth.c for kerberos. I made pgsql with eBones(international version of Kerberos4). The following modification was needed. And I added read permition for group to srvtab instead of running postmaster as root.
-
Marc G. Fournier authored
By: Dan McGuirk <mcguirk@indirect.com>
-
Marc G. Fournier authored
According to man page under FreeBSD for sys_errlist[], strerror() should be used instead...not sure if this will break other systems, so only changing two files for now, and we'll see what "errors" it turns up
-
Marc G. Fournier authored
-
Marc G. Fournier authored
of common routines in pqcomprim.c (pq communication primitives). Not all adapted to it yet, but it's a start. - Rewritten some of those routines, to write/read bigger chunks of data, precomputing stuff in buffers instead of sending out byte by byte. - As a consequence, I need to know the endianness of the machine. Currently I rely on getting it from machine/endian.h, but this may not be available everywhere? (Who the hell thought it was a good idea to pass integers to the backend the other way around than the normal network byte order? *argl*) - Libpq looks in the environment for magic variables, and upon establishing a connection to the backend, sends it queries of the form "SET var_name TO 'var_value'". This needs a change in the backend parser (Mr. Parser, are you there? :) - Currently it looks for two Env-Vars, namely PG_DATEFORMAT and PG_FLOATFORMAT. What else makes sense? PG_TIMEFORMAT? PG_TIMEZONE? From: "Martin J. Laubach" <mjl@wwx.vip.at>
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-
Marc G. Fournier authored
bring in Thomas's updates for the date/time code...
-
- 17 Mar, 1997 2 commits
-
-
Marc G. Fournier authored
-
Marc G. Fournier authored
Pointed out by Martin
-
- 16 Mar, 1997 6 commits
-
-
Marc G. Fournier authored
By: From: Edmund Mergl <mergl@nadia.s.bawue.de>
-
Marc G. Fournier authored
-
Marc G. Fournier authored
Subject: [HACKERS] Patches for 970316 compilation I made a small pre-emptive change in the new datetime code to eliminate calls to infnan(). Hopefully this will make Solaris (and probably other non-GNUlib) systems happier. Didn't find fe-connect.h in the 970316 distribution, so made one up. Also, one of the test routines needs an update for the geo-decls.h -> geo_decls.h name change. Patches appear below...
-
Marc G. Fournier authored
Subject: [HACKERS] Patch for io routines I am currently trying to improve on the front-backend communication routines; and noticed that lots of code are duplicated for libpq and the backend. This is a first patch that tries to share code between the two, more to follow. mjl
-
Marc G. Fournier authored
-
Marc G. Fournier authored
-