package pgtype

import 
Unknown represents the PostgreSQL unknown type. It is either a string literal or NULL. It is used when PostgreSQL does not know the type of a value. In general, this will only be used in pgx when selecting a null value without type information. e.g. SELECT NULL;
type Unknown struct {
	String string
	Status Status
}

func ( *Unknown) ( interface{}) error {
	return (*Text)().Set()
}

func ( Unknown) () interface{} {
	return (Text)().Get()
}
AssignTo assigns from src to dst. Note that as Unknown is not a general number type AssignTo does not do automatic type conversion as other number types do.
func ( *Unknown) ( interface{}) error {
	return (*Text)().AssignTo()
}

func ( *Unknown) ( *ConnInfo,  []byte) error {
	return (*Text)().DecodeText(, )
}

func ( *Unknown) ( *ConnInfo,  []byte) error {
	return (*Text)().DecodeBinary(, )
}
Scan implements the database/sql Scanner interface.
func ( *Unknown) ( interface{}) error {
	return (*Text)().Scan()
}
Value implements the database/sql/driver Valuer interface.
func ( Unknown) () (driver.Value, error) {
	return (Text)().Value()