diff options
author | Alvaro Herrera | 2009-09-01 02:54:52 +0000 |
---|---|---|
committer | Alvaro Herrera | 2009-09-01 02:54:52 +0000 |
commit | f71b7e8e03e40219a91af6eb92ca280cbc49b9dd (patch) | |
tree | 1ae539f63f5b0460a581052053a072764adfbd64 /src/backend/tcop/postgres.c | |
parent | e3f621557201eeb6b0c94976c471da10e9849caa (diff) |
Remove flatfiles.c, which is now obsolete.
Recent commits have removed the various uses it was supporting. It was a
performance bottleneck, according to bug report #4919 by Lauris Ulmanis; seems
it slowed down user creation after a billion users.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index b0eab8fd57..ebc5a788ed 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -66,7 +66,6 @@ #include "tcop/pquery.h" #include "tcop/tcopprot.h" #include "tcop/utility.h" -#include "utils/flatfiles.h" #include "utils/lsyscache.h" #include "utils/memutils.h" #include "utils/ps_status.h" @@ -3280,12 +3279,6 @@ PostgresMain(int argc, char *argv[], const char *username) */ StartupXLOG(); on_shmem_exit(ShutdownXLOG, 0); - - /* - * We have to build the flat file for pg_database, but not for the - * user and group tables, since we won't try to do authentication. - */ - BuildFlatFiles(true); } /* |