Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
90e7f317
Commit
90e7f317
authored
Apr 28, 2019
by
Noah Misch
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use preprocessor conditions compatible with Emacs indent.
Emacs wrongly indented hundreds of subsequent lines.
parent
e481d262
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+4
-0
src/bin/pg_upgrade/controldata.c
src/bin/pg_upgrade/controldata.c
+2
-3
No files found.
src/backend/postmaster/postmaster.c
View file @
90e7f317
...
@@ -2371,7 +2371,11 @@ processCancelRequest(Port *port, void *pkt)
...
@@ -2371,7 +2371,11 @@ processCancelRequest(Port *port, void *pkt)
backendPID
)));
backendPID
)));
return
;
return
;
}
}
#ifndef EXEC_BACKEND
/* make GNU Emacs 26.1 see brace balance */
}
}
#else
}
#endif
/* No matching backend */
/* No matching backend */
ereport
(
LOG
,
ereport
(
LOG
,
...
...
src/bin/pg_upgrade/controldata.c
View file @
90e7f317
...
@@ -102,12 +102,11 @@ get_control_data(ClusterInfo *cluster, bool live_check)
...
@@ -102,12 +102,11 @@ get_control_data(ClusterInfo *cluster, bool live_check)
pg_putenv
(
"LC_MONETARY"
,
NULL
);
pg_putenv
(
"LC_MONETARY"
,
NULL
);
pg_putenv
(
"LC_NUMERIC"
,
NULL
);
pg_putenv
(
"LC_NUMERIC"
,
NULL
);
pg_putenv
(
"LC_TIME"
,
NULL
);
pg_putenv
(
"LC_TIME"
,
NULL
);
pg_putenv
(
"LANG"
,
#ifndef WIN32
#ifndef WIN32
NULL
);
pg_putenv
(
"LANG"
,
NULL
);
#else
#else
/* On Windows the default locale cannot be English, so force it */
/* On Windows the default locale cannot be English, so force it */
"en"
);
pg_putenv
(
"LANG"
,
"en"
);
#endif
#endif
pg_putenv
(
"LANGUAGE"
,
NULL
);
pg_putenv
(
"LANGUAGE"
,
NULL
);
pg_putenv
(
"LC_ALL"
,
NULL
);
pg_putenv
(
"LC_ALL"
,
NULL
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment