We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b8ac2c commit d0c1d71Copy full SHA for d0c1d71
1 file changed
src/error.rs
@@ -448,7 +448,7 @@ pub struct PostgresDbError {
448
/// this includes a call stack traceback of active procedural language
449
/// functions and internally-generated queries. The trace is one entry per
450
/// line, most recent first.
451
- pub where: Option<String>,
+ pub where_: Option<String>,
452
/// If the error was associated with a specific database object, the name
453
/// of the schema containing that object, if any. (PostgreSQL 9.3+)
454
pub schema: Option<String>,
@@ -498,7 +498,7 @@ impl PostgresDbError {
498
None => None
499
}
500
},
501
- where: map.pop(&('W' as u8)),
+ where_: map.pop(&('W' as u8)),
502
schema: map.pop(&('s' as u8)),
503
table: map.pop(&('t' as u8)),
504
column: map.pop(&('c' as u8)),
0 commit comments