pgsql: Add macro to disable address safety instrumentation

Поиск
Список
Период
Сортировка
От John Naylor
Тема pgsql: Add macro to disable address safety instrumentation
Дата
Msg-id E1rsyUT-000l5c-0c@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Add macro to disable address safety instrumentation

fasthash_accum_cstring_aligned() uses a technique, found in various
strlen() implementations, to detect a string's NUL terminator by
reading a word at at time. That triggers failures when testing with
"-fsanitize=address", at least with frontend code. To enable using
this function anywhere, add a function attribute macro to disable
such testing.

Reviewed by Jeff Davis

Discussion: https://postgr.es/m/CANWCAZbwvp7oUEkbw-xP4L0_S_WNKq-J-ucP4RCNDPJnrakUPw%40mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/db17594ad73a871a176a9bf96e0589c2cf57052c

Modified Files
--------------
src/include/c.h                      | 13 +++++++++++++
src/include/common/hashfn_unstable.h |  5 ++++-
2 files changed, 17 insertions(+), 1 deletion(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Thomas Munro
Дата:
Сообщение: pgsql: Improve read_stream.c's fast path.
Следующее
От: Thomas Munro
Дата:
Сообщение: pgsql: Increase default vacuum_buffer_usage_limit to 2MB.