mirror of
https://github.com/containers/podman.git
synced 2025-08-14 11:01:35 +08:00

This contains the implementation of (most) container functions, with stubs for all pod and volume functions. Presently accessed via environment variable only for testing purposes. Signed-off-by: Matt Heon <mheon@redhat.com>
22 lines
495 B
Go
22 lines
495 B
Go
// +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)))
|
|
}
|