rust-postgres/src/types/mod.rs

996 lines
35 KiB
Rust
Raw Normal View History

2013-10-20 21:34:50 +00:00
//! Traits dealing with Postgres data types
2014-06-06 03:50:23 +00:00
use std::collections::HashMap;
use std::error;
use std::fmt;
2015-02-26 17:02:32 +00:00
use std::io::prelude::*;
use byteorder::{ReadBytesExt, WriteBytesExt, BigEndian};
2015-05-27 04:42:34 +00:00
pub use self::slice::Slice;
use {Result, SessionInfoNew, InnerConnection, OtherNew};
use error::Error;
2015-04-08 06:57:22 +00:00
use util;
2015-03-04 04:44:47 +00:00
/// Generates a simple implementation of `ToSql::accepts` which accepts the
/// types passed to it.
2015-02-15 23:11:15 +00:00
#[macro_export]
macro_rules! accepts {
($($expected:pat),+) => (
2015-02-28 04:46:43 +00:00
fn accepts(ty: &$crate::types::Type) -> bool {
match *ty {
$($expected)|+ => true,
_ => false
}
}
)
}
2015-03-04 04:44:47 +00:00
/// Generates an implementation of `ToSql::to_sql_checked`.
///
/// All `ToSql` implementations should use this macro.
2015-02-15 23:11:15 +00:00
#[macro_export]
macro_rules! to_sql_checked {
() => {
fn to_sql_checked(&self, ty: &$crate::types::Type, out: &mut ::std::io::Write,
ctx: &$crate::types::SessionInfo)
2015-02-28 04:46:43 +00:00
-> $crate::Result<$crate::types::IsNull> {
if !<Self as $crate::types::ToSql>::accepts(ty) {
2015-05-26 05:47:25 +00:00
return Err($crate::error::Error::WrongType(ty.clone()));
2014-11-17 17:43:10 +00:00
}
$crate::types::ToSql::to_sql(self, ty, out, ctx)
2014-11-17 17:43:10 +00:00
}
}
2014-12-19 18:43:42 +00:00
}
2014-11-17 17:43:10 +00:00
#[cfg(feature = "uuid")]
mod uuid;
2015-02-08 03:52:45 +00:00
#[cfg(feature = "time")]
2014-11-18 03:11:32 +00:00
mod time;
mod slice;
#[cfg(feature = "rustc-serialize")]
2015-04-13 04:48:38 +00:00
mod rustc_serialize;
2015-11-08 00:28:20 +00:00
#[cfg(feature = "serde_json")]
mod serde_json;
#[cfg(feature = "serde")]
mod serde;
2015-05-14 05:21:40 +00:00
#[cfg(feature = "chrono")]
mod chrono;
2013-10-29 05:35:52 +00:00
/// A structure providing information for conversion methods.
pub struct SessionInfo<'a> {
conn: &'a InnerConnection,
}
impl<'a> SessionInfoNew<'a> for SessionInfo<'a> {
fn new(conn: &'a InnerConnection) -> SessionInfo<'a> {
SessionInfo {
conn: conn
}
}
}
impl<'a> SessionInfo<'a> {
/// Returns the value of the specified Postgres backend parameter, such
/// as `timezone` or `server_version`.
pub fn parameter(&self, param: &str) -> Option<&'a str> {
self.conn.parameters.get(param).map(|s| &**s)
}
}
2015-05-02 22:55:53 +00:00
/// A Postgres OID.
2014-01-03 07:10:26 +00:00
pub type Oid = u32;
2015-02-14 20:46:18 +00:00
/// Represents the kind of a Postgres type.
#[derive(Debug, Clone, PartialEq, Eq)]
pub enum Kind {
/// A simple type like `VARCHAR` or `INTEGER`.
Simple,
/// An array type along with the type of its elements.
Array(Type),
/// A range type along with the type of its elements.
Range(Type),
}
2015-02-19 05:04:44 +00:00
macro_rules! as_pat {
($p:pat) => ($p)
}
macro_rules! as_expr {
($e:expr) => ($e)
}
2014-12-19 18:43:42 +00:00
macro_rules! make_postgres_type {
($(#[$doc:meta] $oid:tt: $name:expr => $variant:ident: $kind:expr),+) => (
2015-05-02 22:55:53 +00:00
/// A Postgres type.
2015-01-10 21:58:46 +00:00
#[derive(PartialEq, Eq, Clone)]
2014-11-04 05:29:16 +00:00
pub enum Type {
2013-12-08 03:34:48 +00:00
$(
2014-03-29 21:33:11 +00:00
#[$doc]
2013-12-08 03:34:48 +00:00
$variant,
)+
2015-05-02 22:55:53 +00:00
/// An unknown type.
2015-02-19 05:04:44 +00:00
Other(Box<Other>),
}
2015-01-23 18:44:15 +00:00
impl fmt::Debug for Type {
2015-01-10 21:58:46 +00:00
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
let s = match *self {
$(Type::$variant => stringify!($variant),)+
2015-02-19 05:04:44 +00:00
Type::Other(ref u) => return fmt::Debug::fmt(u, fmt),
2015-01-10 21:58:46 +00:00
};
fmt.write_str(s)
}
}
impl Type {
/// Returns the `Type` corresponding to the provided `Oid` if it
/// corresponds to a built-in type.
pub fn from_oid(oid: Oid) -> Option<Type> {
2013-12-08 03:34:48 +00:00
match oid {
2015-02-19 05:04:44 +00:00
$(as_pat!($oid) => Some(Type::$variant),)+
2015-01-22 06:11:43 +00:00
_ => None
2013-12-08 03:34:48 +00:00
}
}
2015-05-27 04:47:42 +00:00
2015-04-08 06:57:22 +00:00
/// Returns the OID of the `Type`.
pub fn oid(&self) -> Oid {
2013-12-08 19:44:37 +00:00
match *self {
2015-02-19 05:04:44 +00:00
$(Type::$variant => as_expr!($oid),)+
Type::Other(ref u) => u.oid(),
2013-12-08 19:44:37 +00:00
}
}
2015-09-26 21:24:44 +00:00
/// Returns the kind of this type.
2015-02-18 07:49:11 +00:00
pub fn kind(&self) -> &Kind {
2013-12-08 19:44:37 +00:00
match *self {
$(
2015-02-18 07:49:11 +00:00
Type::$variant => {
const V: &'static Kind = &$kind;
V
}
2013-12-08 19:44:37 +00:00
)+
2015-02-19 05:04:44 +00:00
Type::Other(ref u) => u.kind(),
2013-12-08 19:44:37 +00:00
}
}
2015-09-26 21:21:20 +00:00
2015-09-26 21:24:44 +00:00
/// Returns the schema of this type.
2015-09-26 21:21:20 +00:00
pub fn schema(&self) -> &str {
match *self {
Type::Other(ref u) => u.schema(),
_ => "pg_catalog",
}
}
/// Returns the name of this type.
pub fn name(&self) -> &str {
match *self {
$(
Type::$variant => $name,
)+
Type::Other(ref u) => u.name(),
}
}
}
2013-12-08 03:34:48 +00:00
)
2014-12-19 18:43:42 +00:00
}
2013-12-08 03:34:48 +00:00
2015-02-19 05:04:44 +00:00
// Values from pg_type.h
2014-12-19 18:43:42 +00:00
make_postgres_type! {
2015-11-14 19:38:16 +00:00
/// BOOL - boolean, 'true'/'false'
16: "bool" => Bool: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// BYTEA - variable-length string, binary values escaped
17: "bytea" => Bytea: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// "char" - single character
18: "char" => Char: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// NAME - 63-byte type for storing system identifiers
19: "name" => Name: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// INT8/BIGINT - ~18 digit integer, 8-byte storage
20: "int8" => Int8: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// INT2/SMALLINT - -32 thousand to 32 thousand, 2-byte storage
21: "int2" => Int2: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// INT2VECTOR - array of int2, used in system tables
22: "int2vector" => Int2Vector: Kind::Array(Type::Int2),
2015-11-14 19:38:16 +00:00
/// INT4/INT - -2 billion to 2 billion integer, 4-byte storage
23: "int4" => Int4: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// REGPROC - registered procedure
24: "regproc" => Regproc: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// TEXT - variable-length string, no limit specified
25: "text" => Text: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// OID - object identifier(oid), maximum 4 billion
26: "oid" => Oid: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// TID - (block, offset), physical location of tuple
27: "tid" => Tid: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// XID - transaction id
28: "xid" => Xid: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// CID - command identifier type, sequence in transaction id
29: "cid" => Cid: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// OIDVECTOR - array of oids, used in system tables
30: "oidvector" => OidVector: Kind::Array(Type::Oid),
2015-11-14 19:38:16 +00:00
/// PG_TYPE
71: "pg_type" => PgType: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// PG_ATTRIBUTE
75: "pg_attribute" => PgAttribute: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// PG_PROC
81: "pg_proc" => PgProc: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// PG_CLASS
83: "pg_class" => PgClass: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// JSON
114: "json" => Json: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// XML - XML content
142: "xml" => Xml: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// XML[]
143: "_xml" => XmlArray: Kind::Array(Type::Xml),
2015-11-14 19:38:16 +00:00
/// PG_NODE_TREE - string representing an internal node tree
194: "pg_node_tree" => PgNodeTree: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// JSON[]
199: "_json" => JsonArray: Kind::Array(Type::Json),
2015-11-14 19:38:16 +00:00
/// SMGR - storage manager
210: "smgr" => Smgr: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// POINT - geometric point '(x, y)'
600: "point" => Point: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// LSEG - geometric line segment '(pt1,pt2)'
601: "lseg" => Lseg: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// PATH - geometric path '(pt1,...)'
602: "path" => Path: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// BOX - geometric box '(lower left,upper right)'
603: "box" => Box: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// POLYGON - geometric polygon '(pt1,...)'
604: "polygon" => Polygon: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// LINE - geometric line
628: "line" => Line: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// LINE[]
629: "_line" => LineArray: Kind::Array(Type::Line),
2015-11-14 19:38:16 +00:00
/// CIDR - network IP address/netmask, network address
650: "cidr" => Cidr: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// CIDR[]
651: "_cidr" => CidrArray: Kind::Array(Type::Cidr),
2015-11-14 19:38:16 +00:00
/// FLOAT4/REAL - single-precision floating point number, 4-byte storage
700: "float4" => Float4: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// FLOAT8/DOUBLE PRECISION - double-precision floating point number, 8-byte storage
701: "float8" => Float8: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// ABSTIME - absolute, limited-range date and time (Unix system time)
702: "abstime" => Abstime: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// RELTIME - relative, limited-range date and time (Unix delta time)
703: "reltime" => Reltime: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// TINTERVAL - (abstime,abstime), time interval
704: "tinterval" => Tinterval: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// UNKNOWN
705: "unknown" => Unknown: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// CIRCLE - geometric circle '(center,radius)'
718: "circle" => Circle: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// CIRCLE[]
719: "_circle" => CircleArray: Kind::Array(Type::Circle),
2015-11-14 19:38:16 +00:00
/// MONEY - monetary amounts, $d,ddd.cc
790: "money" => Money: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// MONEY[]
791: "_money" => MoneyArray: Kind::Array(Type::Money),
2015-11-14 19:38:16 +00:00
/// MACADDR - XX:XX:XX:XX:XX:XX, MAC address
829: "macaddr" => Macaddr: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// INET - IP address/netmask, host address, netmask optional
869: "inet" => Inet: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// BOOL[]
1000: "_bool" => BoolArray: Kind::Array(Type::Bool),
2015-11-14 19:38:16 +00:00
/// BYTEA[]
1001: "_bytea" => ByteaArray: Kind::Array(Type::Bytea),
2015-11-14 19:38:16 +00:00
/// "char"[]
1002: "_char" => CharArray: Kind::Array(Type::Char),
2015-11-14 19:38:16 +00:00
/// NAME[]
1003: "_name" => NameArray: Kind::Array(Type::Name),
2015-11-14 19:38:16 +00:00
/// INT2[]
1005: "_int2" => Int2Array: Kind::Array(Type::Int2),
2015-11-14 19:38:16 +00:00
/// INT2VECTOR[]
1006: "_int2vector" => Int2VectorArray: Kind::Array(Type::Int2Vector),
2015-11-14 19:38:16 +00:00
/// INT4[]
1007: "_int4" => Int4Array: Kind::Array(Type::Int4),
2015-11-14 19:38:16 +00:00
/// REGPROC[]
1008: "_regproc" => RegprocArray: Kind::Array(Type::Regproc),
2015-11-14 19:38:16 +00:00
/// TEXT[]
1009: "_text" => TextArray: Kind::Array(Type::Text),
2015-11-14 19:38:16 +00:00
/// TID[]
1010: "_tid" => TidArray: Kind::Array(Type::Tid),
2015-11-14 19:38:16 +00:00
/// XID[]
1011: "_xid" => XidArray: Kind::Array(Type::Xid),
2015-11-14 19:38:16 +00:00
/// CID[]
1012: "_cid" => CidArray: Kind::Array(Type::Cid),
2015-11-14 19:38:16 +00:00
/// OIDVECTOR[]
1013: "_oidvector" => OidVectorArray: Kind::Array(Type::OidVector),
2015-11-14 19:38:16 +00:00
/// BPCHAR[]
1014: "_bpchar" => BpcharArray: Kind::Array(Type::Bpchar),
2015-11-14 19:38:16 +00:00
/// VARCHAR[]
1015: "_varchar" => VarcharArray: Kind::Array(Type::Varchar),
2015-11-14 19:38:16 +00:00
/// INT8[]
1016: "_int8" => Int8Array: Kind::Array(Type::Int8),
2015-11-14 19:38:16 +00:00
/// POINT[]
1017: "_point" => PointArray: Kind::Array(Type::Point),
2015-11-14 19:38:16 +00:00
/// LSEG[]
1018: "_lseg" => LsegArray: Kind::Array(Type::Lseg),
2015-11-14 19:38:16 +00:00
/// PATH[]
1019: "_path" => PathArray: Kind::Array(Type::Path),
2015-11-14 19:38:16 +00:00
/// BOX[]
1020: "_box" => BoxArray: Kind::Array(Type::Box),
2015-11-14 19:38:16 +00:00
/// FLOAT4[]
1021: "_float4" => Float4Array: Kind::Array(Type::Float4),
2015-11-14 19:38:16 +00:00
/// FLOAT8[]
1022: "_float8" => Float8Array: Kind::Array(Type::Float8),
2015-11-14 19:38:16 +00:00
/// ABSTIME[]
1023: "_abstime" => AbstimeArray: Kind::Array(Type::Abstime),
2015-11-14 19:38:16 +00:00
/// RELTIME[]
1024: "_reltime" => ReltimeArray: Kind::Array(Type::Reltime),
2015-11-14 19:38:16 +00:00
/// TINTERVAL[]
1025: "_tinterval" => TintervalArray: Kind::Array(Type::Tinterval),
2015-11-14 19:38:16 +00:00
/// POLYGON[]
1027: "_polygon" => PolygonArray: Kind::Array(Type::Polygon),
2015-11-14 19:38:16 +00:00
/// OID[]
1028: "_oid" => OidArray: Kind::Array(Type::Oid),
2015-11-14 19:38:16 +00:00
/// ACLITEM - access control list
1033: "aclitem" => Aclitem: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// ACLITEM[]
1034: "_aclitem" => AclitemArray: Kind::Array(Type::Aclitem),
2015-11-14 19:38:16 +00:00
/// MACADDR[]
1040: "_macaddr" => MacaddrArray: Kind::Array(Type::Macaddr),
2015-11-14 19:38:16 +00:00
/// INET[]
1041: "_inet" => InetArray: Kind::Array(Type::Inet),
2015-11-14 19:38:16 +00:00
/// BPCHAR - char(length), blank-padded string, fixed storage length
1042: "bpchar" => Bpchar: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// VARCHAR - varchar(length), non-blank-padded string, variable storage length
1043: "varchar" => Varchar: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// DATE - date
1082: "date" => Date: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// TIME - time of day
1083: "time" => Time: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// TIMESTAMP - date and time
1114: "timestamp" => Timestamp: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// TIMESTAMP[]
1115: "_timestamp" => TimestampArray: Kind::Array(Type::Timestamp),
2015-11-14 19:38:16 +00:00
/// DATE[]
1182: "_date" => DateArray: Kind::Array(Type::Date),
2015-11-14 19:38:16 +00:00
/// TIME[]
1183: "_time" => TimeArray: Kind::Array(Type::Time),
2015-11-14 19:38:16 +00:00
/// TIMESTAMPTZ - date and time with time zone
1184: "timestamptz" => TimestampTZ: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// TIMESTAMPTZ[]
1185: "_timestamptz" => TimestampTZArray: Kind::Array(Type::TimestampTZ),
2015-11-14 19:38:16 +00:00
/// INTERVAL - @ &lt;number&gt; &lt;units&gt;, time interval
1186: "interval" => Interval: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// INTERVAL[]
1187: "_interval" => IntervalArray: Kind::Array(Type::Interval),
2015-11-14 19:38:16 +00:00
/// NUMERIC[]
1231: "_numeric" => NumericArray: Kind::Array(Type::Numeric),
2015-11-14 19:38:16 +00:00
/// CSTRING[]
1263: "_cstring" => CstringArray: Kind::Array(Type::Cstring),
2015-11-14 19:38:16 +00:00
/// TIMETZ - time of day with time zone
1266: "timetz" => Timetz: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// TIMETZ[]
1270: "_timetz" => TimetzArray: Kind::Array(Type::Timetz),
2015-11-14 19:38:16 +00:00
/// BIT - fixed-length bit string
1560: "bit" => Bit: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// BIT[]
1561: "_bit" => BitArray: Kind::Array(Type::Bit),
2015-11-14 19:38:16 +00:00
/// VARBIT - variable-length bit string
1562: "varbit" => Varbit: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// VARBIT[]
1563: "_varbit" => VarbitArray: Kind::Array(Type::Varbit),
2015-11-14 19:38:16 +00:00
/// NUMERIC - numeric(precision, decimal), arbitrary precision number
1700: "numeric" => Numeric: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// REFCURSOR - reference to cursor (portal name)
1790: "refcursor" => Refcursor: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// REFCURSOR[]
2201: "_refcursor" => RefcursorArray: Kind::Array(Type::Refcursor),
2015-11-14 19:38:16 +00:00
/// REGPROCEDURE - registered procedure (with args)
2202: "regprocedure" => Regprocedure: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// REGOPER - registered operator
2203: "regoper" => Regoper: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// REGOPERATOR - registered operator (with args)
2204: "regoperator" => Regoperator: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// REGCLASS - registered class
2205: "regclass" => Regclass: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// REGTYPE - registered type
2206: "regtype" => Regtype: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// REGPROCEDURE[]
2207: "_regprocedure" => RegprocedureArray: Kind::Array(Type::Regprocedure),
2015-11-14 19:38:16 +00:00
/// REGOPER[]
2208: "_regoper" => RegoperArray: Kind::Array(Type::Regoper),
2015-11-14 19:38:16 +00:00
/// REGOPERATOR[]
2209: "_regoperator" => RegoperatorArray: Kind::Array(Type::Regoperator),
2015-11-14 19:38:16 +00:00
/// REGCLASS[]
2210: "_regclass" => RegclassArray: Kind::Array(Type::Regclass),
2015-11-14 19:38:16 +00:00
/// REGTYPE[]
2211: "_regtype" => RegtypeArray: Kind::Array(Type::Regtype),
2015-11-14 19:38:16 +00:00
/// RECORD
2249: "record" => Record: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// CSTRING
2275: "cstring" => Cstring: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// ANY
2276: "any" => Any: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// ANYARRAY
2277: "anyarray" => AnyArray: Kind::Array(Type::Any),
2015-11-14 19:38:16 +00:00
/// VOID
2278: "void" => Void: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// TRIGGER
2279: "trigger" => Trigger: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// LANGUAGE_HANDLER
2280: "language_handler" => LanguageHandler: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// INTERNAL
2281: "internal" => Internal: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// OPAQUE
2282: "opaque" => Opaque: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// ANYELEMENT
2283: "anyelement" => Anyelement: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// RECORD[]
2287: "_record" => RecordArray: Kind::Array(Type::Record),
2015-11-14 19:38:16 +00:00
/// ANYNONARRAY
2776: "anynonarray" => Anynonarray: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// TXID_SNAPSHOT[]
2949: "_txid_snapshot" => TxidSnapshotArray: Kind::Array(Type::TxidSnapshot),
2015-11-14 19:38:16 +00:00
/// UUID - UUID datatype
2950: "uuid" => Uuid: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// TXID_SNAPSHOT - txid snapshot
2970: "txid_snapshot" => TxidSnapshot: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// UUID[]
2951: "_uuid" => UuidArray: Kind::Array(Type::Uuid),
2015-11-14 19:38:16 +00:00
/// FDW_HANDLER
3115: "fdw_handler" => FdwHandler: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// PG_LSN - PostgreSQL LSN datatype
3220: "pg_lsn" => PgLsn: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// PG_LSN[]
3221: "_pg_lsn" => PgLsnArray: Kind::Array(Type::PgLsn),
2015-11-14 19:38:16 +00:00
/// ANYENUM
3500: "anyenum" => Anyenum: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// TSVECTOR - text representation for text search
3614: "tsvector" => Tsvector: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// TSQUERY - query representation for text search
3615: "tsquery" => Tsquery: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// GTSVECTOR - GiST index internal text representation for text search
3642: "gtsvector" => Gtsvector: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// TSVECTOR[]
3643: "_tsvector" => TsvectorArray: Kind::Array(Type::Tsvector),
2015-11-14 19:38:16 +00:00
/// GTSVECTOR[]
3644: "_gtsvector" => GtsvectorArray: Kind::Array(Type::Gtsvector),
2015-11-14 19:38:16 +00:00
/// TSQUERY[]
3645: "_tsquery" => TsqueryArray: Kind::Array(Type::Tsquery),
2015-11-14 19:38:16 +00:00
/// REGCONFIG - registered text search configuration
3734: "regconfig" => Regconfig: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// REGCONFIG[]
3735: "_regconfig" => RegconfigArray: Kind::Array(Type::Regconfig),
2015-11-14 19:38:16 +00:00
/// REGDICTIONARY - registered text search dictionary
3769: "regdictionary" => Regdictionary: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// REGDICTIONARY[]
3770: "_regdictionary" => RegdictionaryArray: Kind::Array(Type::Regdictionary),
2015-11-14 19:38:16 +00:00
/// JSONB
3802: "jsonb" => Jsonb: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// ANYRANGE
3831: "anyrange" => Anyrange: Kind::Simple,
2015-11-14 19:38:16 +00:00
/// JSONB[]
3807: "_jsonb" => JsonbArray: Kind::Array(Type::Jsonb),
2015-11-14 19:38:16 +00:00
/// INT4RANGE - range of integers
3904: "int4range" => Int4Range: Kind::Range(Type::Int4),
2015-11-14 19:38:16 +00:00
/// INT4RANGE[]
3905: "_int4range" => Int4RangeArray: Kind::Array(Type::Int4Range),
2015-11-14 19:38:16 +00:00
/// NUMRANGE - range of numerics
3906: "numrange" => NumRange: Kind::Range(Type::Numeric),
2015-11-14 19:38:16 +00:00
/// NUMRANGE[]
3907: "_numrange" => NumRangeArray: Kind::Array(Type::NumRange),
2015-11-14 19:38:16 +00:00
/// TSRANGE - range of timestamps without time zone
3908: "tsrange" => TsRange: Kind::Range(Type::Timestamp),
2015-11-14 19:38:16 +00:00
/// TSRANGE[]
3909: "_tsrange" => TsRangeArray: Kind::Array(Type::TsRange),
2015-11-14 19:38:16 +00:00
/// TSTZRANGE - range of timestamps with time zone
3910: "tstzrange" => TstzRange: Kind::Range(Type::TimestampTZ),
2015-11-14 19:38:16 +00:00
/// TSTZRANGE[]
3911: "_tstzrange" => TstzRangeArray: Kind::Array(Type::TstzRange),
2015-11-14 19:38:16 +00:00
/// DATERANGE - range of dates
3912: "daterange" => DateRange: Kind::Range(Type::Date),
2015-11-14 19:38:16 +00:00
/// DATERANGE[]
3913: "_daterange" => DateRangeArray: Kind::Array(Type::DateRange),
2015-11-14 19:38:16 +00:00
/// INT8RANGE - range of bigints
3926: "int8range" => Int8Range: Kind::Range(Type::Int8),
2015-11-14 19:38:16 +00:00
/// INT8RANGE[]
3927: "_int8range" => Int8RangeArray: Kind::Array(Type::Int8Range),
2015-11-14 19:38:16 +00:00
/// EVENT_TRIGGER
3838: "event_trigger" => EventTrigger: Kind::Simple
2014-12-19 18:43:42 +00:00
}
/// Information about an unknown type.
#[derive(PartialEq, Eq, Clone, Debug)]
pub struct Other {
name: String,
oid: Oid,
kind: Kind,
schema: String,
}
impl OtherNew for Other {
fn new(name: String, oid: Oid, kind: Kind, schema: String) -> Other {
Other {
name: name,
oid: oid,
kind: kind,
schema: schema,
}
}
}
impl Other {
/// The name of the type.
pub fn name(&self) -> &str {
&self.name
}
/// The OID of this type.
pub fn oid(&self) -> Oid {
self.oid
}
/// The kind of this type.
pub fn kind(&self) -> &Kind {
&self.kind
}
/// The schema of this type.
pub fn schema(&self) -> &str {
&self.schema
}
}
/// An error indicating that a `NULL` Postgres value was passed to a `FromSql`
/// implementation that does not support `NULL` values.
#[derive(Debug, Clone, Copy)]
pub struct WasNull;
impl fmt::Display for WasNull {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
fmt.write_str(error::Error::description(self))
}
}
impl error::Error for WasNull {
fn description(&self) -> &str {
"a Postgres value was `NULL`"
}
}
/// A trait for types that can be created from a Postgres value.
///
/// # Types
///
/// The following implementations are provided by this crate, along with the
/// corresponding Postgres types:
///
/// | Rust type | Postgres type(s) |
/// |---------------------------------------------|--------------------------------|
/// | bool | BOOL |
/// | i8 | "char" |
/// | i16 | SMALLINT, SMALLSERIAL |
/// | i32 | INT, SERIAL |
/// | u32 | OID |
/// | i64 | BIGINT, BIGSERIAL |
/// | f32 | REAL |
/// | f64 | DOUBLE PRECISION |
/// | String | VARCHAR, CHAR(n), TEXT, CITEXT |
/// | Vec&lt;u8&gt; | BYTEA |
/// | HashMap&lt;String, Option&lt;String&gt;&gt; | HSTORE |
///
/// In addition, some implementations are provided for types in third party
/// crates. These are disabled by default; to opt into one of these
2015-05-18 03:34:49 +00:00
/// implementations, activate the Cargo feature corresponding to the crate's
2015-11-08 00:28:20 +00:00
/// name. For example, the `serde_json` feature enables the implementation for
/// the `serde_json::Value` type.
///
2015-07-21 06:16:50 +00:00
/// | Rust type | Postgres type(s) |
/// |-------------------------------------|-------------------------------------|
/// | serialize::json::Json | JSON, JSONB |
2015-11-08 00:28:20 +00:00
/// | serde_json::Value | JSON, JSONB |
2015-07-21 06:16:50 +00:00
/// | time::Timespec | TIMESTAMP, TIMESTAMP WITH TIME ZONE |
/// | chrono::NaiveDateTime | TIMESTAMP |
/// | chrono::DateTime&lt;UTC&gt; | TIMESTAMP WITH TIME ZONE |
/// | chrono::DateTime&lt;Local&gt; | TIMESTAMP WITH TIME ZONE |
/// | chrono::DateTime&lt;FixedOffset&gt; | TIMESTAMP WITH TIME ZONE |
/// | chrono::NaiveDate | DATE |
/// | chrono::NaiveTime | TIME |
/// | uuid::Uuid | UUID |
///
/// # Nullability
///
/// In addition to the types listed above, `FromSql` is implemented for
/// `Option<T>` where `T` implements `FromSql`. An `Option<T>` represents a
/// nullable Postgres value.
pub trait FromSql: Sized {
/// ### Deprecated
fn from_sql_nullable<R: Read>(ty: &Type, raw: Option<&mut R>, ctx: &SessionInfo)
-> Result<Self> {
match raw {
Some(raw) => FromSql::from_sql(ty, raw, ctx),
None => FromSql::from_sql_null(ty, ctx),
}
}
2015-04-08 06:57:22 +00:00
/// Creates a new value of this type from a `Read`er of the binary format
2015-02-15 23:31:07 +00:00
/// of the specified Postgres `Type`.
///
/// The caller of this method is responsible for ensuring that this type
/// is compatible with the Postgres `Type`.
fn from_sql<R: Read>(ty: &Type, raw: &mut R, ctx: &SessionInfo) -> Result<Self>;
/// Creates a new value of this type from a `NULL` SQL value.
///
/// The caller of this method is responsible for ensuring that this type
/// is compatible with the Postgres `Type`.
///
/// The default implementation returns
/// `Err(Error::Conversion(Box::new(WasNull))`.
2015-11-08 00:28:20 +00:00
#[allow(unused_variables)]
fn from_sql_null(ty: &Type, ctx: &SessionInfo) -> Result<Self> {
Err(Error::Conversion(Box::new(WasNull)))
}
/// Determines if a value of this type can be created from the specified
/// Postgres `Type`.
fn accepts(ty: &Type) -> bool;
2013-10-31 02:55:25 +00:00
}
impl<T: FromSql> FromSql for Option<T> {
fn from_sql<R: Read>(ty: &Type, raw: &mut R, ctx: &SessionInfo) -> Result<Option<T>> {
<T as FromSql>::from_sql(ty, raw, ctx).map(Some)
}
fn from_sql_null(_: &Type, _: &SessionInfo) -> Result<Option<T>> {
Ok(None)
}
fn accepts(ty: &Type) -> bool {
<T as FromSql>::accepts(ty)
2013-12-07 23:39:44 +00:00
}
}
impl FromSql for bool {
fn from_sql<R: Read>(_: &Type, raw: &mut R, _: &SessionInfo) -> Result<bool> {
Ok(try!(raw.read_u8()) != 0)
}
accepts!(Type::Bool);
}
impl FromSql for Vec<u8> {
fn from_sql<R: Read>(_: &Type, raw: &mut R, _: &SessionInfo) -> Result<Vec<u8>> {
2015-02-26 17:02:32 +00:00
let mut buf = vec![];
try!(raw.read_to_end(&mut buf));
Ok(buf)
2014-11-17 17:43:10 +00:00
}
2015-02-19 07:30:06 +00:00
accepts!(Type::Bytea);
2014-11-17 17:43:10 +00:00
}
2013-12-08 22:37:31 +00:00
impl FromSql for String {
fn from_sql<R: Read>(_: &Type, raw: &mut R, _: &SessionInfo) -> Result<String> {
2015-02-26 17:02:32 +00:00
let mut buf = vec![];
try!(raw.read_to_end(&mut buf));
String::from_utf8(buf).map_err(|err| Error::Conversion(Box::new(err)))
2014-11-17 17:43:10 +00:00
}
fn accepts(ty: &Type) -> bool {
match *ty {
2015-02-19 05:04:44 +00:00
Type::Varchar | Type::Text | Type::Bpchar | Type::Name => true,
Type::Other(ref u) if u.name() == "citext" => true,
_ => false,
}
}
2014-11-17 17:43:10 +00:00
}
2015-05-02 22:55:53 +00:00
impl FromSql for i8 {
fn from_sql<R: Read>(_: &Type, raw: &mut R, _: &SessionInfo) -> Result<i8> {
2015-05-02 22:55:53 +00:00
Ok(try!(raw.read_i8()))
}
accepts!(Type::Char);
}
macro_rules! primitive_from {
($t:ty, $f:ident, $($expected:pat),+) => {
impl FromSql for $t {
fn from_sql<R: Read>(_: &Type, raw: &mut R, _: &SessionInfo) -> Result<$t> {
2015-02-26 17:02:32 +00:00
Ok(try!(raw.$f::<BigEndian>()))
}
2014-11-17 17:43:10 +00:00
accepts!($($expected),+);
}
}
}
2015-02-26 17:02:32 +00:00
primitive_from!(i16, read_i16, Type::Int2);
primitive_from!(i32, read_i32, Type::Int4);
primitive_from!(u32, read_u32, Type::Oid);
primitive_from!(i64, read_i64, Type::Int8);
primitive_from!(f32, read_f32, Type::Float4);
primitive_from!(f64, read_f64, Type::Float8);
impl FromSql for HashMap<String, Option<String>> {
fn from_sql<R: Read>(_: &Type, raw: &mut R, _: &SessionInfo)
-> Result<HashMap<String, Option<String>>> {
let mut map = HashMap::new();
2015-02-26 17:02:32 +00:00
let count = try!(raw.read_i32::<BigEndian>());
2015-02-26 17:02:32 +00:00
for _ in 0..count {
let key_len = try!(raw.read_i32::<BigEndian>());
2015-05-02 22:55:53 +00:00
let mut key = vec![0; key_len as usize];
2015-04-08 06:57:22 +00:00
try!(util::read_all(raw, &mut key));
let key = match String::from_utf8(key) {
Ok(key) => key,
Err(err) => return Err(Error::Conversion(Box::new(err))),
};
2015-02-26 17:02:32 +00:00
let val_len = try!(raw.read_i32::<BigEndian>());
let val = if val_len < 0 {
None
} else {
2015-05-02 22:55:53 +00:00
let mut val = vec![0; val_len as usize];
2015-04-08 06:57:22 +00:00
try!(util::read_all(raw, &mut val));
match String::from_utf8(val) {
Ok(val) => Some(val),
Err(err) => return Err(Error::Conversion(Box::new(err))),
}
};
map.insert(key, val);
}
Ok(map)
}
2013-12-06 05:58:22 +00:00
fn accepts(ty: &Type) -> bool {
2014-03-13 06:50:10 +00:00
match *ty {
2015-02-19 05:04:44 +00:00
Type::Other(ref u) if u.name() == "hstore" => true,
_ => false
2014-03-28 05:43:10 +00:00
}
2013-12-05 05:20:48 +00:00
}
2014-03-13 06:50:10 +00:00
}
2013-12-05 05:20:48 +00:00
2015-02-15 23:11:15 +00:00
/// An enum representing the nullability of a Postgres value.
pub enum IsNull {
/// The value is NULL.
Yes,
/// The value is not NULL.
No,
}
2015-02-15 23:11:15 +00:00
/// A trait for types that can be converted into Postgres values.
///
/// # Types
///
/// The following implementations are provided by this crate, along with the
/// corresponding Postgres types:
///
/// | Rust type | Postgres type(s) |
/// |---------------------------------------------|--------------------------------|
/// | bool | BOOL |
/// | i8 | "char" |
/// | i16 | SMALLINT, SMALLSERIAL |
/// | i32 | INT, SERIAL |
/// | u32 | OID |
/// | i64 | BIGINT, BIGSERIAL |
/// | f32 | REAL |
/// | f64 | DOUBLE PRECISION |
/// | String | VARCHAR, CHAR(n), TEXT, CITEXT |
/// | &str | VARCHAR, CHAR(n), TEXT, CITEXT |
/// | Vec&lt;u8&gt; | BYTEA |
/// | &[u8] | BYTEA |
/// | HashMap&lt;String, Option&lt;String&gt;&gt; | HSTORE |
///
/// In addition, some implementations are provided for types in third party
/// crates. These are disabled by default; to opt into one of these
2015-05-18 03:34:49 +00:00
/// implementations, activate the Cargo feature corresponding to the crate's
2015-11-08 00:28:20 +00:00
/// name. For example, the `serde_json` feature enables the implementation for
/// the `serde_json::Value` type.
///
2015-07-21 06:16:50 +00:00
/// | Rust type | Postgres type(s) |
/// |-------------------------------------|-------------------------------------|
/// | serialize::json::Json | JSON, JSONB |
2015-11-08 00:28:20 +00:00
/// | serde_json::Value | JSON, JSONB |
2015-07-21 06:16:50 +00:00
/// | time::Timespec | TIMESTAMP, TIMESTAMP WITH TIME ZONE |
/// | chrono::NaiveDateTime | TIMESTAMP |
/// | chrono::DateTime&lt;UTC&gt; | TIMESTAMP WITH TIME ZONE |
/// | chrono::DateTime&lt;Local&gt; | TIMESTAMP WITH TIME ZONE |
/// | chrono::DateTime&lt;FixedOffset&gt; | TIMESTAMP WITH TIME ZONE |
/// | chrono::NaiveDate | DATE |
/// | chrono::NaiveTime | TIME |
/// | uuid::Uuid | UUID |
///
/// # Nullability
///
/// In addition to the types listed above, `ToSql` is implemented for
/// `Option<T>` where `T` implements `ToSql`. An `Option<T>` represents a
/// nullable Postgres value.
pub trait ToSql: fmt::Debug {
2015-02-15 23:31:07 +00:00
/// Converts the value of `self` into the binary format of the specified
/// Postgres `Type`, writing it to `out`.
///
2015-02-15 23:11:15 +00:00
/// The caller of this method is responsible for ensuring that this type
/// is compatible with the Postgres `Type`.
///
/// The return value indicates if this value should be represented as
/// `NULL`. If this is the case, implementations **must not** write
/// anything to `out`.
fn to_sql<W: ?Sized>(&self, ty: &Type, out: &mut W, ctx: &SessionInfo) -> Result<IsNull>
2015-02-26 17:02:32 +00:00
where Self: Sized, W: Write;
2015-02-15 23:11:15 +00:00
/// Determines if a value of this type can be converted to the specified
/// Postgres `Type`.
fn accepts(ty: &Type) -> bool where Self: Sized;
/// An adaptor method used internally by Rust-Postgres.
///
/// *All* implementations of this method should be generated by the
/// `to_sql_checked!()` macro.
fn to_sql_checked(&self, ty: &Type, out: &mut Write, ctx: &SessionInfo)
-> Result<IsNull>;
2013-10-31 02:55:25 +00:00
}
impl<'a, T> ToSql for &'a T where T: ToSql {
2015-11-13 04:55:29 +00:00
to_sql_checked!();
fn to_sql<W: Write + ?Sized>(&self, ty: &Type, out: &mut W, ctx: &SessionInfo) -> Result<IsNull> {
(*self).to_sql(ty, out, ctx)
}
fn accepts(ty: &Type) -> bool { T::accepts(ty) }
}
2015-02-15 23:11:15 +00:00
impl<T: ToSql> ToSql for Option<T> {
to_sql_checked!();
fn to_sql<W: Write+?Sized>(&self, ty: &Type, out: &mut W, ctx: &SessionInfo)
-> Result<IsNull> {
2015-02-15 23:11:15 +00:00
match *self {
Some(ref val) => val.to_sql(ty, out, ctx),
2015-02-15 23:11:15 +00:00
None => Ok(IsNull::Yes),
}
2013-12-07 23:39:44 +00:00
}
2015-02-15 23:11:15 +00:00
fn accepts(ty: &Type) -> bool {
<T as ToSql>::accepts(ty)
2014-03-15 06:01:46 +00:00
}
}
2015-02-15 23:11:15 +00:00
impl ToSql for bool {
to_sql_checked!();
fn to_sql<W: Write+?Sized>(&self, _: &Type, mut w: &mut W, _: &SessionInfo)
-> Result<IsNull> {
2015-02-15 23:11:15 +00:00
try!(w.write_u8(*self as u8));
Ok(IsNull::No)
2013-12-08 03:13:21 +00:00
}
2015-02-15 23:11:15 +00:00
accepts!(Type::Bool);
2013-12-08 03:13:21 +00:00
}
2015-02-15 23:11:15 +00:00
impl<'a> ToSql for &'a [u8] {
2015-11-13 04:55:29 +00:00
to_sql_checked!();
2013-10-31 02:55:25 +00:00
fn to_sql<W: Write+?Sized>(&self, _: &Type, w: &mut W, _: &SessionInfo)
-> Result<IsNull> {
2015-02-15 23:11:15 +00:00
try!(w.write_all(*self));
Ok(IsNull::No)
}
2015-02-15 23:11:15 +00:00
accepts!(Type::Bytea);
}
2015-02-15 23:11:15 +00:00
impl ToSql for Vec<u8> {
to_sql_checked!();
fn to_sql<W: Write+?Sized>(&self, ty: &Type, w: &mut W, ctx: &SessionInfo)
-> Result<IsNull> {
<&[u8] as ToSql>::to_sql(&&**self, ty, w, ctx)
}
2015-02-15 23:11:15 +00:00
fn accepts(ty: &Type) -> bool {
<&[u8] as ToSql>::accepts(ty)
}
}
impl<'a> ToSql for &'a str {
2015-11-13 04:55:29 +00:00
to_sql_checked!();
2015-02-15 23:11:15 +00:00
fn to_sql<W: Write+?Sized>(&self, _: &Type, w: &mut W, _: &SessionInfo)
-> Result<IsNull> {
2015-02-15 23:11:15 +00:00
try!(w.write_all(self.as_bytes()));
Ok(IsNull::No)
}
fn accepts(ty: &Type) -> bool {
match *ty {
2015-02-15 23:11:15 +00:00
Type::Varchar | Type::Text | Type::Bpchar | Type::Name => true,
Type::Other(ref u) if u.name() == "citext" => true,
_ => false,
}
}
}
2015-02-15 23:11:15 +00:00
impl ToSql for String {
to_sql_checked!();
fn to_sql<W: Write+?Sized>(&self, ty: &Type, w: &mut W, ctx: &SessionInfo)
-> Result<IsNull> {
<&str as ToSql>::to_sql(&&**self, ty, w, ctx)
2015-02-15 23:11:15 +00:00
}
fn accepts(ty: &Type) -> bool {
<&str as ToSql>::accepts(ty)
}
}
2015-05-02 22:55:53 +00:00
impl ToSql for i8 {
to_sql_checked!();
fn to_sql<W: Write+?Sized>(&self, _: &Type, mut w: &mut W, _: &SessionInfo)
-> Result<IsNull> {
2015-05-02 22:55:53 +00:00
try!(w.write_i8(*self));
Ok(IsNull::No)
}
accepts!(Type::Char);
}
2015-02-15 23:11:15 +00:00
macro_rules! to_primitive {
($t:ty, $f:ident, $($expected:pat),+) => {
impl ToSql for $t {
to_sql_checked!();
fn to_sql<W: Write+?Sized>(&self, _: &Type, mut w: &mut W, _: &SessionInfo)
-> Result<IsNull> {
2015-02-26 17:02:32 +00:00
try!(w.$f::<BigEndian>(*self));
2015-02-15 23:11:15 +00:00
Ok(IsNull::No)
}
accepts!($($expected),+);
}
}
}
2015-02-26 17:02:32 +00:00
to_primitive!(i16, write_i16, Type::Int2);
to_primitive!(i32, write_i32, Type::Int4);
to_primitive!(u32, write_u32, Type::Oid);
to_primitive!(i64, write_i64, Type::Int8);
to_primitive!(f32, write_f32, Type::Float4);
to_primitive!(f64, write_f64, Type::Float8);
2014-12-19 18:43:42 +00:00
2015-02-15 23:11:15 +00:00
impl ToSql for HashMap<String, Option<String>> {
to_sql_checked!();
2013-12-05 05:20:48 +00:00
fn to_sql<W: Write+?Sized>(&self, _: &Type, mut w: &mut W, _: &SessionInfo)
-> Result<IsNull> {
2015-06-02 03:28:23 +00:00
try!(w.write_i32::<BigEndian>(try!(downcast(self.len()))));
2013-12-05 05:20:48 +00:00
2015-05-02 22:55:53 +00:00
for (key, val) in self {
2015-06-02 03:28:23 +00:00
try!(w.write_i32::<BigEndian>(try!(downcast(key.len()))));
2015-02-15 23:11:15 +00:00
try!(w.write_all(key.as_bytes()));
2013-12-05 05:20:48 +00:00
match *val {
Some(ref val) => {
2015-06-02 03:28:23 +00:00
try!(w.write_i32::<BigEndian>(try!(downcast(val.len()))));
2015-02-15 23:11:15 +00:00
try!(w.write_all(val.as_bytes()));
2013-12-05 05:20:48 +00:00
}
2015-02-26 17:02:32 +00:00
None => try!(w.write_i32::<BigEndian>(-1))
2013-12-05 05:20:48 +00:00
}
}
2015-02-15 23:11:15 +00:00
Ok(IsNull::No)
2013-12-05 05:20:48 +00:00
}
2014-03-13 06:50:10 +00:00
2015-02-15 23:11:15 +00:00
fn accepts(ty: &Type) -> bool {
2014-03-13 06:50:10 +00:00
match *ty {
2015-02-15 23:11:15 +00:00
Type::Other(ref u) if u.name() == "hstore" => true,
_ => false,
2014-03-13 06:50:10 +00:00
}
}
}
2015-06-02 03:28:23 +00:00
fn downcast(len: usize) -> Result<i32> {
if len > i32::max_value() as usize {
let err: Box<error::Error+Sync+Send> = "value too large to transmit".into();
Err(Error::Conversion(err))
} else {
Ok(len as i32)
}
}