summaryrefslogtreecommitdiff
path: root/src/backend/utils
AgeCommit message (Collapse)Author
1997-11-10Clean up handling of environment variables in path names.Thomas G. Lockhart
1997-11-09From: Bryan Henderson <bryanh@giraffe.netgate.net>Marc G. Fournier
The attached patch makes elog() write the message to stderr if there is no frontend to talk to.
1997-11-07Add Unix domain socket support, from Goran Thyni, goran@bildbasen.seBruce Momjian
1997-11-07Routines for database initial access info and support.Thomas G. Lockhart
1997-11-07Add database.c for database initial access info and support.Thomas G. Lockhart
1997-11-07Support alternate database locations.Thomas G. Lockhart
1997-11-07Change phrasing of input error message.Thomas G. Lockhart
Add istrue() and isfalse() routines to implement SQL3 IS TRUE and IS FALSE.
1997-11-02Good Bye, Time Travel!Vadim B. Mikheev
1997-11-01Fix acl error, and remove duplicate pqtrace.Bruce Momjian
1997-10-30Add routines istrue() and isfalse() to directly evaluate boolean type.Thomas G. Lockhart
1997-10-30Fix for when POSIX time not defined.Bruce Momjian
1997-10-28Now we are able to CREATE PROCEDURAL LANGUAGE (Thanks, Jan).Vadim B. Mikheev
1997-10-25Change column number constant to reflect change in column nameThomas G. Lockhart
from "action" to "ev_action".
1997-10-25Shorten routine names to <= 16 characters to fit in pg_proc table.Thomas G. Lockhart
1997-10-25Add conversion routines for oid to and from text.Thomas G. Lockhart
1997-10-25Clean up comments.Thomas G. Lockhart
1997-10-25Add conversions for int2 and int4 to and from text.Thomas G. Lockhart
1997-10-25Fix occasional uninitialized variable fractional secondsThomas G. Lockhart
in DecodeTimeOnly(). Only present when seconds are not specified for input.
1997-10-25Add conversion from datetime to time data type.Thomas G. Lockhart
Rename date+time conversion to datetime to ensure less than 16 characters in routine name (required to fit in pg_proc table).
1997-10-25Modify one last line to complete changes for StrNCpy() macro addition.Thomas G. Lockhart
Before, char16 was missing last character for output.
1997-10-25Add debugging statement enabled by CASHDEBUG symbol definition.Thomas G. Lockhart
1997-10-25Check explicitly for valid input strings for both TRUE and FALSE.Thomas G. Lockhart
Allow true/false, yes/no, 1/0. Throw elog warning if anything else. Allow shorter strings, so "t", "tr", "tru" and "true" match "true". Old behavior accepted anything starting with "t" as TRUE, everything else as FALSE.
1997-10-25Rename strNcpy to StrNCpy, and change third parameter.Bruce Momjian
1997-10-17Accept additional values for TRUE: y, Y, 1.Thomas G. Lockhart
Leave all other input values to return FALSE. In next version, do more checking for valid inputs for both TRUE and FALSE.
1997-10-17Fix delta time decoding for 12 AM/PM.Thomas G. Lockhart
1997-10-15Fix for backward cursors with ORDER BY.Vadim B. Mikheev
1997-10-09Allow 't', 'T', and even/odd ASCII characters to denote true/falseThomas G. Lockhart
rather than just 't' and 'T'. This allows yes/no and 1/0 to be interpreted as one might expect. Clean up function declarations to use bool as the type for arguments and return values.
1997-10-09Support special values 'now', 'current', etc on output.Thomas G. Lockhart
1997-10-03From JM de Lauwereyns (jmlauwer@icdc.caissedesdepots.fr):Thomas G. Lockhart
lconv is already taken as a struct identifier defined in a /usr/include file. Only has an effect with USE_LOCALE enabled. (Apparently unique to AIX and/or AIX compiler? thomas)
1997-09-26AIX float fix.Bruce Momjian
1997-09-26Fix for psort temp file names, from Vadim.Bruce Momjian
1997-09-25Disable checking for zero or one points with deeper parens on input.Thomas G. Lockhart
Polygon input would not accept single-point polygon output and dump.
1997-09-24Remove extra float.h I added.Bruce Momjian
1997-09-23AIX fixes.Bruce Momjian
1997-09-20Add point_ne() function.Thomas G. Lockhart
Fix up tabbing of most function declarations.
1997-09-20Fix typo for default units for timespan input.Thomas G. Lockhart
Place single-ticks around bad argument in elog messages. Fix tabbing of large lookup tables (ugh).
1997-09-20Include tinterval comparison functions for span of interval.Thomas G. Lockhart
1997-09-20Include functions for integer/money arithmetic.Thomas G. Lockhart
1997-09-18Inline memset() as MemSet().Bruce Momjian
1997-09-18Don't limit number of tuples in leftist trees!Vadim B. Mikheev
Use qsort to sort array of tuples for nextrun when current run is done and put into leftist tree from sorted array! It's much faster and creates non-bushy tree - this is ve-e-ery good for perfomance!
1997-09-18No more SortTuplesInTree...Vadim B. Mikheev
1997-09-18Inline frequently called functions.Bruce Momjian
1997-09-181. Use qsort for first runVadim B. Mikheev
2. Limit number of tuples in leftist trees: - put one tuple from current tree to disk if limit reached; - end run creation if limit reached by nextrun. 3. Avoid mergeruns() if first run is single one!
1997-09-18+ int SortTuplesInTree = 2560;Vadim B. Mikheev
(default value for max number of tuples in leftist tree)
1997-09-16Remove difftime() calls.Thomas G. Lockhart
Still uses time_t declarations, but most code will be changed for next release.
1997-09-15Fix pfree problem.Vadim B. Mikheev
1997-09-13Cleanup for cash patch .Bruce Momjian
1997-09-13Fix for copy to stdout for cash.Bruce Momjian
1997-09-13Fix up error messages to remove extra newline. Use "zero" rather than "0.0".Thomas G. Lockhart
1997-09-12RelationBuildRuleLock(): char* --> Datum for ruleaction andVadim B. Mikheev
rule_evqual_string.