Skip to content

Include information about the execution plan and relation in result of an expression #95

@hadrienk

Description

@hadrienk

The current model only present the result of the execution of a VTL expression as a stream.

Instead, we should use our own representation (probably extending stream) that includes information about how the data is processed, the other operations it is getting data from, etc.

interface VtlPlan {
  Collection<? extends VtlStream<T>> getChildren();
  ? extends VtlStream<T> getParent();
  VtlPipeline getPipeline();
}
class VtlStream<T> extends Stream<T> implements VtlPlan {
  /* ... */
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions