-
-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: some refactoring of postgres code (#1166)
Move a few functions around for consistency, renamed files. No actual functionality changes. Some logging output would produce slightly different results because of the module name changes.
- Loading branch information
Showing
8 changed files
with
135 additions
and
122 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
mod builder; | ||
mod config; | ||
mod config_function; | ||
mod config_table; | ||
mod configurator; | ||
mod errors; | ||
mod function_source; | ||
mod pg_source; | ||
mod pool; | ||
mod table_source; | ||
mod query_functions; | ||
mod query_tables; | ||
mod tls; | ||
mod utils; | ||
|
||
pub use config::{PgCfgPublish, PgCfgPublishFuncs, PgCfgPublishTables, PgConfig, PgSslCerts}; | ||
pub use config_function::FunctionInfo; | ||
pub use config_table::TableInfo; | ||
pub use errors::{PgError, PgResult}; | ||
pub use function_source::query_available_function; | ||
pub use pool::{PgPool, POOL_SIZE_DEFAULT}; | ||
pub use query_functions::query_available_function; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.