Eric Davies <[EMAIL PROTECTED]> writes:
> We've looked at the contrib/cube code, but it's also a variable length
> parameter, and it uses a very different parameter passing mechanism.
Different how? I have a hard-to-pin-down intuition that your problem is
closely associated with this issue, but
We've implemented a 5D box data type and have implemented both RTree and
GiST access methods under PostgresSQL 7.4 and PostgresSQL 7.4.1. The 5D
box internally looks like:
struct Box5D{
float
minBounds[5];
float
maxBounds[5];
};
and so takes up 40 bytes and is of fixed le