Skip to content

Commit 6eaa70d

Browse files
committed
Fix type errors
1 parent 07c1fc6 commit 6eaa70d

2 files changed

Lines changed: 7 additions & 12 deletions

File tree

.github/workflows/release.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -45,15 +45,3 @@ jobs:
4545

4646
- name: View outputs
4747
run: echo ${{join(steps.changesets.outputs.*, ' ')}}
48-
49-
- name: Create Release
50-
if: steps.changesets.outputs.published == 'true'
51-
uses: actions/create-release@v1
52-
env:
53-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54-
with:
55-
tag_name: ${{ steps.aggregate.outputs.version }}
56-
release_name: ${{ steps.aggregate.outputs.version }}
57-
body: ${{ steps.aggregate.outputs.notes }}
58-
draft: false
59-
prerelease: false

src/data-api-driver.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,4 +122,11 @@ class DataApiConnection implements DatabaseConnection {
122122
};
123123
return result;
124124
}
125+
126+
async *streamQuery<O>(
127+
_compiledQuery: CompiledQuery,
128+
_chunkSize: number
129+
): AsyncIterableIterator<QueryResult<O>> {
130+
throw new Error("Data API does not support streaming");
131+
}
125132
}

0 commit comments

Comments
 (0)