[PATCHES] pg_autovacuum integration proof of concept patch

2004-06-06 Thread Matthew T. O'Connor
I have been working on integrating pg_autovacuum into the backend. I have used Tom's recent work on the bgwriter as an example. This patch accomplishes the following: * pg_autovacuum is now started and stopped by the postmaster * pg_autovacuum is no longer a stand alone executable * pg_autovacuu

Re: [PATCHES] Int2 vector to array equality

2004-06-06 Thread Tom Lane
Andreas Pflug <[EMAIL PROTECTED]> writes: > The attached patch adds an equality operator > bool int2array_int2vector_eq(int2[], int2vector) This seems like a remarkably specialized kluge ... gotta be a better way ... regards, tom lane ---(end o

[PATCHES] Int2 vector to array equality

2004-06-06 Thread Andreas Pflug
While trying to pg_constraint JOIN pg_index ON indrelid=conrelid AND conkey=indkey I noticed (once again) that these columns have different types (although describing the same thing), and there's no equality operator for them. The attached patch adds an equality operator bool int2array_int2vec