Postgres: Support INTERVAL data type options (#1984)
Some checks failed
Rust / compile (push) Has been cancelled
license / Release Audit Tool (RAT) (push) Has been cancelled
Rust / codestyle (push) Has been cancelled
Rust / lint (push) Has been cancelled
Rust / benchmark-lint (push) Has been cancelled
Rust / docs (push) Has been cancelled
Rust / compile-no-std (push) Has been cancelled
Rust / test (beta) (push) Has been cancelled
Rust / test (nightly) (push) Has been cancelled
Rust / test (stable) (push) Has been cancelled

This commit is contained in:
Michael Victor Zink 2025-08-01 23:05:13 -07:00 committed by GitHub
parent dd650b88f3
commit c1648e79fe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 239 additions and 13 deletions

View file

@ -961,7 +961,10 @@ fn parse_typed_struct_syntax_bigquery() {
})],
fields: vec![StructField {
field_name: None,
field_type: DataType::Interval,
field_type: DataType::Interval {
fields: None,
precision: None
},
options: None,
}]
},
@ -1300,7 +1303,10 @@ fn parse_typed_struct_syntax_bigquery_and_generic() {
})],
fields: vec![StructField {
field_name: None,
field_type: DataType::Interval,
field_type: DataType::Interval {
fields: None,
precision: None
},
options: None,
}]
},