> > > 2) timezone/localtime.c, transtime() has a const arcument in the > > > implementation but non-const in declaration. > > > > I did this the other way (make implementation match declaration). > > I think the coding was in fact correct per spec, because > const-ness of > > an argument value is not part of the function signature. > > Ok.
Came across another one of those. schemacmds.h has: extern void AlterSchemaOwner_oid(const Oid schemaOid, Oid newOwnerId); but schemacmds.c has: void AlterSchemaOwner_oid(Oid oid, Oid newOwnerId) //Magnus ---------------------------(end of broadcast)--------------------------- TIP 2: Don't 'kill -9' the postmaster