Skip to content

Commit

Permalink
Feature/query pipeline rewrite (#32577)
Browse files Browse the repository at this point in the history
### Packages impacted by this PR


### Issues associated with this PR


### Describe the problem that is addressed by this PR


### What are the possible designs available to address the problem? If
there are more than one possible design, why was the one in this PR
chosen?


### Are there test cases added in this PR? _(If not, why?)_


### Provide a list of related PRs _(if any)_


### Command used to generate this PR:**_(Applicable only to SDK release
request PRs)_

### Checklists
- [ ] Added impacted package name to the issue description
- [ ] Does this PR needs any fixes in the SDK Generator?** _(If so,
create an Issue in the
[Autorest/typescript](https://github.com/Azure/autorest.typescript)
repository and link it here)_
- [ ] Added a changelog (if necessary)

---------

Co-authored-by: Manik Khandelwal <mkhandelwal@microsoft.com>
Co-authored-by: Aman Rao <amanrao@microsoft.com>
  • Loading branch information
3 people authored Jan 16, 2025
1 parent 9d187fd commit 7cf6f26
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 136 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe("11Test DocumentProducer", function () {
};

it("fetchBufferedItems should return first item", async function () {
let documentProducer = new DocumentProducer(
const documentProducer = new DocumentProducer(
mockedClientContext,
"mockCollectionLink",
sqlQuerySpec,
Expand All @@ -46,7 +46,7 @@ describe("11Test DocumentProducer", function () {
});

it("fetchNextItem should return first item", async function () {
let documentProducer = new DocumentProducer(
const documentProducer = new DocumentProducer(
mockedClientContext,
"mockCollectionLink",
sqlQuerySpec,
Expand Down Expand Up @@ -74,7 +74,7 @@ describe("11Test DocumentProducer", function () {
});

it("peak item should return first item", async function () {
let documentProducer = new DocumentProducer(
const documentProducer = new DocumentProducer(
mockedClientContext,
"mockCollectionLink",
sqlQuerySpec,
Expand Down

This file was deleted.

0 comments on commit 7cf6f26

Please sign in to comment.