2025-11-18 20:38:01 -08:00
|
|
|
// Phonograph - A friendly PostgreSQL wrapper for nerds of all stripes.
|
|
|
|
|
// Copyright (C) 2025 Second System Technologies LLC
|
|
|
|
|
//
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify it
|
|
|
|
|
// under the terms of the GNU Affero General Public License as published by
|
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or (at your
|
|
|
|
|
// option) any later version.
|
|
|
|
|
//
|
|
|
|
|
// This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
|
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
|
|
|
// FOR A PARTICULAR PURPOSE.
|
|
|
|
|
//
|
|
|
|
|
// See the GNU Affero General Public License for more details. You should have
|
|
|
|
|
// received a copy of the GNU Affero General Public License along with this
|
|
|
|
|
// program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
2025-08-04 13:59:42 -07:00
|
|
|
pub mod client;
|
2025-07-08 16:54:51 -07:00
|
|
|
pub mod pg_acl;
|
2025-07-08 14:37:03 -07:00
|
|
|
pub mod pg_attribute;
|
2025-07-08 16:54:51 -07:00
|
|
|
pub mod pg_class;
|
|
|
|
|
pub mod pg_database;
|
|
|
|
|
pub mod pg_namespace;
|
|
|
|
|
pub mod pg_role;
|
2025-11-19 01:31:09 +00:00
|
|
|
pub mod rolnames;
|
2025-11-21 08:08:51 +00:00
|
|
|
mod utils;
|
2025-07-18 16:20:03 -07:00
|
|
|
|
2025-11-21 08:08:51 +00:00
|
|
|
pub use utils::escape_identifier;
|