summaryrefslogtreecommitdiff
path: root/src/include
AgeCommit message (Collapse)Author
1997-11-10Fix case issues with quotes.Bruce Momjian
1997-11-07new alpha linux locking from Travis Melhiser <melhiser@viper.co.union.nc.us>Bruce Momjian
1997-11-07Add Unix domain socket support, from Goran Thyni, goran@bildbasen.seBruce Momjian
1997-11-07Include transam.h to get NullTransactionId definedThomas G. Lockhart
for use by recently created macros.
1997-11-07Declare routines which support SET keyword = value SQL commands.Thomas G. Lockhart
1997-11-07Support alternate database locations.Thomas G. Lockhart
1997-11-02Good Bye, Time Travel!Vadim B. Mikheev
1997-10-30No more warnings on macros, thanks VAdim.Bruce Momjian
1997-10-30Update version to 6.3. dump/reload for 6.1 version users.Bruce Momjian
1997-10-30Add routines istrue() and isfalse() to directly evaluate boolean type.Thomas G. Lockhart
1997-10-30Fix for netbsd locking, from Henry B. Hotz.Bruce Momjian
1997-10-28Now we are able to CREATE PROCEDURAL LANGUAGE (Thanks, Jan).Vadim B. Mikheev
1997-10-27c.h:Vadim B. Mikheev
#define StrNCpy(dst,src,len) \ (strncpy((dst),(src),(len)),(len > 0) ? *((dst)+(len)-1)='\0' : \ NULL,(void)(dst)) ^^^^^^ - to avoid "value computed is not used" from gcc in ma-a-any places (should to fix thouse places instead, but ... time) config.h.in: /* * TBL_FREE_CMD_MEMORY: free memory allocated for an user query inside * transaction block after this query is done. */ #define TBL_FREE_CMD_MEMORY - this is default now.
1997-10-25Add conversion routines for int2, int4, and oid to and from text.Thomas G. Lockhart
Change a few routine names to ensure <= 16 characters in name to fit correctly into pg_proc.
1997-10-25Reassign cash/float4 arithmetic operator oids to avoid duplicate oids.Thomas G. Lockhart
1997-10-25Add conversion functions for int2, int4, oid to and from text.Thomas G. Lockhart
Shorten a few routine names to <= 16 characters long to fit in table.
1997-10-25Rename column to avoid "action" SQL92 reserved word.Thomas G. Lockhart
1997-10-25StrNCpy cleanup.Bruce Momjian
1997-10-25Rename strNcpy to StrNCpy, and change third parameter.Bruce Momjian
1997-10-16Cleanups for 6.2.1.Bruce Momjian
1997-10-15Fix for backward cursors with ORDER BY.Vadim B. Mikheev
1997-10-15Fix final function for cash avg() aggregate.Thomas G. Lockhart
Wrong function referenced in previous versions.
1997-10-09Clean up function declarations for the boolean type packageThomas G. Lockhart
to use bool as the type for arguments and return values.
1997-10-03We never do remember to up the PG_VERSION number, do we? :(Marc G. Fournier
1997-10-03Linux/alpha patch from Dan MaynardBruce Momjian
1997-10-02Sparc lock fix for Linux/netbsd.REL6_2Bruce Momjian
1997-09-30Add support for NetBSD/sparc.Bruce Momjian
1997-09-29MOVE implementation (added bool ismove to FetchStmt).Vadim B. Mikheev
1997-09-29HPUX patches from Vladimir Turin.Bruce Momjian
1997-09-27Make GetAttributeByNum visible again for external use.Bruce Momjian
1997-09-25Back out inclusion of postgres.h.Bruce Momjian
1997-09-25Massive examples fix from Nicola BernardelliBruce Momjian
1997-09-25S_LOCK_FREE fix.Bruce Momjian
1997-09-24Fix for S_FREE_LOCK.Bruce Momjian
1997-09-24+ SPI_palloc(), SPI_repalloc(), SPI_pfree()Vadim B. Mikheev
1997-09-22Cleanup backslashes.Bruce Momjian
1997-09-22Fix for missing tas on some platforms.Bruce Momjian
1997-09-22Small lock cleanup for prototype.Bruce Momjian
1997-09-22Two copies...Vadim B. Mikheev
1997-09-20Add tinterval comparison operators.Thomas G. Lockhart
Add integer/money arithmetic.
1997-09-20Add point_ne() comparison routine.Thomas G. Lockhart
1997-09-20Add tinterval comparison routines.Thomas G. Lockhart
1997-09-20Add integer/money arithmetic from Darren King.Thomas G. Lockhart
1997-09-18UPdate memset macro.Bruce Momjian
1997-09-18Cleanup for memset macro.Bruce Momjian
1997-09-18Add in srandom() check to configureMarc G. Fournier
Add appropriate HAVE_{RANDOM,SRANDOM} values to config.h Add approrpiate #ifdef's to sparc_solaris port files for Solaris v2.6
1997-09-18No more SortTuplesInTree...Vadim B. Mikheev
1997-09-18Inline frequently called functions.Bruce Momjian
1997-09-18Addded to Psortstate:Vadim B. Mikheev
lt_tupcount - number of tuples in struct leftist *Tuples lasttuple - last tuple put to disk by createfirstrun()
1997-09-18+ SortTuplesInTreeVadim B. Mikheev