Author: elserj
Date: Fri Jul 7 23:12:50 2017
New Revision: 1801249
URL: http://svn.apache.org/viewvc?rev=1801249&view=rev
Log:
[CALCITE-1878] Publish updated protobuf docs for 1.10.0 changes
Modified:
calcite/site/avatica/docs/protobuf_reference.html
Modified: calcite/site/avatica/docs/protobuf_reference.html
URL:
http://svn.apache.org/viewvc/calcite/site/avatica/docs/protobuf_reference.html?rev=1801249&r1=1801248&r2=1801249&view=diff
==============================================================================
--- calcite/site/avatica/docs/protobuf_reference.html (original)
+++ calcite/site/avatica/docs/protobuf_reference.html Fri Jul 7 23:12:50 2017
@@ -723,18 +723,21 @@ objects should be wrapped in a <code cla
<figure class="highlight"><pre><code class="language-protobuf"
data-lang="protobuf">message ExecuteRequest {
StatementHandle statementHandle = 1;
repeated TypedValue parameter_values = 2;
- uint64 first_frame_max_size = 3;
+ uint64 deprecated_first_frame_max_size = 3;
bool has_parameter_values = 4;
+ int32 first_frame_max_size = 5;
}</code></pre></figure>
<p><code class="highlighter-rouge">statementHandle</code> A <a
href="#statementhandle">StatementHandle</a> object.</p>
<p><code class="highlighter-rouge">parameter_values</code> The <a
href="#typedvalue">TypedValue</a> for each parameter on the prepared
statement.</p>
-<p><code class="highlighter-rouge">first_frame_max_size</code> The maximum
number of rows returned in the response.</p>
+<p><code class="highlighter-rouge">deprecated_first_frame_max_size</code>
<em>Deprecated</em>, use <code
class="highlighter-rouge">first_frame_max_size</code> instead. Previously, the
maximum number of rows returned in the response.</p>
<p><code class="highlighter-rouge">has_parameter_values</code> A boolean which
denotes if the user set a value for the <code
class="highlighter-rouge">parameter_values</code> field.</p>
+<p><code class="highlighter-rouge">first_frame_max_size</code> The maximum
number of rows to return in the first <code
class="highlighter-rouge">Frame</code>.</p>
+
<h3 id="fetchrequest">FetchRequest</h3>
<p>This request is used to fetch a batch of rows from a Statement previously
created.</p>
@@ -1596,6 +1599,9 @@ SQL or by a DatabaseMetaData operation w
bytes bytes_value = 5;
double double_value = 6;
bool null = 7;
+ repeated TypedValue array_value = 8;
+ Rep component_type = 9;
+ bool implicitly_null = 10;
}</code></pre></figure>
<p><code class="highlighter-rouge">type</code> A name referring to which
attribute is populated with the columnâs value.</p>
@@ -1612,6 +1618,12 @@ SQL or by a DatabaseMetaData operation w
<p><code class="highlighter-rouge">null</code> A boolean which denotes if the
value was null.</p>
+<p><code class="highlighter-rouge">array_value</code> A repetition of
TypedValue messages, each of which are an element of an array_value
(recursive)</p>
+
+<p><code class="highlighter-rouge">component_type</code> When this TypedValue
represents an Array, this is the Array typeâs representation.</p>
+
+<p><code class="highlighter-rouge">implicitly_null</code> A boolean to
differentiate between explicitly (user-set) and implicitly null (user un-set)
values</p>
+
<p>The following chart documents how each <a href="#rep">Rep</a> value
corresponds
to the attributes in this message:</p>