7 using System.Collections.Generic;
28 public IList<string>
table_names {
get; set; } =
new List<string>();
32 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
51 IDictionary<string, string>
options = null)
53 this.table_names = table_names ??
new List<string>();
54 this.options =
options ??
new Dictionary<string, string>();
69 public IList<string>
table_names {
get; set; } =
new List<string>();
74 public IList<IList<IDictionary<string, string>>>
stastistics_map {
get; set; } =
new List<IList<IDictionary<string, string>>>();
77 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
ShowStatisticsRequest()
Constructs a ShowStatisticsRequest object with default parameters.
IList< string > table_names
Names of tables whose metadata will be fetched, each in [schema_name.
IList< string > table_names
Value of .
IDictionary< string, string > info
Additional information.
IList< IList< IDictionary< string, string > > > stastistics_map
A list of maps which contain the column statistics of the table .
A set of results returned by Kinetica.showStatistics(IList{string},IDictionary{string, string}).
IDictionary< string, string > options
Optional parameters.
KineticaData - class to help with Avro Encoding for Kinetica
ShowStatisticsRequest(IList< string > table_names, IDictionary< string, string > options=null)
Constructs a ShowStatisticsRequest object with the specified parameters.
A set of parameters for Kinetica.showStatistics(IList{string},IDictionary{string, string})...