Custom aggregate functions.

This commit is contained in:
Nuno Cruces
2023-07-01 15:14:45 +01:00
parent fec1f8d32a
commit 3844e81404
9 changed files with 221 additions and 32 deletions

View File

@@ -13,7 +13,7 @@ import (
)
func ExampleConn_CreateCollation() {
db, err := sqlite3.Open(memory)
db, err := sqlite3.Open(":memory:")
if err != nil {
log.Fatal(err)
}
@@ -65,7 +65,7 @@ func ExampleConn_CreateCollation() {
}
func ExampleConn_CreateFunction() {
db, err := sqlite3.Open(memory)
db, err := sqlite3.Open(":memory:")
if err != nil {
log.Fatal(err)
}