i want to know ViewExpression how to use #19418
Unanswered
A-little-bit-of-data
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I would like to know about the following changes to the ViewExpression class in version 429. How to obtain the path here and set it in new ViewExpression().
private ViewExpression(Optional identity, Optional catalog, Optional schema, String expression, List path)
{
this.identity = requireNonNull(identity, "identity is null");
this.catalog = requireNonNull(catalog, "catalog is null");
this.schema = requireNonNull(schema, "schema is null");
this.expression = requireNonNull(expression, "expression is null");
this.path = List.copyOf(path);
Beta Was this translation helpful? Give feedback.
All reactions