New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Postgres column types uuid and bytea don't work #201

Closed
nerdrew opened this Issue Feb 10, 2016 · 0 comments

Comments

Projects
None yet
1 participant
@nerdrew
Contributor

nerdrew commented Feb 10, 2016

sfackler/rust-postgres supports them: https://github.com/sfackler/rust-postgres/blob/master/src/types/mod.rs#L457

Example table:

create table foo (
    id serial primary key,
    uuid uuid not null,
    blob bytea not null,
)

Errors:

use of undeclared type name `Uuid`
use of undeclared type name `Bytea`

Would it make sense to support a rust-postgres backend?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment