summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1996-10-13Added include needed for recent addition.Bruce Momjian
I hope everyone has sys/socket.h.
1996-10-13Added include needed for recent addition.Bruce Momjian
1996-10-13Fix structure member name from previous patch.Bruce Momjian
1996-10-13Removed duplicate MAXNAMELEN define I accidentally added.Bruce Momjian
1996-10-13Added consistent include file handling for MAXHOSTNAMELEN.Bruce Momjian
If I have introduced any syntax errors with this, I will patch them in the morning, and Marc will have a good laugh.
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-13Fix prototypes so postmaster.c will compile.Bryan Henderson
1996-10-12New host-based authentication -- set up pg_hba.conf instead of pg_hbaBryan Henderson
1996-10-12New host-based authentication -- send error message when authentication failsBryan Henderson
1996-10-12New host-based authentication with identBryan Henderson
1996-10-12New host-based authentication -- install pg_hba.conf instead of pg_hbaBryan Henderson
1996-10-11Separate general purpose functions from portal functions so they may beBryan Henderson
used in test drivers.
1996-10-11Prepare for new host-based authenticationBryan Henderson
1996-10-11Add a MIPS/NetBSD port...Marc G. Fournier
1996-10-11This change should have no practical effect but it is the moreMarc G. Fournier
correct way to do this. Theoretically you could have a NULL pointer that isn't represented internally as all 0 bits. This guarantees that it convert correctly. Submitted by: darcy@druid.com (D'Arcy J.M. Cain)
1996-10-11I have written some patches to the postgres lock manager which allow theMarc G. Fournier
use of long term cooperative locks managed by the user applications. Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
1996-10-11Reinstituted NAMEDATALEN OIDNAMELEN in Makefile.global so that initdbMarc G. Fournier
works again...
1996-10-10Add PGUSER environment variable for client to specify Postgres username.Bryan Henderson
1996-10-10Comment cleanup.Bruce Momjian
1996-10-09Changed psql \h command to print commands in three columns.Bruce Momjian
No more scrolling off the screen.
1996-10-08Change sh-style comments to C comments.Bruce Momjian
1996-10-08Add execute permission.Bruce Momjian
1996-10-08Add execute permits.Bruce Momjian
1996-10-08Add execute permission.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-07Fix handling of no '../doc' directory in compile procedure...Marc G. Fournier
1996-10-07Well I haven't received any feedback pro or con re my suggested new TclMarc G. Fournier
function so I am going to assume that it is such a good idea that no one sees any point in discussing it. :-) I have made two changes - I have merged this into pgtclCmds.c and I have taken out any code for updating tuples after the loop body runs. See comments for discussion of this. I have also fixed up the error checking stuff so that break, continue and syntax errors have the expected result. Submitted by: D'Arcy Cain
1996-10-07Fix a couple of small things from D'Arcy's last patchMarc G. Fournier
Submitted by: D'Arcy Cain
1996-10-07Modified Assert to be more selective.Bruce Momjian
1996-10-07Fixed a missed change from Carsten Heyl <heyl@nads.de>Marc G. Fournier
1996-10-07Mostly adding "const" keyword and making some functions static.Marc G. Fournier
Submitted by: D'Arcy Cain
1996-10-07Change new assert so it generates assert message rather than SIGSEG.Bruce Momjian
1996-10-07add FROM to update page, clean up spelling error in select.Bruce Momjian
1996-10-07Remove sytax errors from file.Bruce Momjian
1996-10-07Update help for alter table. remove EXTEND function.Bruce Momjian
1996-10-05Fix typo in help text.Bruce Momjian
1996-10-05Renamed file.Bruce Momjian
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-05Fix assert to allow zero. OK'ed by Bryan.Bruce Momjian
1996-10-05Fix args to match prototype.Bruce Momjian
1996-10-05Replace double // with /. THis confuses mkid.Bruce Momjian
1996-10-05Added single-letter options and case statement.Bruce Momjian
1996-10-05Improved creation of mkid files.Bruce Momjian
1996-10-04Here the fix for the first assertion failure I had which killedMarc G. Fournier
my postmaster 1.07. It's really simple, the loop dealing with all sockets can't handle more than one ready socket :-) A simple logic error dealing with lists. OR IS THERE ANY REASON FOR SETTING curr TO 0? Submitted by: Carsten Heyl <Heyl@nads.de>
1996-10-04And bring in change from 1.0.7 tree to here...Marc G. Fournier
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