-
- Downloads
Move pg_crc.c to src/common, and remove pg_crc_tables.h
To get CRC functionality in a client program, you now need to link with libpgcommon instead of libpgport. The CRC code has nothing to do with portability, so libpgcommon is a better home. (libpgcommon didn't exist when pg_crc.c was originally moved to src/port.) Remove the possibility to get CRC functionality by just #including pg_crc_tables.h. I'm not aware of any extensions that actually did that and couldn't simply link with libpgcommon. This also moves the pg_crc.h header file from src/include/utils to src/include/common, which will require changes to any external programs that currently does #include "utils/pg_crc.h". That seems acceptable, as include/common is clearly the right home for it now, and the change needed to any such programs is trivial.
Showing
- contrib/hstore/hstore_gist.c 1 addition, 1 deletioncontrib/hstore/hstore_gist.c
- contrib/ltree/crc32.c 1 addition, 1 deletioncontrib/ltree/crc32.c
- src/backend/utils/adt/tsquery.c 1 addition, 0 deletionssrc/backend/utils/adt/tsquery.c
- src/common/Makefile 1 addition, 1 deletionsrc/common/Makefile
- src/common/pg_crc.c 10 additions, 15 deletionssrc/common/pg_crc.c
- src/include/access/xlogrecord.h 1 addition, 1 deletionsrc/include/access/xlogrecord.h
- src/include/catalog/pg_control.h 1 addition, 1 deletionsrc/include/catalog/pg_control.h
- src/include/common/pg_crc.h 1 addition, 1 deletionsrc/include/common/pg_crc.h
- src/include/tsearch/ts_type.h 0 additions, 1 deletionsrc/include/tsearch/ts_type.h
- src/port/Makefile 1 addition, 1 deletionsrc/port/Makefile
- src/port/pg_crc.c 0 additions, 21 deletionssrc/port/pg_crc.c
Loading
Please register or sign in to comment