Skip to content

row is actually a column value. #11

@stevenj

Description

@stevenj

Just looked at this API, and was confused by the row type, because I expected it to encapsulate a row.
But in fact, it is a single value for a column value.

Would it make sense to rename it to column and make a row which is a list of columns?

Something like:

interface types {
    /// one single column item
    record column {
        field-name: string,
        value: data-type,
    }

// A single row
type row =  list<column>;

// A set of rows
type rows = list<row>;
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions