Class GPUdbRecordColumn

class gpudb.GPUdbRecordColumn(name, column_type, column_properties=None, is_nullable=False)[source]

Bases: object

Represents a column in a GPUdb record object (GPUdbRecordType).

Construct a GPUdbRecordColumn object.

Parameters

name (str) –
The name of the column, must be a non-empty string.
column_type (str) –
The data type of the column. Must be one of int, long, float, double, string, bytes.
column_properties (list) –
Optional list of properties for the column.
is_nullable (bool) –
Optional boolean flag indicating whether the column is nullable.
name

The name of the column.

column_type

The data type of the column.

column_properties

The properties of the column.

is_nullable

The nullability of the column.