Bump github.com/mattn/go-sqlite3 to fix musl builds

See https://github.com/mattn/go-sqlite3/issues/1164
This commit is contained in:
André Duffeck
2024-01-08 16:48:04 +01:00
parent 964dbc8453
commit 4e4b3e7579
36 changed files with 54277 additions and 28398 deletions
+21
View File
@@ -0,0 +1,21 @@
// +build sqlite_column_metadata
package sqlite3
/*
#ifndef USE_LIBSQLITE3
#cgo CFLAGS: -DSQLITE_ENABLE_COLUMN_METADATA
#include <sqlite3-binding.h>
#else
#include <sqlite3.h>
#endif
*/
import "C"
// ColumnTableName returns the table that is the origin of a particular result
// column in a SELECT statement.
//
// See https://www.sqlite.org/c3ref/column_database_name.html
func (s *SQLiteStmt) ColumnTableName(n int) string {
return C.GoString(C.sqlite3_column_table_name(s.s, C.int(n)))
}