pgsql: Fix jit compilation bug on wide tables.

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: Fix jit compilation bug on wide tables.
Дата
Msg-id E1gRhmL-0002cf-DZ@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix jit compilation bug on wide tables.

The function generated to perform JIT compiled tuple deforming failed
when HeapTupleHeader's t_hoff was bigger than a signed int8. I'd
failed to realize that LLVM's getelementptr would treat an int8 index
argument as signed, rather than unsigned.  That means that a hoff
larger than 127 would result in a negative offset being applied.  Fix
that by widening the index to 32bit.

Add a testcase with a wide table. Don't drop it, as it seems useful to
verify other tools deal properly with wide tables.

Thanks to Justin Pryzby for both reporting a bug and then reducing it
to a reproducible testcase!

Reported-By: Justin Pryzby
Author: Andres Freund
Discussion: https://postgr.es/m/20181115223959.GB10913@telsasoft.com
Backpatch: 11, just as jit compilation was

Branch
------
REL_11_STABLE

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

Modified Files
--------------
src/backend/jit/llvm/llvmjit_deform.c      | 12 +++++++++---
src/test/regress/expected/create_table.out | 10 ++++++++++
src/test/regress/expected/sanity_check.out |  1 +
src/test/regress/sql/create_table.sql      | 10 ++++++++++
4 files changed, 30 insertions(+), 3 deletions(-)


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

Предыдущее
От: Andres Freund
Дата:
Сообщение: pgsql: Fix jit compilation bug on wide tables.
Следующее
От: Andres Freund
Дата:
Сообщение: pgsql: Ensure consistent sort order of large objects in pg_dump.