このページを編集する際は、編集に関する方針に従ってください。
* We want NameData to have length NAMEDATALEN and int alignment, * because that's how the data type 'name' is defined in pg_type. * Use a union to make sure the compiler agrees. Note that NAMEDATALEN * must be a multiple of sizeof(int), else sizeof(NameData) will probably * not come out equal to NAMEDATALEN.
typedef union nameData {
char data[NAMEDATALEN]; int alignmentDummy;
} NameData;
更新日 | 更新者 | 更新内容 |