Skip to content

Commit

Permalink
Fix type errors
Browse files Browse the repository at this point in the history
  • Loading branch information
thdxr committed Jul 21, 2022
1 parent 07c1fc6 commit 6eaa70d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
12 changes: 0 additions & 12 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,3 @@ jobs:

- name: View outputs
run: echo ${{join(steps.changesets.outputs.*, ' ')}}

- name: Create Release
if: steps.changesets.outputs.published == 'true'
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.aggregate.outputs.version }}
release_name: ${{ steps.aggregate.outputs.version }}
body: ${{ steps.aggregate.outputs.notes }}
draft: false
prerelease: false
7 changes: 7 additions & 0 deletions src/data-api-driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,11 @@ class DataApiConnection implements DatabaseConnection {
};
return result;
}

async *streamQuery<O>(
_compiledQuery: CompiledQuery,
_chunkSize: number
): AsyncIterableIterator<QueryResult<O>> {
throw new Error("Data API does not support streaming");
}
}

0 comments on commit 6eaa70d

Please sign in to comment.