-
Notifications
You must be signed in to change notification settings - Fork 30.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sqlite: allow returning ArrayBufferView
s from user-defined functions
#56790
Open
Renegade334
wants to merge
1
commit into
nodejs:main
Choose a base branch
from
Renegade334:sqlite-function-arraybufferview
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
sqlite: allow returning ArrayBufferView
s from user-defined functions
#56790
Renegade334
wants to merge
1
commit into
nodejs:main
from
Renegade334:sqlite-function-arraybufferview
+15
−9
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nodejs-github-bot
added
c++
Issues and PRs that require attention from people who are familiar with C++.
needs-ci
PRs that need a full CI run.
sqlite
Issues and PRs related to the SQLite subsystem.
labels
Jan 27, 2025
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #56790 +/- ##
=======================================
Coverage 89.21% 89.21%
=======================================
Files 663 663
Lines 192012 192012
Branches 36929 36931 +2
=======================================
+ Hits 171296 171300 +4
- Misses 13577 13580 +3
+ Partials 7139 7132 -7
|
targos
added
the
semver-minor
PRs that contain new features and should be released in the next minor version.
label
Jan 29, 2025
targos
approved these changes
Jan 29, 2025
cjihrig
approved these changes
Jan 29, 2025
github-actions
bot
removed
the
request-ci
Add this label to start a Jenkins CI on a PR.
label
Jan 29, 2025
This comment was marked as outdated.
This comment was marked as outdated.
jasnell
approved these changes
Jan 29, 2025
This comment was marked as outdated.
This comment was marked as outdated.
jasnell
added
the
commit-queue
Add this label to land a pull request using GitHub Actions.
label
Jan 29, 2025
cjihrig
added
the
author ready
PRs that have at least one approval, no pending requests for changes, and a CI started.
label
Jan 30, 2025
It looks like this should be able to land but the commit queue is not picking it up - possibly because GitHub thinks there are still two pending checks? |
The runs are complete on Jenkins, I guess GHA must have been having a moment... |
Renegade334
force-pushed
the
sqlite-function-arraybufferview
branch
from
January 31, 2025 01:12
9fb613e
to
29ff781
Compare
nodejs-github-bot
added
commit-queue-failed
An error occurred while landing this pull request using GitHub Actions.
and removed
commit-queue
Add this label to land a pull request using GitHub Actions.
labels
Jan 31, 2025
Commit Queue failed- Loading data for nodejs/node/pull/56790 ✔ Done loading data for nodejs/node/pull/56790 ----------------------------------- PR info ------------------------------------ Title sqlite: allow returning `ArrayBufferView`s from user-defined functions (#56790) ⚠ Could not retrieve the email or name of the PR author's from user's GitHub profile! Branch Renegade334:sqlite-function-arraybufferview -> nodejs:main Labels c++, semver-minor, author ready, needs-ci, sqlite Commits 1 - sqlite: allow returning `ArrayBufferView`s from user-defined functions Committers 1 - Renegade334 <[email protected]> PR-URL: https://github.com/nodejs/node/pull/56790 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> ------------------------------ Generated metadata ------------------------------ PR-URL: https://github.com/nodejs/node/pull/56790 Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> -------------------------------------------------------------------------------- ⚠ Commits were pushed since the last approving review: ⚠ - sqlite: allow returning `ArrayBufferView`s from user-defined functions ℹ This PR was created on Mon, 27 Jan 2025 15:30:10 GMT ✔ Approvals: 3 ✔ - Michaël Zasso (@targos) (TSC): https://github.com/nodejs/node/pull/56790#pullrequestreview-2580127244 ✔ - Colin Ihrig (@cjihrig): https://github.com/nodejs/node/pull/56790#pullrequestreview-2581083910 ✔ - James M Snell (@jasnell) (TSC): https://github.com/nodejs/node/pull/56790#pullrequestreview-2581360993 ✔ Last GitHub CI successful ℹ Last Full PR CI on 2025-01-29T20:29:00Z: https://ci.nodejs.org/job/node-test-pull-request/64832/ ⚠ Commits were pushed after the last Full PR CI run: ⚠ - sqlite: allow returning `ArrayBufferView`s from user-defined functions - Querying data for job/node-test-pull-request/64832/ ✔ Last Jenkins CI successful -------------------------------------------------------------------------------- ✔ Aborted `git node land` session in /home/runner/work/node/node/.ncuhttps://github.com/nodejs/node/actions/runs/13065470909 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
author ready
PRs that have at least one approval, no pending requests for changes, and a CI started.
c++
Issues and PRs that require attention from people who are familiar with C++.
commit-queue-failed
An error occurred while landing this pull request using GitHub Actions.
needs-ci
PRs that need a full CI run.
semver-minor
PRs that contain new features and should be released in the next minor version.
sqlite
Issues and PRs related to the SQLite subsystem.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#56385 widened the valid "blob-equivalent" type from
Uint8Array
toArrayBufferView
for bound parameters. This isn't currently reflected in the valid return types for user-defined functions, and it seems sensible to keep things consistent.