mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
Add FIELDNO_* macro designating offset into structs required for JIT.
For any interesting JIT target, fields inside structs need to be
accessed. b96d550e
contains infrastructure for syncing the definition
of types between postgres C code and runtime code generation with
LLVM. But that doesn't sync the number or names of fields inside
structs, just the types (including padding etc).
One option would be to hardcode the offset numbers in the JIT code,
but that'd be hard to keep in sync. Instead add macros indicating the
field offset to the fields that need to be accessed. Not pretty, but
manageable.
Author: Andres Freund
Discussion: https://postgr.es/m/20170901064131.tazjxwus3k2w3ybh@alap3.anarazel.de
This commit is contained in:
@ -240,9 +240,12 @@ typedef struct AggStatePerAggData
|
||||
*/
|
||||
typedef struct AggStatePerGroupData
|
||||
{
|
||||
#define FIELDNO_AGGSTATEPERGROUPDATA_TRANSVALUE 0
|
||||
Datum transValue; /* current transition value */
|
||||
#define FIELDNO_AGGSTATEPERGROUPDATA_TRANSVALUEISNULL 1
|
||||
bool transValueIsNull;
|
||||
|
||||
#define FIELDNO_AGGSTATEPERGROUPDATA_NOTRANSVALUE 2
|
||||
bool noTransValue; /* true if transValue not set yet */
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user