mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
update go-sqlite3 to v0.18.0 (#3204)
This commit is contained in:
11
vendor/github.com/ncruces/go-sqlite3/conn_iter.go
generated
vendored
Normal file
11
vendor/github.com/ncruces/go-sqlite3/conn_iter.go
generated
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
//go:build (go1.23 || goexperiment.rangefunc) && !vet
|
||||
|
||||
package sqlite3
|
||||
|
||||
import "iter"
|
||||
|
||||
// Stmts returns an iterator for the prepared statements
|
||||
// associated with the database connection.
|
||||
//
|
||||
// https://sqlite.org/c3ref/next_stmt.html
|
||||
func (c *Conn) Stmts() iter.Seq[*Stmt] { return c.stmtsIter }
|
Reference in New Issue
Block a user