"Rajesh Kumar Mallah" <[EMAIL PROTECTED]> writes:
> i am trying to compile a trigger function under MINGW32. its giving the
> said warning. the call of bzero is
> bzero(data, sizeof(AuditData));
bzero() is long obsolete, and was never officially standard AFAIK.
Use memset() instead:
memset(data, 0, sizeof(AuditData));
regards, tom lane
---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match