summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Collapse)Author
1996-10-13Fix structure member name from previous patch.Bruce Momjian
1996-10-13I checked the alter table code, and started suspecting the relationBruce Momjian
cache. I found if I manually added a line to flush the whole relation cache, the assert error disappeared. Looking through the code, I found that the relation cache is flushed at the end of each query if the reference count is zero for the relation. However, printf's showed that the rd_relcnt(reference count) for the accessed query was not returning to zero after each query. It turns out the parser was doing a heap_ropen in parser/analyze.c to get information about the table's columns, but was not doing a heap_close. This was causing the query after the ALTER TABLE ADD to see the old table structure, and the executor's assert was reporting the problem.
1996-10-11Prepare for new host-based authenticationBryan Henderson
1996-10-11Add a MIPS/NetBSD port...Marc G. Fournier
1996-10-08Change sh-style comments to C comments.Bruce Momjian
1996-10-08Moved the following definitions to include/config.h from Makefile.global:Marc G. Fournier
NAMEDATALEN OIDDATALEN EUROPEAN_DATES HBA DEADLOCK_TIMEOUT OPENLINK_PATCHES NULL_PATCH ARRAY_PATCH Attempting to document and centralize as many of the "defines" as possible... kinda useless to have defines if nobody knows they exist, eh?
1996-10-07Move the NAMEDATALEN/OIDNAMELEN defines to include/config.hMarc G. Fournier
1996-10-05Stylistic cleanups...Marc G. Fournier
1996-10-05Add comment about possible zero value.Bruce Momjian
1996-10-05Change shell-style comments to C-style.Bruce Momjian
1996-10-04Moved the define of SIGNAL_ARGS that D'Arcy just created to config.h so thatMarc G. Fournier
hopefully this sort of thing can eventually be determined using configure?
1996-10-04The remainder of D'Arcy's changes, most notibly the usage of SIGNAL_ARGSMarc G. Fournier
1996-10-03Fixed file to properly do SEMUN for BSDI.Bruce Momjian
Grouped some PORTNAME's for SEMUN.
1996-10-02Added NEED_UNION_SEMUN to config.hMarc G. Fournier
1996-10-02Moved whether to define union semun from include/storage/ipc.h toMarc G. Fournier
a define in include/config.h
1996-09-23Date: Sun, 22 Sep 1996 13:47:39 -0400 (EDT)Marc G. Fournier
From: Bruce Momjian <maillist@candle.pha.pa.us> To: Postgres95-development <pg95-dev@ki.net> Subject: [PG95-DEV] 2.0 patch for fastgetattr
1996-09-21|For starters, here's a small patch that removes a compiler warning in thatMarc G. Fournier
|regex stuff on Linux. | |-- |Bryan Henderson Phone 408-227-6803 |San Jose, California |
1996-09-20Add the regex include files to the repository...Marc G. Fournier
In my cvs source tree, tihs directory existed, which is why it compiled on my system, but nobody elses...
1996-09-16enable PQ_NOTIFY_PATCH in config.hMarc G. Fournier
1996-09-16Enable FUNC_UTIL_PATCH by defaultMarc G. Fournier
1996-09-16|Subject: Postgres patch: Assert attribute type matchMarc G. Fournier
| |Here's a patch for Version 2 only. It just adds an Assert to catch some |inconsistencies in the catalog classes. | |-- |Bryan Henderson Phone 408-227-6803 |San Jose, California |
1996-09-10Add use of INDEXSCAN_PATCH to config.h instead of putting it in Makefile.globalMarc G. Fournier
1996-08-28Clean up th ecompile process by centralizing the include filesMarc G. Fournier
- code compile tested, but due to a yet unresolved problem with parse.h's creation, compile not completed...
1996-08-28More cleanups of the include filesMarc G. Fournier
- centralizing to simplify the -I's required to compile
1996-08-28c.h is included in postgres.h alreadyMarc G. Fournier
1996-08-27#ifndef the include file like the rest, so that it doesn't get pulledMarc G. Fournier
in twice...
1996-08-27Oops, win32 does have one more thing in its machine.h...move thatMarc G. Fournier
define to config.h
1996-08-27We have a machine.h for each platform just because of BLCKSZ, and everyMarc G. Fournier
platform with a machine.h has the same BLCKSZ? Consolidate machine.h into config.h
1996-08-27Moved from backend/access to include/accessMarc G. Fournier
1996-08-27One file at a time, one directory after the other...this is goingMarc G. Fournier
to be one helluva chore to clean up...
1996-08-27first attempt at centralizing config information for portsMarc G. Fournier
1996-08-27Its a start...Marc G. Fournier