pgrx_pg_sys/submodules/
polyfill.rs

1//LICENSE Portions Copyright 2019-2021 ZomboDB, LLC.
2//LICENSE
3//LICENSE Portions Copyright 2021-2023 Technology Concepts & Design, Inc.
4//LICENSE
5//LICENSE Portions Copyright 2023-2023 PgCentral Foundation, Inc. <contact@pgcentral.org>
6//LICENSE
7//LICENSE All rights reserved.
8//LICENSE
9//LICENSE Use of this source code is governed by the MIT license that can be found in the LICENSE file.
10// Constants defined in PG13+
11mod typalign {
12    pub const TYPALIGN_CHAR: u8 = b'c';
13    pub const TYPALIGN_SHORT: u8 = b's';
14    pub const TYPALIGN_INT: u8 = b'i';
15    pub const TYPALIGN_DOUBLE: u8 = b'd';
16}
17
18#[cfg(feature = "pg12")]
19pub use typalign::*;