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

feat: expose isStored on column #177

Merged
merged 1 commit into from
Oct 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ public boolean isHidden() {
return AstTreeUtils.getOptionalChildByType(children, ASThidden.class) != null;
}

public boolean isStored() {
return getGenerationClause() != null && getGenerationClause().isStored();
}

@Override
public String toString() {
// check for unknown/unsupported children
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,14 @@ public ASTgeneration_clause(DdlParser p, int id) {
super(p, id);
}

public boolean isStored() {
return children.length > 1 && children[1].getClass() == ASTstored.class;
}

@Override
public String toString() {
final ASTexpression exp = (ASTexpression) children[0];
final String storedOpt =
children.length > 1 && children[1].getClass() == ASTstored.class ? " STORED" : "";
final String storedOpt = isStored() ? " STORED" : "";
return "AS ( " + exp.toString() + " )" + storedOpt;
}

Expand Down