MCPcopy Create free account
hub / github.com/Nemo1870/sql-parse / Alias

Method Alias

src/main/java/com/sql/parse/model/Alias.java:16–20  ·  view source on GitHub ↗
(String leftExpression, String rightExpression, boolean useAs)

Source from the content-addressed store, hash-verified

14 private String rightExpression;
15
16 public Alias(String leftExpression, String rightExpression, boolean useAs) {
17 this.leftExpression = leftExpression;
18 this.rightExpression = rightExpression;
19 this.useAs = useAs;
20 }
21
22 public Alias(String leftExpression) {
23 this.leftExpression = leftExpression;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected