postgres: capitalize the W in handling the WHERE field for notice

Fixes #120
This commit is contained in:
Ryan Leckey 2020-03-27 16:43:15 -07:00
parent 2f80621279
commit dddaefec41

View File

@ -141,7 +141,7 @@ impl Response {
internal_query = Some(field_value.into());
}
b'w' => {
b'W' => {
where_ = Some(field_value.into());
}