-
-
Notifications
You must be signed in to change notification settings - Fork 33.5k
Closed
Labels
feature requestIssues that request new features to be added to Node.js.Issues that request new features to be added to Node.js.sqliteIssues and PRs related to the SQLite subsystem.Issues and PRs related to the SQLite subsystem.
Description
What is the problem this feature will solve?
i want to create user-defined window functions when using my sqlite database.
node:sqlite
provides a wrapper for sqlite3_create_function_v2
, but sqlite expects window functions to be defined with sqlite3_create_window_function
What is the feature you are proposing to solve the problem?
node:sqlite
should provide an additional wrapper for sqlite3_create_window_function
, or extend the behavior of the existing wrapper to use it conditionally.
What alternatives have you considered?
defining an aggregate window function on a database opened with node:sqlite
requires C FFI by the node:sqlite
module
Metadata
Metadata
Assignees
Labels
feature requestIssues that request new features to be added to Node.js.Issues that request new features to be added to Node.js.sqliteIssues and PRs related to the SQLite subsystem.Issues and PRs related to the SQLite subsystem.
Type
Projects
Status
Awaiting Triage