Marc G. Fournier
6e420677dd
Moved '#define *DEBUG' defines to config.h, and document where first
...
found.
Document any '#ifdef' segments found in config.h
Remove gistold.c, since it was older copy of gist.c
30 years ago
Marc G. Fournier
6c8465f69b
#define cleanup: moved #define IPORTAL_DEBUG to config.h
30 years ago
Marc G. Fournier
2d8ffead24
Moved all the CFLAG -D's from the makefiles to config.h towards better
...
centralized configurations/porting...
30 years ago
Marc G. Fournier
1b6322a9c0
Moved more -D's out of the port specific Makefiles straight into the
...
config.h file
30 years ago
Marc G. Fournier
d16bc9ce37
Centralize more of the defines from backend/port under config.h
...
Further ports should *really* avoid backend/port and make use of
config.h
30 years ago
Marc G. Fournier
a839456c41
Move "port specific" #ifdefs out of here and into config.h
...
- created a HAVE_TZSET define for this purpose
30 years ago
Marc G. Fournier
c39857925b
Add a HAVE_TZSET define to clean up defines in backend/utils/adt/nabstime.c
30 years ago
Bryan Henderson
6cbaa93b82
Change treatment of sigaction structure again to include even more platforms.
...
Thanks D'Arcy.
30 years ago
Bryan Henderson
ec610a7696
Remove 4th element of sigaction structure so it works on more platforms.
30 years ago
Bruce Momjian
682ccb81a0
New FAQ's.
30 years ago
Bruce Momjian
83cb729887
More closing of relations left open by parser.
30 years ago
Bruce Momjian
1a865b8338
Change display of char(5) to (bp)char 5 so psql \d can
...
distinguish between char and char(1).
30 years ago
Bruce Momjian
81f2f81960
Removed const warning.
30 years ago
Bruce Momjian
54612f5141
D'Arcy change.
30 years ago
Bruce Momjian
baf9a6e24c
Added include needed for recent addition.
...
I hope everyone has sys/socket.h.
30 years ago
Bruce Momjian
e6cacf9211
Added include needed for recent addition.
30 years ago
Bruce Momjian
d31909be6c
Fix structure member name from previous patch.
30 years ago
Bruce Momjian
44bf483446
Removed duplicate MAXNAMELEN define I accidentally added.
30 years ago
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.
30 years ago
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.
30 years ago
Bryan Henderson
bef3c89a1c
Fix prototypes so postmaster.c will compile.
30 years ago
Bryan Henderson
369848857e
New host-based authentication -- set up pg_hba.conf instead of pg_hba
30 years ago
Bryan Henderson
785234d6ca
New host-based authentication -- send error message when authentication fails
30 years ago
Bryan Henderson
4b5c977782
New host-based authentication with ident
30 years ago
Bryan Henderson
57026d6009
New host-based authentication -- install pg_hba.conf instead of pg_hba
30 years ago
Bryan Henderson
09bb369d23
Separate general purpose functions from portal functions so they may be
...
used in test drivers.
30 years ago
Bryan Henderson
6d70d550e6
Prepare for new host-based authentication
30 years ago
Marc G. Fournier
81cda65f74
Add a MIPS/NetBSD port...
30 years ago
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)
30 years ago
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>
30 years ago
Marc G. Fournier
97906ac697
Reinstituted NAMEDATALEN OIDNAMELEN in Makefile.global so that initdb
...
works again...
30 years ago
Bryan Henderson
329b38eebb
Add PGUSER environment variable for client to specify Postgres username.
30 years ago
Bruce Momjian
ca5f6dba0f
Comment cleanup.
30 years ago
Bruce Momjian
9b1e61b7e9
Changed psql \h command to print commands in three columns.
...
No more scrolling off the screen.
30 years ago
Bruce Momjian
c306d06cf9
Change sh-style comments to C comments.
30 years ago
Bruce Momjian
dd09982f3e
Add execute permission.
30 years ago
Bruce Momjian
dcef39f03b
Add execute permits.
30 years ago
Bruce Momjian
5fb8eaa592
Add execute permission.
30 years ago
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?
30 years ago
Marc G. Fournier
87bb8daab8
Move the NAMEDATALEN/OIDNAMELEN defines to include/config.h
30 years ago
Marc G. Fournier
6470d5b1c1
Fix handling of no '../doc' directory in compile procedure...
30 years ago
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
30 years ago
Marc G. Fournier
ea733aa997
Fix a couple of small things from D'Arcy's last patch
...
Submitted by: D'Arcy Cain
30 years ago
Bruce Momjian
a409f40ea8
Modified Assert to be more selective.
30 years ago
Marc G. Fournier
3dc0c8e4e5
Fixed a missed change from Carsten Heyl <heyl@nads.de>
30 years ago
Marc G. Fournier
de466eb8f4
Mostly adding "const" keyword and making some functions static.
...
Submitted by: D'Arcy Cain
30 years ago
Bruce Momjian
257b4d090c
Change new assert so it generates assert message rather than SIGSEG.
30 years ago
Bruce Momjian
9d9eadea82
add FROM to update page, clean up spelling error in select.
30 years ago
Bruce Momjian
f6792efcc7
Remove sytax errors from file.
30 years ago
Bruce Momjian
3a56b21832
Update help for alter table. remove EXTEND function.
30 years ago