Apache.Hadoop.Hive.ThriftHive.Client.recv_getQueryPlan C# (CSharp) Метод

recv_getQueryPlan() публичный Метод

public recv_getQueryPlan ( ) : Apache.Hadoop.Hive.QueryPlan
Результат Apache.Hadoop.Hive.QueryPlan
            public Apache.Hadoop.Hive.QueryPlan recv_getQueryPlan()
            {
                TMessage msg = iprot_.ReadMessageBegin();
                if (msg.Type == TMessageType.Exception)
                {
                    TApplicationException x = TApplicationException.Read(iprot_);
                    iprot_.ReadMessageEnd();
                    throw x;
                }
                getQueryPlan_result result = new getQueryPlan_result();
                result.Read(iprot_);
                iprot_.ReadMessageEnd();
                if (result.__isset.success)
                {
                    return result.Success;
                }
                if (result.__isset.ex)
                {
                    throw result.Ex;
                }
                throw new TApplicationException(TApplicationException.ExceptionType.MissingResult, "getQueryPlan failed: unknown result");
            }