mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-08 14:02:16 +03:00
Start of experimental implementation of SQL window functions. Does not yet
work. FossilOrigin-Name: 3781e520854808fe02ad3fe77dd11fc917448c58ff1fd79123289dd91937decd
This commit is contained in:
@@ -485,6 +485,7 @@ static const FuncDef statInitFuncdef = {
|
||||
0, /* pNext */
|
||||
statInit, /* xSFunc */
|
||||
0, /* xFinalize */
|
||||
0, 0,
|
||||
"stat_init", /* zName */
|
||||
{0}
|
||||
};
|
||||
@@ -801,6 +802,7 @@ static const FuncDef statPushFuncdef = {
|
||||
0, /* pNext */
|
||||
statPush, /* xSFunc */
|
||||
0, /* xFinalize */
|
||||
0, 0,
|
||||
"stat_push", /* zName */
|
||||
{0}
|
||||
};
|
||||
@@ -952,6 +954,7 @@ static const FuncDef statGetFuncdef = {
|
||||
0, /* pNext */
|
||||
statGet, /* xSFunc */
|
||||
0, /* xFinalize */
|
||||
0, 0,
|
||||
"stat_get", /* zName */
|
||||
{0}
|
||||
};
|
||||
|
Reference in New Issue
Block a user