node:sqlite: sqlite module should provide wrapper for sqlite3_create_window_function
api
#56511
Labels
feature request
Issues that request new features to be added to Node.js.
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 forsqlite3_create_function_v2
, but sqlite expects window functions to be defined withsqlite3_create_window_function
What is the feature you are proposing to solve the problem?
node:sqlite
should provide an additional wrapper forsqlite3_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 thenode:sqlite
moduleThe text was updated successfully, but these errors were encountered: