postgres_extension/lib.rs
1#![allow(non_snake_case)]
2#![allow(non_camel_case_types)]
3
4// dependencies
5extern crate libc;
6
7// rust modules
8pub mod rust_utils;
9pub mod setjmp;
10
11// PG modules
12pub mod executor;
13pub mod fmgr;
14pub mod pg_config;
15pub mod postmaster;
16pub mod postgres;
17pub mod utils;
18
19#[global_allocator]
20static ALLOCATOR: rust_utils::PostgresAllocator = rust_utils::PostgresAllocator;