7 using System.Collections.Generic;
110 public const string TRUE =
"true";
111 public const string FALSE =
"false";
127 public IList<string>
expressions {
get;
set; } =
new List<string>();
171 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
236 IDictionary<string, string>
options = null)
238 this.table_name = table_name ??
"";
239 this.expressions = expressions ??
new List<string>();
240 this.
options = options ??
new Dictionary<string, string>();
255 public long count_deleted {
get;
set; }
259 public IList<long> counts_deleted {
get;
set; } =
new List<long>();
const string GLOBAL_EXPRESSION
An optional global expression to reduce the search space of the expressions.
IDictionary< string, string > options
Optional parameters.
A set of parameters for Kinetica.deleteRecords(string,IList<string>,IDictionary<string, string>).
const string DELETE_ALL_RECORDS
If set to true, all records in the table will be deleted.
A set of results returned by Kinetica.deleteRecords(string,IList<string>,IDictionary<string, string>).
DeleteRecordsRequest(string table_name, IList< string > expressions, IDictionary< string, string > options=null)
Constructs a DeleteRecordsRequest object with the specified parameters.
IList< string > expressions
A list of the actual predicates, one for each select; format should follow the guidelines provided he...
const string RECORD_ID
A record ID identifying a single record, obtained at the time of insertion of the record or by callin...
string table_name
Name of the table from which to delete records.
KineticaData - class to help with Avro Encoding for Kinetica
DeleteRecordsRequest()
Constructs a DeleteRecordsRequest object with default parameters.