Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
hadrienk opened this issue Sep 14, 2018 · 0 comments
Milestone

Comments

@hadrienk
Copy link

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 {
  /* ... */
}
@hadrienk hadrienk added this to the 2.0 milestone Sep 14, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant