Skip to content

Commit 9879c76

Browse files
committed
remove stable snippet
1 parent baf4f82 commit 9879c76

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

firestore-next/test.firestore.js

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1727,21 +1727,6 @@ describe("firestore-pipelines", () => {
17271727
console.log(results);
17281728
}
17291729

1730-
async function unionStageStable() {
1731-
// [START union_stage_stable]
1732-
const results = await execute(db.pipeline()
1733-
.collection("cities/SF/restaurants")
1734-
.where(field("type").equal("Chinese"))
1735-
.union(db.pipeline()
1736-
.collection("cities/NY/restaurants")
1737-
.where(field("type").equal("Italian")) /*, { stable: true } */)
1738-
.where(field("rating").greaterThanOrEqual(4.5))
1739-
.sort(field("__name__").descending())
1740-
);
1741-
// [END union_stage_stable]
1742-
console.log(results);
1743-
}
1744-
17451730
async function unnestStage() {
17461731
// [START unnest_stage]
17471732
const results = await execute(db.pipeline()

0 commit comments

Comments
 (0)