determinismLevel property

String? determinismLevel
getter/setter pair

The determinism level of the JavaScript UDF, if defined.

Optional. Possible string values are:

  • "DETERMINISM_LEVEL_UNSPECIFIED" : The determinism of the UDF is unspecified.
  • "DETERMINISTIC" : The UDF is deterministic, meaning that 2 function calls with the same inputs always produce the same result, even across 2 query runs.
  • "NOT_DETERMINISTIC" : The UDF is not deterministic.

Implementation

core.String? determinismLevel;