Typed form of %append_nulls, generic over an int32 or int64 index/count argument.
int32 specific of append_nulls; see the append_nulls generic.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(parquet_string_column), | intent(inout) | :: | self |
the column. |
||
| integer(kind=int32), | intent(in) | :: | n |
number of null elements to append. |
int64 specific of append_nulls: appends n null (zero-width, invalid) elements in one bulk
operation -- the counterpart of calling append_null n times, but with a single capacity
growth instead of one per element. n == 0 is a no-op; a negative n aborts.
| Type | Intent | Optional | Attributes | Name | ||
|---|---|---|---|---|---|---|
| type(parquet_string_column), | intent(inout) | :: | self |
the column. |
||
| integer(kind=int64), | intent(in) | :: | n |
number of null elements to append. |