Commit fe0062c9 authored by Tom Lane's avatar Tom Lane

Remove unused variables.

g_comment_start and g_comment_end have been unused since commit
30ab5bd4.

Daniel Gustafsson

Discussion: https://postgr.es/m/2CA1BA9F-CDF9-41BE-96A1-2EFD2A3EA6CA@yesql.se
parent b31d6efe
...@@ -122,11 +122,6 @@ static SimpleOidList tabledata_exclude_oids = {NULL, NULL}; ...@@ -122,11 +122,6 @@ static SimpleOidList tabledata_exclude_oids = {NULL, NULL};
static SimpleStringList foreign_servers_include_patterns = {NULL, NULL}; static SimpleStringList foreign_servers_include_patterns = {NULL, NULL};
static SimpleOidList foreign_servers_include_oids = {NULL, NULL}; static SimpleOidList foreign_servers_include_oids = {NULL, NULL};
/* placeholders for the delimiters for comments */
char g_comment_start[10];
char g_comment_end[10];
static const CatalogId nilCatalogId = {0, 0}; static const CatalogId nilCatalogId = {0, 0};
/* override for standard extra_float_digits setting */ /* override for standard extra_float_digits setting */
...@@ -405,9 +400,6 @@ main(int argc, char **argv) ...@@ -405,9 +400,6 @@ main(int argc, char **argv)
*/ */
init_parallel_dump_utils(); init_parallel_dump_utils();
strcpy(g_comment_start, "-- ");
g_comment_end[0] = '\0';
progname = get_progname(argv[0]); progname = get_progname(argv[0]);
if (argc > 1) if (argc > 1)
......
...@@ -639,10 +639,6 @@ typedef struct _extensionMemberId ...@@ -639,10 +639,6 @@ typedef struct _extensionMemberId
ExtensionInfo *ext; /* owning extension */ ExtensionInfo *ext; /* owning extension */
} ExtensionMemberId; } ExtensionMemberId;
/* placeholders for comment starting and ending delimiters */
extern char g_comment_start[10];
extern char g_comment_end[10];
/* /*
* common utility functions * common utility functions
*/ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment