diff options
Diffstat (limited to 'src/backend/postmaster/launch_backend.c')
-rw-r--r-- | src/backend/postmaster/launch_backend.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/backend/postmaster/launch_backend.c b/src/backend/postmaster/launch_backend.c index 3b5f73524c0..cb0c3e2f8ab 100644 --- a/src/backend/postmaster/launch_backend.c +++ b/src/backend/postmaster/launch_backend.c @@ -208,7 +208,6 @@ child_process_kind child_process_kinds[] = { const char * PostmasterChildName(BackendType child_type) { - Assert(child_type >= 0 && child_type < lengthof(child_process_kinds)); return child_process_kinds[child_type].name; } @@ -230,7 +229,6 @@ postmaster_child_launch(BackendType child_type, { pid_t pid; - Assert(child_type >= 0 && child_type < lengthof(child_process_kinds)); Assert(IsPostmasterEnvironment && !IsUnderPostmaster); #ifdef EXEC_BACKEND |