summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1997-12-20Move over the BSDi port filesMarc G. Fournier
1997-12-20This should get the linux port to work...Marc G. Fournier
1997-12-20Get it so that everything else *should* work with my changes...Marc G. Fournier
1997-12-20Major cleanout of PORTNAME variables from Makefiles...bound to screw upMarc G. Fournier
some of the ports...
1997-12-20First clean compile without a "PORTNAME" variable being set...Marc G. Fournier
1997-12-19removed the port-protos.h from bsd a little too quick...remedied nowMarc G. Fournier
1997-12-19If this doesn't break something, nothing will *muhahaha*Marc G. Fournier
Just got rid of PORTNAME altogether for FreeBSD and AIX...more to follow
1997-12-19These files will get link'd to 'dynloader.[ch]', from configure, whichMarc G. Fournier
will then get link'd into SUBSYS.o
1997-12-19More removal of port dependent stuffMarc G. Fournier
1997-12-19More cleanups. Move alot of the prototype definitions straight intoMarc G. Fournier
config.h, right beside their appropriate HAVE_ #ifdefs...one central location that is included everywhere...
1997-12-19Get rid of PORTNAME from Makefile.global.in...Marc G. Fournier
1997-12-19Add regression output from FreeBSDMarc G. Fournier
1997-12-19Replace foo/bar to l1/l2.Bruce Momjian
1997-12-19Here is the difference between expected->results of the regressionMarc G. Fournier
tests under sparc_solaris
1997-12-19More cleanups...only need one rusagestub.hMarc G. Fournier
1997-12-19remove port from OBJS line...Marc G. Fournier
1997-12-19Nice clean compile...still need to run regression tests, but its a majorMarc G. Fournier
start
1997-12-19Update configure so that it auto-detects and configures for missingMarc G. Fournier
functions...
1997-12-19Okay, that's it for tonight...broke a few ports, most likely, but thatMarc G. Fournier
is expected...a few ports don't have "ports" anymore, with most things auto-configured by configure like it should be :)
1997-12-19More cleanupsMarc G. Fournier
1997-12-19More cleanups...several ports are major redundancies of other portsMarc G. Fournier
1997-12-19port.c no longer required...individual functions that were in there areMarc G. Fournier
auto-generated via configure individual functions in individual files
1997-12-19More cleanups. I can now compile without PORTNAME being defined nMarc G. Fournier
Makefile.global. End result, if all goes well, should allow for much easier porting, since there will no longer be a concept of a "port". Most, if not everything, *should* be determined by configure, or by the compiler itself. Still work to be done though :)
1997-12-18copy query cleanup.Bruce Momjian
1997-12-18Remove init_query_planner(), merged into planner().Bruce Momjian
1997-12-18Fix copy for no aggregates.Bruce Momjian
1997-12-18Remove Existential, and ifdef out generate_fjoin. Neither did anything.Bruce Momjian
1997-12-18Cost cleanup.Bruce Momjian
1997-12-18Cost cleanup.Bruce Momjian
1997-12-18Cleanup of agg copy.Bruce Momjian
1997-12-18Cleanup of agg copy.Bruce Momjian
1997-12-18Fix Query handling for inheritance, and cost computations.Bruce Momjian
1997-12-17Enable timespan_finite() and text_timespan() routines (was commented out).Thomas G. Lockhart
Define an "ISO-style" timespan output format with "hh:mm:ss" fields. Enabled by DateStyle = USE_ISO_DATES.
1997-12-17Move declarations for timespan2tm() and tm2timespan() from dt.c to here.Thomas G. Lockhart
1997-12-17Rename Query label so ctags finds real structure.Bruce Momjian
1997-12-17Add optimizer README file.Bruce Momjian
1997-12-17First pass through, of many to come, towards making the whole sourceMarc G. Fournier
tree "non-PORTNAME" dependent. Technically, anything that is PORTNAME dependent should be able to be derived at compile time, through configure or through gcc
1997-12-17Makefile cleaned upMarc G. Fournier
async.c: #include <port-protos.h> surrounded by an #ifdef HAVE_STRDUP vacuum.c: #include <port-protos.h> commented out...can someone comment as to why it was included, as it doesn't seem to have any effect under FreeBSD so far...would like some sort of #ifdef wrapper like async.c if possible
1997-12-17Clean up the MakefilesMarc G. Fournier
Essentially, this cleans things up so that if PORTNAME isn't defined (I'm working on getting rid of it for FreeBSD, at least, to see if its possible) none of the PORTNAME related stuff gets passed around. Had a little bit of -I related redundancy as well
1997-12-17Make it entirely possible for PORTNAME to be undefinedMarc G. Fournier
1997-12-17Add recognition for 'machten'Marc G. Fournier
1997-12-16Mention PST8PDT explicitly in the banner message (rather than PST/PDT).Thomas G. Lockhart
1997-12-16Define text, varchar, and bpchar string length functions.Thomas G. Lockhart
1997-12-16Use MAXPGPATH to declare size of socket name storage.Thomas G. Lockhart
1997-12-16Use environment variable PGDATESTYLE on backend startup to initializeThomas G. Lockhart
date/time formats and conventions.
1997-12-16Add declarations for text, bpchar, and varchar length functions.Thomas G. Lockhart
Remove declarations in builtins.h duplicated in dt.h. Change a few return type declarations to use "type *" rather than "struct ...".
1997-12-16Add declarations for text, bpchar, and varchar length functions.Thomas G. Lockhart
1997-12-16Allow multiple-argument functions in constraint clauses.Thomas G. Lockhart
Formerly allowed only single arguments. Declare column constraints using the usual list mechanism rather than explicit itemized lists. Remove NOTNULL from default clause syntax (retain "NOT NULL"). NOTNULL is not SQL92; eventually remove it from expressions too? Move ISNULL, NOTNULL to Postgres-specific token declarations. Fix up tabs and indenting on new CREATE USER commands.
1997-12-16Improve (well, ok, fix) generated constraint name for column CHECK clause.Thomas G. Lockhart
1997-12-16Fix order of keywords, must be alphabetical.Bruce Momjian