#![allow(non_snake_case)]
#![allow(non_camel_case_types)]
extern crate libc;
pub mod rust_utils;
pub mod setjmp;
pub mod executor;
pub mod fmgr;
pub mod pg_config;
pub mod postmaster;
pub mod postgres;
pub mod utils;
#[global_allocator]
static ALLOCATOR: rust_utils::PostgresAllocator = rust_utils::PostgresAllocator;