- 18 Jan, 2000 16 commits
-
-
Bruce Momjian authored
Here is a patch to bring both libpq and psql to a state where it compiles on win32 (native) again. A lot of things have changed, and I have not been able to keep up with them all, so it has been broken for quite a while. After this patch, at least it compiles. It also talks "basic talk" to the server, but I have not yet tested all things. Sending queries, and using e.g. \d or \dt works fine. The rest will have to be tested further. It also bumps the version on libpq.dll to 7.0. Everything should be enclosed in #ifdef WIN32, unless I have missed something. Except for one or maybe two places where I have moved a #include that should not be used on win32 from the "global area" into a "#ifndef WIN32 area". //Magnus
-
Bruce Momjian authored
Attached is a patch which patches cleanly against the Sunday afternoon snapshot. It modifies pg_dump to dump COMMENT ON statements for user-definable descriptions. In addition, it also modifies comment.c so that the operator behavior is as Peter E. would like: a comment on an operator is applied to the underlying function. Thanks, Mike Mascari
-
Tatsuo Ishii authored
-
Tatsuo Ishii authored
-
Michael Meskes authored
-
Tom Lane authored
-
Bruce Momjian authored
CONSTRAINT Oliver Elphick
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tatsuo Ishii authored
-
Tatsuo Ishii authored
-
Tatsuo Ishii authored
pg_char_to_encoding() pg_encoding_to_char()
-
Tom Lane authored
is considerably more robust and accurate than it used to be. Also, get rid of numeric's private allocation freelist, which is no longer a win since Jan rewrote palloc.
-
Tatsuo Ishii authored
-
Tatsuo Ishii authored
-
Peter Eisentraut authored
Made ipcclean work on Linux.
-
- 17 Jan, 2000 13 commits
-
-
Tom Lane authored
where necessary --- several of them didn't really need it, though. tqual-checking macros simplified accordingly.
-
Tom Lane authored
-
Bruce Momjian authored
-
Tom Lane authored
files being left around.
-
Tom Lane authored
data can be formatted per call. This requires relying on vsnprintf(). On machines that haven't got vsnprintf, link in the version from backend/port/.
-
Bruce Momjian authored
-
Tom Lane authored
coerce_type, so that the right things happen when coercing a previously- unknown constant to a destination data type.
-
Tom Lane authored
Of the standard types, only 'timestamp' seems not to have an array type; should it be added, or are we going to remove that type for 7.0 anyway?
-
Hiroshi Inoue authored
Fix for TODO item * spinlock stuck problem when elog(FATAL) and elog(ERROR) inside bufmgr.
-
Tom Lane authored
comment style apparently isn't portable to other awks.
-
Tom Lane authored
data in its pg_proc entry. abs() doesn't require two arguments, last I heard.
-
Tom Lane authored
now truncate or pad to the specified length.
-
Tom Lane authored
SQL cast constructs can be performed during expression transformation instead of during parsing. This allows constructs like x::numeric(9,2) and x::int2::float8 to behave as one would expect.
-
- 16 Jan, 2000 11 commits
-
-
Tom Lane authored
read is reused for successive attributes, instead of being deleted and recreated from scratch for each value read in. This reduces palloc/pfree overhead a lot. COPY IN still seems to be noticeably slower than it was in 6.5 --- we need to figure out why. This change takes care of the only major performance loss I can see in copy.c itself, so the performance problem is at a lower level somewhere.
-
Tom Lane authored
by creating a race condition. It wasn't waiting for select() to say write-ready immediately after connect, which meant that you might get an unhelpful 'broken pipe' error message if connect failed, rather than the intended error message.
-
Tom Lane authored
overwrote.
-
Peter Eisentraut authored
-
Peter Eisentraut authored
-
Tom Lane authored
-
Tom Lane authored
CommandCounterIncrement to make new relation visible before trying to parse/deparse the expressions. Also, eliminate unnecessary setheapoverride calls in AddNewAttributeTuples.
-
Tom Lane authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Bruce Momjian authored
-