Martijn van Oosterhout <kleptog@svana.org> writes: > This implements a proposal made last november: > http://archives.postgresql.org/pgsql-hackers/2005-11/msg00578.php
Ah, good, I'd been meaning to do this. > changes in any of the following: > PG_VERSION_NUM > CATALOG_VERSION_NO > the size of 8 basic C types > BLCKSZ=20 > NAMEDATALEN=20 > HAVE_INT64_TIMESTAMP > INDEX_MAX_KEYS > FUNC_MAX_ARGS > VARHDRSZ > MAXDIM > The compiler used (only brand, not version) That seems way overkill to me. FUNC_MAX_ARGS is good to check, but most of those other things are noncritical for typical add-on modules. In particular I strongly object to the check on compiler. Some of us do use systems where gcc and vendor compilers are supposed to interoperate ... and aren't all those Windows compilers supposed to, too? AFAIK it's considered the linker's job to prevent loading 32-bit code into a 64-bit executable or vice versa, so I don't think we need to be checking for common assumptions about sizeof(long). > Currently, modules without a magic block are merely logged at LOG > level. This needs some discussion though. I'm pretty sure we had agreed that magic blocks should be required; otherwise this check will accomplish little. 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