Skip to content
This repository was archived by the owner on May 8, 2026. It is now read-only.

Commit be37d17

Browse files
cherylEnkiducloud-java-bot
authored andcommitted
fix: fix the wrong return type for Pipeline.as(String alias) (#2330)
* Fix the wrong return type for Pipeline.as(String alias) * chore: generate libraries at Fri Feb 27 19:17:30 UTC 2026 --------- Co-authored-by: cloud-java-bot <cloud-java-bot@google.com>
1 parent f24ac13 commit be37d17

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions

google-cloud-firestore/src/main/java/com/google/cloud/firestore/pipeline/expressions/Expression.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4498,11 +4498,11 @@ public final Ordering descending() {
44984498
* names to calculated values.
44994499
*
45004500
* @param alias The alias to assign to this expression.
4501-
* @return A new {@link Selectable} (typically an {@link AliasedExpression}) that wraps this
4502-
* expression and associates it with the provided alias.
4501+
* @return A new {@link AliasedExpression} that wraps this expression and associates it with the
4502+
* provided alias.
45034503
*/
45044504
@BetaApi
4505-
public Selectable as(String alias) {
4505+
public AliasedExpression as(String alias) {
45064506
return new AliasedExpression(this, alias);
45074507
}
45084508

0 commit comments

Comments
 (0)