Module fdb_rl_proto::fdb_rl::key_expression::v1::field::field_null_interpretation
source · Expand description
Nested message and enum types in FieldNullInterpretation
.
Structs
- Missing value (
NULL
) are allowed multiple times in unique index (PostgreSQLNULLS DISTINCT
, Java RecordLayerNOT_UNIQUE
). This is the default for PostgreSQL and Java RecordLayer. - Missing value (
NULL
) cannot be repeated in a unique index. This is very restrictive as a column can have only oneNULL
value. (PostgreSQLNULLS NOT DISTINCT
, Java RecordLayerUNIQUE
). - Field is not
NULL
. As mentioned in the above table, inproto3
this is only possible for a singular numeric, enum, bytes, string, bool type.
Enums
- Required.