We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7b2ccc5 commit 50617a9Copy full SHA for 50617a9
src/backend/nodes/gen_node_support.pl
@@ -954,15 +954,15 @@ sub elem
954
}
955
elsif ($t eq 'uint32'
956
|| $t eq 'bits32'
957
- || $t eq 'AclMode'
958
|| $t eq 'BlockNumber'
959
|| $t eq 'Index'
960
|| $t eq 'SubTransactionId')
961
{
962
print $off "\tWRITE_UINT_FIELD($f);\n";
963
print $rff "\tREAD_UINT_FIELD($f);\n" unless $no_read;
964
965
- elsif ($t eq 'uint64')
+ elsif ($t eq 'uint64'
+ || $t eq 'AclMode')
966
967
print $off "\tWRITE_UINT64_FIELD($f);\n";
968
print $rff "\tREAD_UINT64_FIELD($f);\n" unless $no_read;
0 commit comments