Skip to content
Snippets Groups Projects

Release 0.3

Merged Florian Spreckelsen requested to merge release-0.3 into main
4 files
+ 38
9
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -539,17 +539,32 @@ message FindQueryResult {
}
// A single result row of a SELECT query
message SelectQueryRows {
// The cells of the table row.
repeated string cells = 1;
message SelectQueryRow {
// The cells of the table row contain the value of the SELECT'ed fields. The
// order of the cells follows the order of the columns of the
// SelectQueryHeader.
repeated Value cells = 2;
}
// A single header column of the result of a SELECT query
message SelectQueryColumn {
// The column name. This is one of the SELECT'ed fields.
string name = 1;
}
// The header line of the result of a SELECT query
message SelectQueryHeader {
// List of columns in this table. The order defines the order of the cells in
// each of the SelectQueryRows.
repeated SelectQueryColumn columns = 1;
}
// A table which is a result of a SELECT query
message SelectQueryResult {
// A single row which contains the SELECT'ed fields
SelectQueryRows header = 1;
// The header contains the SELECT'ed fields
SelectQueryHeader header = 3;
// The actual results
repeated SelectQueryRows data_rows = 2;
repeated SelectQueryRow data_rows = 4;
}
///////////////////////////////////////////////////////////////////////////
Loading