summaryrefslogtreecommitdiff
path: root/src/backend/commands
AgeCommit message (Collapse)Author
1997-10-02Fix \ handlingVadim B. Mikheev
1997-09-30STATEMENT triggers are not implemented - elog (WARN).Vadim B. Mikheev
1997-09-29MOVE implementation.Vadim B. Mikheev
1997-09-22Blowaway relation buffers from buffer pool before truncation.Vadim B. Mikheev
1997-09-20Fix up elog warning messages.Thomas G. Lockhart
1997-09-18Inline memset() as MemSet().Bruce Momjian
1997-09-18ALTER TABLE ADD COLUMN: set atthasdef to FALSE.Vadim B. Mikheev
1997-09-18Inline frequently called functions.Bruce Momjian
1997-09-12heapattr functions now return a Datum, not char *.Bruce Momjian
1997-09-11Cleanups.Vadim B. Mikheev
1997-09-08Used modified version of indent that understands over 100 typedefs.Bruce Momjian
1997-09-08Add typdefs to pgindent run.Bruce Momjian
1997-09-08Another PGINDENT run that changes variable indenting and case label ↵Bruce Momjian
indenting. Also static variable indenting.
1997-09-07Massive commit to run PGINDENT on all *.c and *.h files.Bruce Momjian
1997-09-04Before row insertion triggers call.Vadim B. Mikheev
1997-09-01BEFORE/AFTER ROW INSERT triggers startup from CopyFrom()Vadim B. Mikheev
RelationBuildTriggers() & FreeTriggerDesc() in trigger.c
1997-08-31Workplace for CREATE/DROP TRIGGERVadim B. Mikheev
1997-08-22Turn constraints off for sequences & viewsVadim B. Mikheev
elog(WARN,"ADD ATTRIBUTE: DEFAULT is not implemented, yet"); Call ExecConstraints in CopyFrom
1997-08-22Fix for psql pager when no tty, cleanup for vacuum attdisbursion type.Bruce Momjian
1997-08-22DefineRelation: DEFAULT/CHECK handlingVadim B. Mikheev
1997-08-21AttrConstr --> TupleConstrVadim B. Mikheev
1997-08-21Rename pg_attribute.attnvals to attdisbursion.Bruce Momjian
1997-08-21Change pg_attribute.attnvals to float4, change #ifdef 0 to #if 0, fix aix ↵Bruce Momjian
call to strNcpy, fix pg_super_user_id in pg_dumpall, change pg_database.dtadba from oid to int4.
1997-08-21Get rid of attproc, atttyparg, attcanindex, attdefrel, attboundVadim B. Mikheev
from pg_attribute. atthasdef added.
1997-08-19Make functions static where possible, enclose unused functions in #ifdef ↵Bruce Momjian
NOT_USED.
1997-08-19NOT NULL implementation (submitted by Robson Paniago de Miranda).Vadim B. Mikheev
1997-08-18Now that names are null terminated, no need to do all that NAMEDATALEN stuff.Bruce Momjian
1997-08-18Reduce open() calls. Replace fopen() calls with calls to fd.c functions.Bruce Momjian
1997-08-12Remove more (void) and fix -Wall warnings.Bruce Momjian
1997-08-12Fix pgproc names over 15 chars in output. Add strNcpy() function. remove ↵Bruce Momjian
some (void) casts that are unnecessary.
1997-08-03Cleanup for NAMEDATALEN use.Bruce Momjian
1997-08-02Prevent relname unallocated string length from being copied into database.Bruce Momjian
1997-07-29Change call definition for isreltime().Thomas G. Lockhart
1997-07-28Added SCO support, from Daniel Harris.Bruce Momjian
1997-06-12Datum *idatum;Vadim B. Mikheev
^
1997-06-07Cleanup on xinv# table names.Bruce Momjian
1997-06-07avoid xinv* table name conflict with large objects.Bruce Momjian
1997-06-06lowercase large object table name fix.Bruce Momjian
1997-06-03cc1: warnings being treated as errorsVadim B. Mikheev
remove.c: In function `RemoveAggregate': remove.c:413: warning: unused variable `typename' -> got rid of it.
1997-06-03Fix deleted tuples re-incarnation possible when vacuum transactionVadim B. Mikheev
start time equal to tuple->t_tmax. Privent shrinking if there are tuples modifyed by running transactions (it concerns system relations only, currently).
1997-06-02Oracle like currval behaviour.Vadim B. Mikheev
1997-05-22From: Darren King <aixssd!darrenk@abs.net>Marc G. Fournier
Subject: [PATCHES] DROP AGGREGATE patch/fix. Here's a patch that fixes the DROP AGGREGATE command to delete the desired aggregate for a specific type.
1997-05-05Kill re-incarnated bug arroundVadim B. Mikheev
Assert ( --Vnpages > 0 ); and Assert ( --Fnpages > 0 );
1997-04-30More informative NOTICEs in tuple checks.Vadim B. Mikheev
1997-04-23Analyze data only if specified and specified attrs only.Vadim B. Mikheev
1997-04-17The patch fixes a rare bug that may occur when one tries to vacuum a singleVadim B. Mikheev
table. The table name is de-allocated by the CommitTransactionCommand() in vc_init() before it is copied in VacRel.data and sometimes this causes a SIGSEGV. My patch simply moves the strcpy before vc_init. Submitted by Massimo Dal Zotto <dz@cs.unitn.it>.
1997-04-15Patch for Solaris 2.5 from: adrian@waltham.harvard.netMarc G. Fournier
1997-04-05Print 'Group' as name of Group plan.Vadim B. Mikheev
1997-04-02Can't COPY TO sequence relation.Vadim B. Mikheev
Can't inherits from ...
1997-04-02Sequence numbers generators code.Vadim B. Mikheev