Click or drag to resize

PreparedStatementIsIdempotent Property

Determines if the query is idempotent, i.e. whether it can be applied multiple times without changing the result beyond the initial application.

Idempotence of the prepared statement plays a role in ISpeculativeExecutionPolicy. If a query is not idempotent, the driver will not schedule speculative executions for it.

When the property is null, the driver will use the default value from the GetDefaultIdempotence.

Namespace:  Dse
Assembly:  Dse (in Dse.dll) Version: 2.9.0
Syntax
C#
public Nullable<bool> IsIdempotent { get; }

Property Value

Type: NullableBoolean
See Also