mirror of
https://github.com/ncruces/go-sqlite3.git
synced 2026-01-12 05:59:14 +00:00
Internal API tweaks.
This commit is contained in:
@@ -46,6 +46,13 @@ https://sqlite.org/lang_aggfunc.html
|
||||
|
||||
https://sqlite.org/windowfunctions.html#builtins
|
||||
|
||||
## Boolean aggregates
|
||||
|
||||
- [ ] `ALL(boolean)`
|
||||
- [ ] `ANY(boolean)`
|
||||
- [ ] `EVERY(boolean)`
|
||||
- [ ] `SOME(boolean)`
|
||||
|
||||
## Additional aggregates
|
||||
|
||||
- [X] `MEDIAN(expression)`
|
||||
|
||||
@@ -22,9 +22,9 @@ func newQuantile(kind int) func() sqlite3.AggregateFunction {
|
||||
}
|
||||
|
||||
type quantile struct {
|
||||
kind int
|
||||
nums []float64
|
||||
arg1 []byte
|
||||
kind int
|
||||
}
|
||||
|
||||
func (q *quantile) Step(ctx sqlite3.Context, arg ...sqlite3.Value) {
|
||||
|
||||
Reference in New Issue
Block a user