in csharp/src/Drivers/Apache/Thrift/Service/Rpc/Thrift/TExecuteStatementReq.cs [821:911]
public override string ToString()
{
var tmp399 = new StringBuilder("TExecuteStatementReq(");
if((SessionHandle != null))
{
tmp399.Append(", SessionHandle: ");
SessionHandle.ToString(tmp399);
}
if((Statement != null))
{
tmp399.Append(", Statement: ");
Statement.ToString(tmp399);
}
if((ConfOverlay != null) && __isset.confOverlay)
{
tmp399.Append(", ConfOverlay: ");
ConfOverlay.ToString(tmp399);
}
if(__isset.runAsync)
{
tmp399.Append(", RunAsync: ");
RunAsync.ToString(tmp399);
}
if((GetDirectResults != null) && __isset.getDirectResults)
{
tmp399.Append(", GetDirectResults: ");
GetDirectResults.ToString(tmp399);
}
if(__isset.queryTimeout)
{
tmp399.Append(", QueryTimeout: ");
QueryTimeout.ToString(tmp399);
}
if(__isset.canReadArrowResult)
{
tmp399.Append(", CanReadArrowResult: ");
CanReadArrowResult.ToString(tmp399);
}
if(__isset.canDownloadResult)
{
tmp399.Append(", CanDownloadResult: ");
CanDownloadResult.ToString(tmp399);
}
if(__isset.canDecompressLZ4Result)
{
tmp399.Append(", CanDecompressLZ4Result: ");
CanDecompressLZ4Result.ToString(tmp399);
}
if(__isset.maxBytesPerFile)
{
tmp399.Append(", MaxBytesPerFile: ");
MaxBytesPerFile.ToString(tmp399);
}
if((UseArrowNativeTypes != null) && __isset.useArrowNativeTypes)
{
tmp399.Append(", UseArrowNativeTypes: ");
UseArrowNativeTypes.ToString(tmp399);
}
if(__isset.resultRowLimit)
{
tmp399.Append(", ResultRowLimit: ");
ResultRowLimit.ToString(tmp399);
}
if((Parameters != null) && __isset.@parameters)
{
tmp399.Append(", Parameters: ");
Parameters.ToString(tmp399);
}
if(__isset.maxBytesPerBatch)
{
tmp399.Append(", MaxBytesPerBatch: ");
MaxBytesPerBatch.ToString(tmp399);
}
if((StatementConf != null) && __isset.statementConf)
{
tmp399.Append(", StatementConf: ");
StatementConf.ToString(tmp399);
}
if(__isset.resultPersistenceMode)
{
tmp399.Append(", ResultPersistenceMode: ");
ResultPersistenceMode.ToString(tmp399);
}
if(__isset.enforceResultPersistenceMode)
{
tmp399.Append(", EnforceResultPersistenceMode: ");
EnforceResultPersistenceMode.ToString(tmp399);
}
tmp399.Append(')');
return tmp399.ToString();
}