Skip to content

Commit 5d3a474

Browse files
Migrate datetime types into pgrx::datetime (pgcentralfoundation#2199)
Everything remains accessible from the previous paths, so this is purely organizational for now with no end-user impact except new path options.
1 parent 36636f5 commit 5d3a474

12 files changed

Lines changed: 20 additions & 14 deletions

File tree

pgrx/src/datetime.rs

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
pub mod support;
2+
pub(crate) use support as datetime_support;
3+
pub use support::*;
4+
5+
mod date;
6+
mod interval;
7+
mod time;
8+
mod time_stamp;
9+
mod time_stamp_with_timezone;
10+
mod time_with_timezone;
11+
12+
pub use date::*;
13+
pub use interval::*;
14+
pub use time::*;
15+
pub use time_stamp::*;
16+
pub use time_stamp_with_timezone::*;
17+
pub use time_with_timezone::*;
File renamed without changes.

0 commit comments

Comments
 (0)