7 using System.Collections.Generic;
62 public const string TRUE =
"true";
63 public const string FALSE =
"false";
82 public IList<string>
expressions {
get;
set; } =
new List<string>();
128 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
195 IDictionary<string, string>
options =
null)
198 this.expressions =
expressions ??
new List<string>();
216 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
const string GLOBAL_EXPRESSION
An optional global expression to reduce the search space of the expressions.
IDictionary< string, string > options
Optional parameters.
IDictionary< string, string > info
Additional information.
A set of string constants for the parameter options.
A set of parameters for Kinetica.deleteRecords.
long count_deleted
Total number of records deleted across all expressions.
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.
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, in [schema_name.
KineticaData - class to help with Avro Encoding for Kinetica
IList< long > counts_deleted
Total number of records deleted per expression.
DeleteRecordsRequest()
Constructs a DeleteRecordsRequest object with default parameters.