-
- Downloads
Improve BRIN infra, minmax opclass and regression test
The minmax opclass was using the wrong support functions when cross-datatypes queries were run. Instead of trying to fix the pg_amproc definitions (which apparently is not possible), use the already correct pg_amop entries instead. This requires jumping through more hoops (read: extra syscache lookups) to obtain the underlying functions to execute, but it is necessary for correctness. Author: Emre Hasegeli, tweaked by Álvaro Review: Andreas Karlsson Also change BrinOpcInfo to record each stored type's typecache entry instead of just the OID. Turns out that the full type cache is necessary in brin_deform_tuple: the original code used the indexed type's byval and typlen properties to extract the stored tuple, which is correct in Minmax; but in other implementations that want to store something different, that's wrong. The realization that this is a bug comes from Emre also, but I did not use his patch. I also adopted Emre's regression test code (with smallish changes), which is more complete.
Showing
- contrib/pageinspect/brinfuncs.c 1 addition, 1 deletioncontrib/pageinspect/brinfuncs.c
- doc/src/sgml/brin.sgml 2 additions, 2 deletionsdoc/src/sgml/brin.sgml
- src/backend/access/brin/brin_minmax.c 89 additions, 65 deletionssrc/backend/access/brin/brin_minmax.c
- src/backend/access/brin/brin_tuple.c 3 additions, 3 deletionssrc/backend/access/brin/brin_tuple.c
- src/include/access/brin_internal.h 4 additions, 3 deletionssrc/include/access/brin_internal.h
- src/include/catalog/catversion.h 1 addition, 1 deletionsrc/include/catalog/catversion.h
- src/include/catalog/pg_amproc.h 0 additions, 164 deletionssrc/include/catalog/pg_amproc.h
- src/include/catalog/pg_opclass.h 27 additions, 27 deletionssrc/include/catalog/pg_opclass.h
- src/test/regress/expected/brin.out 120 additions, 68 deletionssrc/test/regress/expected/brin.out
- src/test/regress/sql/brin.sql 122 additions, 70 deletionssrc/test/regress/sql/brin.sql
Loading
Please register or sign in to comment