Skip to content

modify column type to a json/yaml parsable type in storage backends #429 #522

@JoanFM

Description

@JoanFM

Currently column configuration in storage backends cannot be used in executors because List[Tuple[str, str]] is not a json or Yaml parsable type
Probably we need to switch to a better format like

[
    {
        "name": "col1",
        "type": "str"
    },
]

or [["col1", "str"],]
or

{
    "col1": "str",
    "col2": "int",
}

Metadata

Metadata

Assignees

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