ExecutionInfoIsSchemaInAgreement Property |
After a successful schema-altering query (ex: creating a table), the driver will check if
the cluster's nodes agree on the new schema version. If not, it will keep retrying for a given
delay (configurable via
WithMaxSchemaAgreementWaitSeconds(Int32)).
If this method returns
, clients can call
CheckSchemaAgreementAsync
later to perform the check manually.
Namespace:
Dse
Assembly:
Dse (in Dse.dll) Version: 2.6.0
Syntax public bool IsSchemaInAgreement { get; }
Property Value
Type:
BooleanWhether the cluster had reached schema agreement after the execution of this query.
Return Value
Type:
BooleanWhether the cluster reached schema agreement, or
for a non schema-altering statement.
Remarks Note that the schema agreement check is only performed for schema-altering queries For other
query types, this method will always return
.
See Also