We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d12b01a commit 72b96daCopy full SHA for 72b96da
src/lib.rs
@@ -478,7 +478,7 @@ impl InnerConnection {
478
WHERE t.oid = $1") {
479
Ok(..) => return Ok(()),
480
Err(Error::IoError(e)) => return Err(ConnectError::IoError(e)),
481
- // Range types weren't added until Postgres 9.2, so pg_range may not exist
+ // Range types weren't added until Postgres 9.2, so pg_range may not exist
482
Err(Error::DbError(ref e)) if e.code() == &SqlState::UndefinedTable => {}
483
Err(Error::DbError(e)) => return Err(ConnectError::DbError(e)),
484
_ => unreachable!(),
0 commit comments