!485 Delete the command line option -O of gaussdb.

Merge pull request !485 from Yuejia/master
This commit is contained in:
opengauss-bot 2020-12-14 09:17:51 +08:00 committed by Gitee
commit 85b1af40e1
2 changed files with 0 additions and 5 deletions

View File

@ -403,7 +403,6 @@ static void help(const char* progname)
printf(_("\nDeveloper options:\n"));
printf(_(" -f s|i|n|m|h forbid use of some plan types\n"));
printf(_(" -n do not reinitialize shared memory after abnormal exit\n"));
printf(_(" -O allow system table structure changes\n"));
printf(_(" -P disable system indexes\n"));
printf(_(" -t pa|pl|ex show timings after each query\n"));
printf(_(" -T send SIGSTOP to all backend processes if one dies\n"));

View File

@ -1283,10 +1283,6 @@ int PostmasterMain(int argc, char* argv[])
ereport(FATAL, (errmsg("the options of -n is deprecated")));
break;
case 'O':
SetConfigOption("allow_system_table_mods", "true", PGC_INTERNAL, PGC_S_ARGV);
break;
case 'o':
/* Other options to pass to the backend on the command line */
rc = snprintf_s(g_instance.ExtraOptions + strlen(g_instance.ExtraOptions),