Skip to content
Merged
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 @@ -4332,11 +4332,11 @@ public final Ordering descending() {
* names to calculated values.
*
* @param alias The alias to assign to this expression.
* @return A new {@link Selectable} (typically an {@link AliasedExpression}) that wraps this
* expression and associates it with the provided alias.
* @return A new {@link AliasedExpression} that wraps this expression and associates it with the
* provided alias.
*/
@BetaApi
public Selectable as(String alias) {
public AliasedExpression as(String alias) {
return new AliasedExpression(this, alias);
}

Expand Down
Loading