Skip to content

Commit

Permalink
Comments
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreSenellart committed Sep 19, 2024
1 parent 0da83ec commit 5a74448
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/provsql_utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,11 @@ typedef struct constants_t {
bool ok; ///< true if constants were loaded
} constants_t;

/** Structure to store the value of various constants for a specific
* database. */
typedef struct database_constants_t {
Oid database;
constants_t constants;
Oid database; //< OID of the database
constants_t constants; //< Constants for this database
} database_constants_t;

constants_t get_constants(bool failure_if_not_possible);
Expand Down

0 comments on commit 5a74448

Please sign in to comment.