Type Alias TableMetadata

type TableMetadata = {
    byte_size?: number;
    comment?: string;
    is_loose?: boolean;
    is_semantic?: boolean;
    is_system?: boolean;
    name?: string;
    no_of_fields?: number;
    no_of_key_fields?: number;
    no_of_rows?: number;
}
Index

Properties

byte_size?: number

Static RAM memory used in bytes.

comment?: string
is_loose?: boolean

If set to true, the table is loose due to circular connection. The default value is false.

is_semantic?: boolean

If set to true, the table is semantic. The default value is false.

is_system?: boolean

If set to true, the table is a system table. The default value is false.

name?: string
no_of_fields?: number
no_of_key_fields?: number
no_of_rows?: number