@@ -428,7 +428,7 @@ General Questions
428
428
4. A README.rpm-dist document that tries to adequately document both
429
429
the differences between the RPM build and the WHY of the
430
430
differences, as well as useful RPM environment operations (like,
431
- using syslog, upgrading, getting postmaster to start at OS boot,
431
+ using syslog, upgrading, getting the server to start at OS boot,
432
432
etc);
433
433
5. The spec file that throws it all together. This is not a trivial
434
434
undertaking in a package of this size.
@@ -755,8 +755,8 @@ typedef struct nameData
755
755
(gdb) call print(any_pointer)
756
756
(gdb) call pprint(any_pointer)
757
757
758
- The output appears in the postmaster log file, or on your screen if
759
- you are running a backend directly without a postmaster .
758
+ The output appears in the server log file, or on your screen if
759
+ you are running a backend directly.
760
760
761
761
2.4) I just added a field to a structure. What else should I do?
762
762
@@ -782,7 +782,7 @@ typedef struct nameData
782
782
ereport() is used to send messages to the front-end, and optionally
783
783
terminate the current query being processed. The first parameter is an
784
784
ereport level of DEBUG (levels 1-5), LOG, INFO, NOTICE, ERROR, FATAL,
785
- or PANIC. NOTICE prints on the user's terminal and the postmaster
785
+ or PANIC. NOTICE prints on the user's terminal and to the server
786
786
logs. INFO prints only to the user's terminal and LOG prints only to
787
787
the server logs. (These can be changed from postgresql.conf.) ERROR
788
788
prints in both places, and terminates the current query, never
@@ -811,7 +811,7 @@ typedef struct nameData
811
811
assert()s monitor the progress of the backend and halt the program
812
812
when something unexpected occurs.
813
813
814
- The postmaster has a -d option that allows even more detailed
814
+ The postgres server has a -d option that allows even more detailed
815
815
information to be reported. The -d option takes a number that
816
816
specifies the debug level. Be warned that high debug level values
817
817
generate large log files.
0 commit comments