in csharp/Microsoft.Azure.Databricks.Client/Models/StatementExecution.cs [470:475]
public virtual bool Equals(StatementExecutionSchema other)
{
return other is not null
&& ColumnCount == other.ColumnCount
&& Columns.SequenceEqual(other.Columns);
}