Bruce Momjian
81f2f81960
Removed const warning.
1996-10-13 18:39:41 +00:00
Bruce Momjian
54612f5141
D'Arcy change.
1996-10-13 18:38:51 +00:00
Bruce Momjian
baf9a6e24c
Added include needed for recent addition.
...
I hope everyone has sys/socket.h.
1996-10-13 18:38:04 +00:00
Bruce Momjian
e6cacf9211
Added include needed for recent addition.
1996-10-13 18:37:19 +00:00
Bruce Momjian
d31909be6c
Fix structure member name from previous patch.
1996-10-13 17:13:58 +00:00
Bruce Momjian
44bf483446
Removed duplicate MAXNAMELEN define I accidentally added.
1996-10-13 13:46:20 +00:00
Bruce Momjian
86be8677a9
Added consistent include file handling for MAXHOSTNAMELEN.
...
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-13 04:50:27 +00:00
Bruce Momjian
abb1b3e770
I checked the alter table code, and started suspecting the relation
...
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-13 04:26:39 +00:00
Bryan Henderson
bef3c89a1c
Fix prototypes so postmaster.c will compile.
1996-10-13 04:01:05 +00:00
Bryan Henderson
369848857e
New host-based authentication -- set up pg_hba.conf instead of pg_hba
1996-10-12 07:49:56 +00:00
Bryan Henderson
785234d6ca
New host-based authentication -- send error message when authentication fails
1996-10-12 07:48:49 +00:00
Bryan Henderson
4b5c977782
New host-based authentication with ident
1996-10-12 07:47:12 +00:00
Bryan Henderson
57026d6009
New host-based authentication -- install pg_hba.conf instead of pg_hba
1996-10-12 07:44:39 +00:00
Bryan Henderson
09bb369d23
Separate general purpose functions from portal functions so they may be
...
used in test drivers.
1996-10-11 09:47:14 +00:00
Bryan Henderson
6d70d550e6
Prepare for new host-based authentication
1996-10-11 09:12:18 +00:00
Marc G. Fournier
81cda65f74
Add a MIPS/NetBSD port...
1996-10-11 03:56:41 +00:00
Marc G. Fournier
b7559f94cd
This change should have no practical effect but it is the more
...
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-11 03:25:00 +00:00
Marc G. Fournier
2663dfd94e
I have written some patches to the postgres lock manager which allow the
...
use of long term cooperative locks managed by the user applications.
Submitted by: Massimo Dal Zotto <dz@cs.unitn.it>
1996-10-11 03:22:59 +00:00
Marc G. Fournier
97906ac697
Reinstituted NAMEDATALEN OIDNAMELEN in Makefile.global so that initdb
...
works again...
1996-10-11 02:38:16 +00:00
Bryan Henderson
329b38eebb
Add PGUSER environment variable for client to specify Postgres username.
1996-10-10 08:20:11 +00:00
Bruce Momjian
ca5f6dba0f
Comment cleanup.
1996-10-10 00:18:52 +00:00
Bruce Momjian
9b1e61b7e9
Changed psql \h command to print commands in three columns.
...
No more scrolling off the screen.
1996-10-09 00:15:44 +00:00
Bruce Momjian
c306d06cf9
Change sh-style comments to C comments.
1996-10-08 22:23:19 +00:00
Bruce Momjian
dd09982f3e
Add execute permission.
1996-10-08 04:09:50 +00:00
Bruce Momjian
dcef39f03b
Add execute permits.
1996-10-08 04:04:38 +00:00
Bruce Momjian
5fb8eaa592
Add execute permission.
1996-10-08 03:53:10 +00:00
Marc G. Fournier
d6dfbecb07
Moved the following definitions to include/config.h from Makefile.global:
...
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-08 00:09:05 +00:00
Marc G. Fournier
87bb8daab8
Move the NAMEDATALEN/OIDNAMELEN defines to include/config.h
1996-10-07 23:57:01 +00:00
Marc G. Fournier
6470d5b1c1
Fix handling of no '../doc' directory in compile procedure...
1996-10-07 23:53:47 +00:00
Marc G. Fournier
4e8f5c337c
Well I haven't received any feedback pro or con re my suggested new Tcl
...
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-07 21:19:09 +00:00
Marc G. Fournier
ea733aa997
Fix a couple of small things from D'Arcy's last patch
...
Submitted by: D'Arcy Cain
1996-10-07 21:17:01 +00:00
Bruce Momjian
a409f40ea8
Modified Assert to be more selective.
1996-10-07 19:53:15 +00:00
Marc G. Fournier
3dc0c8e4e5
Fixed a missed change from Carsten Heyl <heyl@nads.de>
1996-10-07 07:18:34 +00:00
Marc G. Fournier
de466eb8f4
Mostly adding "const" keyword and making some functions static.
...
Submitted by: D'Arcy Cain
1996-10-07 03:30:40 +00:00
Bruce Momjian
257b4d090c
Change new assert so it generates assert message rather than SIGSEG.
1996-10-07 02:50:19 +00:00
Bruce Momjian
9d9eadea82
add FROM to update page, clean up spelling error in select.
1996-10-07 02:34:54 +00:00
Bruce Momjian
f6792efcc7
Remove sytax errors from file.
1996-10-07 02:33:25 +00:00
Bruce Momjian
3a56b21832
Update help for alter table. remove EXTEND function.
1996-10-07 02:32:39 +00:00
Bruce Momjian
e8e78f4c7b
Fix typo in help text.
1996-10-05 21:34:33 +00:00
Bruce Momjian
3a0bace14f
Renamed file.
1996-10-05 21:16:34 +00:00
Marc G. Fournier
50e708ef88
Stylistic cleanups...
1996-10-05 20:39:05 +00:00
Bruce Momjian
8999ce097f
Add comment about possible zero value.
1996-10-05 20:33:45 +00:00
Bruce Momjian
efac791640
Change shell-style comments to C-style.
1996-10-05 20:33:10 +00:00
Bruce Momjian
47279960a0
Fix assert to allow zero. OK'ed by Bryan.
1996-10-05 20:31:38 +00:00
Bruce Momjian
a433f22c24
Fix args to match prototype.
1996-10-05 20:30:31 +00:00
Bruce Momjian
f29e02017a
Replace double // with /. THis confuses mkid.
1996-10-05 20:29:57 +00:00
Bruce Momjian
a974522f5f
Added single-letter options and case statement.
1996-10-05 03:24:47 +00:00
Bruce Momjian
2d456c473d
Improved creation of mkid files.
1996-10-05 03:23:49 +00:00
Marc G. Fournier
4feb696be7
Here the fix for the first assertion failure I had which killed
...
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-04 20:32:07 +00:00
Marc G. Fournier
002be14c45
And bring in change from 1.0.7 tree to here...
1996-10-04 20:29:35 +00:00