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 5ef4ab2 commit 7789883Copy full SHA for 7789883
rust/cubesql/pg-srv/src/values/date.rs
@@ -37,7 +37,7 @@ impl ToProtocolValue for NaiveDate {
37
}
38
39
impl FromProtocolValue for NaiveDate {
40
- // date_in - https://github.com/postgres/postgres/blob/REL_14_4/src/backend/utils/adt/date.c#L110
+ // date_in - https://github.com/postgres/postgres/blob/REL_14_4/src/backend/utils/adt/date.c#L111
41
fn from_text(raw: &[u8]) -> Result<Self, ProtocolError> {
42
let as_str = std::str::from_utf8(raw).map_err(|err| ProtocolError::ErrorResponse {
43
source: ErrorResponse::error(ErrorCode::ProtocolViolation, err.to_string()),
0 commit comments