diff options
author | Peter Eisentraut | 2022-10-28 07:19:06 +0000 |
---|---|---|
committer | Peter Eisentraut | 2022-10-28 07:19:06 +0000 |
commit | b1099eca8f38ff5cfaf0901bb91cb6a22f909bc6 (patch) | |
tree | 8ef29d9ee5911b059c8ecd2123b50c411cfc7a9e /src/backend/utils/misc/guc-file.l | |
parent | d37aa3d35832afde94e100c4d2a9618b3eb76472 (diff) |
Remove AssertArg and AssertState
These don't offer anything over plain Assert, and their usage had
already been declared obsolescent.
Author: Nathan Bossart <[email protected]>
Reviewed-by: Michael Paquier <[email protected]>
Discussion: https://www.postgresql.org/message-id/20221009210148.GA900071@nathanxps13
Diffstat (limited to 'src/backend/utils/misc/guc-file.l')
-rw-r--r-- | src/backend/utils/misc/guc-file.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/utils/misc/guc-file.l b/src/backend/utils/misc/guc-file.l index 721628c0cf1..24363963067 100644 --- a/src/backend/utils/misc/guc-file.l +++ b/src/backend/utils/misc/guc-file.l @@ -179,7 +179,7 @@ AbsoluteConfigLocation(const char *location, const char *calling_file) } else { - AssertState(DataDir); + Assert(DataDir); join_path_components(abs_path, DataDir, location); canonicalize_path(abs_path); } |