Mention that str is compatible with NAME

This commit is contained in:
Steven Fackler 2016-09-25 18:34:12 +02:00
parent 6b94fc2c99
commit cfa1971e18
2 changed files with 29 additions and 29 deletions

View File

@ -181,7 +181,7 @@ types. The driver currently supports the following conversions:
</tr> </tr>
<tr> <tr>
<td>str/String</td> <td>str/String</td>
<td>VARCHAR, CHAR(n), TEXT, CITEXT</td> <td>VARCHAR, CHAR(n), TEXT, CITEXT, NAME</td>
</tr> </tr>
<tr> <tr>
<td>[u8]/Vec&lt;u8&gt;</td> <td>[u8]/Vec&lt;u8&gt;</td>

View File

@ -257,7 +257,7 @@ impl WrongTypeNew for WrongType {
/// corresponding Postgres types: /// corresponding Postgres types:
/// ///
/// | Rust type | Postgres type(s) | /// | Rust type | Postgres type(s) |
/// |-----------------------------------|--------------------------------| /// |-----------------------------------|--------------------------------------|
/// | `bool` | BOOL | /// | `bool` | BOOL |
/// | `i8` | "char" | /// | `i8` | "char" |
/// | `i16` | SMALLINT, SMALLSERIAL | /// | `i16` | SMALLINT, SMALLSERIAL |
@ -266,7 +266,7 @@ impl WrongTypeNew for WrongType {
/// | `i64` | BIGINT, BIGSERIAL | /// | `i64` | BIGINT, BIGSERIAL |
/// | `f32` | REAL | /// | `f32` | REAL |
/// | `f64` | DOUBLE PRECISION | /// | `f64` | DOUBLE PRECISION |
/// | `String` | VARCHAR, CHAR(n), TEXT, CITEXT | /// | `String` | VARCHAR, CHAR(n), TEXT, CITEXT, NAME |
/// | `Vec<u8>` | BYTEA | /// | `Vec<u8>` | BYTEA |
/// | `HashMap<String, Option<String>>` | HSTORE | /// | `HashMap<String, Option<String>>` | HSTORE |
/// ///
@ -463,7 +463,7 @@ pub enum IsNull {
/// corresponding Postgres types: /// corresponding Postgres types:
/// ///
/// | Rust type | Postgres type(s) | /// | Rust type | Postgres type(s) |
/// |-----------------------------------|--------------------------------| /// |-----------------------------------|--------------------------------------|
/// | `bool` | BOOL | /// | `bool` | BOOL |
/// | `i8` | "char" | /// | `i8` | "char" |
/// | `i16` | SMALLINT, SMALLSERIAL | /// | `i16` | SMALLINT, SMALLSERIAL |
@ -472,8 +472,8 @@ pub enum IsNull {
/// | `i64` | BIGINT, BIGSERIAL | /// | `i64` | BIGINT, BIGSERIAL |
/// | `f32` | REAL | /// | `f32` | REAL |
/// | `f64` | DOUBLE PRECISION | /// | `f64` | DOUBLE PRECISION |
/// | `String` | VARCHAR, CHAR(n), TEXT, CITEXT | /// | `String` | VARCHAR, CHAR(n), TEXT, CITEXT, NAME |
/// | `&str` | VARCHAR, CHAR(n), TEXT, CITEXT | /// | `&str` | VARCHAR, CHAR(n), TEXT, CITEXT, NAME |
/// | `Vec<u8>` | BYTEA | /// | `Vec<u8>` | BYTEA |
/// | `&[u8]` | BYTEA | /// | `&[u8]` | BYTEA |
/// | `HashMap<String, Option<String>>` | HSTORE | /// | `HashMap<String, Option<String>>` | HSTORE |