Kinetica   C#   API  Version 7.2.3.1
RecordValue.cs File Reference

Go to the source code of this file.

Classes

struct  RecordValue
 A typed value that can be stored in a GenericRecord. More...
 

Enumerations

enum  RecordValueType {
  RecordValueType.Null,
  RecordValueType.Int,
  RecordValueType.Long,
  RecordValueType.Float,
  RecordValueType.Double,
  RecordValueType.String,
  RecordValueType.Bytes
}
 Represents the type of a record value. More...
 

Enumeration Type Documentation

◆ RecordValueType

enum RecordValueType
strong

Represents the type of a record value.

Equivalent to Rust's RecordValue enum variants.

Enumerator
Null 

Null value

Int 

32-bit signed integer (also used for boolean, int8, int16)

Long 

64-bit signed integer (also used for timestamp)

Float 

32-bit IEEE 754 float

Double 

64-bit IEEE 754 double

String 

UTF-8 string (also used for date, time, datetime, char, uuid, ipv4, decimal)

Bytes 

Raw bytes

Definition at line 10 of file RecordValue.cs.