aboutsummaryrefslogtreecommitdiff
path: root/sqlite3.go
diff options
context:
space:
mode:
authorJesse Rittner <rittneje@gmail.com>2021-02-18 09:17:00 -0500
committerrittneje <rittneje@gmail.com>2021-02-18 13:34:41 -0500
commitab91e9342b029f7b8d6097257c9a7874153a5b3f (patch)
tree600d007919a469b949fff36ff5998c872d077acd /sqlite3.go
parentExport sqlite3_column_table_name (#900) (diff)
downloadgolite-ab91e9342b029f7b8d6097257c9a7874153a5b3f.tar.gz
golite-ab91e9342b029f7b8d6097257c9a7874153a5b3f.tar.xz
make column metadata functionality opt-in
Diffstat (limited to 'sqlite3.go')
-rw-r--r--sqlite3.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/sqlite3.go b/sqlite3.go
index 8d48faa..5ac9570 100644
--- a/sqlite3.go
+++ b/sqlite3.go
@@ -19,7 +19,6 @@ package sqlite3
#cgo CFLAGS: -DSQLITE_OMIT_DEPRECATED
#cgo CFLAGS: -DSQLITE_DEFAULT_WAL_SYNCHRONOUS=1
#cgo CFLAGS: -DSQLITE_ENABLE_UPDATE_DELETE_LIMIT
-#cgo CFLAGS: -DSQLITE_ENABLE_COLUMN_METADATA
#cgo CFLAGS: -Wno-deprecated-declarations
#cgo linux,!android CFLAGS: -DHAVE_PREAD64=1 -DHAVE_PWRITE64=1
#ifndef USE_LIBSQLITE3
@@ -2015,14 +2014,6 @@ func (s *SQLiteStmt) Readonly() bool {
return C.sqlite3_stmt_readonly(s.s) == 1
}
-// 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)))
-}
-
// Close the rows.
func (rc *SQLiteRows) Close() error {
rc.s.mu.Lock()