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
ffda32e9
Commit
ffda32e9
authored
Oct 26, 2007
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove second-in-paragraph usage of "Postgres" in FAQ_DEV.
parent
f2012579
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
20 deletions
+19
-20
doc/FAQ_DEV
doc/FAQ_DEV
+15
-16
doc/src/FAQ/FAQ_DEV.html
doc/src/FAQ/FAQ_DEV.html
+4
-4
No files found.
doc/FAQ_DEV
View file @
ffda32e9
Developer's Frequently Asked Questions (FAQ) for PostgreSQL
Developer's Frequently Asked Questions (FAQ) for PostgreSQL
Last updated:
Wed Sep 26 16:38:0
9 EDT 2007
Last updated:
Fri Oct 26 15:08:3
9 EDT 2007
Current maintainer: Bruce Momjian (bruce@momjian.us)
Current maintainer: Bruce Momjian (bruce@momjian.us)
...
@@ -137,9 +137,9 @@ General Questions
...
@@ -137,9 +137,9 @@ General Questions
preferable if the file changes are single-line changes and do not
preferable if the file changes are single-line changes and do not
rely on surrounding lines.)
rely on surrounding lines.)
4. PostgreSQL is licensed under a BSD license. By posting a patch to
4. PostgreSQL is licensed under a BSD license. By posting a patch to
the public Postgre
s mailling lists, you are giving the PostgreSQL
the public Postgre
SQL mailling lists, you are giving the
Global Development Group the non-revokable right to distribute
PostgreSQL Global Development Group the non-revokable right to
your patch under the BSD license.
distribute
your patch under the BSD license.
5. Confirm that your changes can pass the regression tests. If your
5. Confirm that your changes can pass the regression tests. If your
changes are port specific, please list the ports you have tested
changes are port specific, please list the ports you have tested
it on.
it on.
...
@@ -180,8 +180,8 @@ General Questions
...
@@ -180,8 +180,8 @@ General Questions
* Contains no reliability risks
* Contains no reliability risks
* Does not overly complicate the source code
* Does not overly complicate the source code
* If performance-related, has a measureable performance benefit
* If performance-related, has a measureable performance benefit
* Is of sufficient usefulness to the average Postgre
s
user
* Is of sufficient usefulness to the average Postgre
SQL
user
* Follows existing Postgre
s
coding standards
* Follows existing Postgre
SQL
coding standards
1.7) Where can I learn more about the code?
1.7) Where can I learn more about the code?
...
@@ -428,7 +428,7 @@ General Questions
...
@@ -428,7 +428,7 @@ General Questions
4. A README.rpm-dist document that tries to adequately document both
4. A README.rpm-dist document that tries to adequately document both
the differences between the RPM build and the WHY of the
the differences between the RPM build and the WHY of the
differences, as well as useful RPM environment operations (like,
differences, as well as useful RPM environment operations (like,
using syslog, upgrading, getting
the serv
er to start at OS boot,
using syslog, upgrading, getting
postmast
er to start at OS boot,
etc);
etc);
5. The spec file that throws it all together. This is not a trivial
5. The spec file that throws it all together. This is not a trivial
undertaking in a package of this size.
undertaking in a package of this size.
...
@@ -755,8 +755,8 @@ typedef struct nameData
...
@@ -755,8 +755,8 @@ typedef struct nameData
(gdb) call print(any_pointer)
(gdb) call print(any_pointer)
(gdb) call pprint(any_pointer)
(gdb) call pprint(any_pointer)
The output appears in the server log file, or on your screen if
The output appears in the server log file, or on your screen if
you
you are running a backend directly
.
are running a backend directly without a postmaster
.
2.4) I just added a field to a structure. What else should I do?
2.4) I just added a field to a structure. What else should I do?
...
@@ -782,13 +782,12 @@ typedef struct nameData
...
@@ -782,13 +782,12 @@ typedef struct nameData
ereport() is used to send messages to the front-end, and optionally
ereport() is used to send messages to the front-end, and optionally
terminate the current query being processed. The first parameter is an
terminate the current query being processed. The first parameter is an
ereport level of DEBUG (levels 1-5), LOG, INFO, NOTICE, ERROR, FATAL,
ereport level of DEBUG (levels 1-5), LOG, INFO, NOTICE, ERROR, FATAL,
or PANIC. NOTICE prints on the user's terminal and to the server
or PANIC. NOTICE prints on the user's terminal and to the server logs.
logs. INFO prints only to the user's terminal and LOG prints only to
INFO prints only to the user's terminal and LOG prints only to the
the server logs. (These can be changed from postgresql.conf.) ERROR
server logs. (These can be changed from postgresql.conf.) ERROR prints
prints in both places, and terminates the current query, never
in both places, and terminates the current query, never returning from
returning from the call. FATAL terminates the backend process. The
the call. FATAL terminates the backend process. The remaining
remaining parameters of ereport are a printf-style set of parameters
parameters of ereport are a printf-style set of parameters to print.
to print.
ereport(ERROR) frees most memory and open file descriptors so you
ereport(ERROR) frees most memory and open file descriptors so you
don't need to clean these up before the call.
don't need to clean these up before the call.
...
...
doc/src/FAQ/FAQ_DEV.html
View file @
ffda32e9
...
@@ -13,7 +13,7 @@
...
@@ -13,7 +13,7 @@
<H1>
Developer's Frequently Asked Questions (FAQ) for
<H1>
Developer's Frequently Asked Questions (FAQ) for
PostgreSQL
</H1>
PostgreSQL
</H1>
<P>
Last updated:
Wed Sep 26 16:38:0
9 EDT 2007
</P>
<P>
Last updated:
Fri Oct 26 15:08:3
9 EDT 2007
</P>
<P>
Current maintainer: Bruce Momjian (
<A
href=
<P>
Current maintainer: Bruce Momjian (
<A
href=
"mailto:bruce@momjian.us"
>
bruce@momjian.us
</A>
)
<BR>
"mailto:bruce@momjian.us"
>
bruce@momjian.us
</A>
)
<BR>
...
@@ -190,7 +190,7 @@
...
@@ -190,7 +190,7 @@
rely on surrounding lines.)
</li>
rely on surrounding lines.)
</li>
<li>
PostgreSQL is licensed under a BSD license. By posting a patch
<li>
PostgreSQL is licensed under a BSD license. By posting a patch
to the public Postgre
s
mailling lists, you are giving the PostgreSQL
to the public Postgre
SQL
mailling lists, you are giving the PostgreSQL
Global Development Group the non-revokable right to distribute your
Global Development Group the non-revokable right to distribute your
patch under the BSD license.
</li>
patch under the BSD license.
</li>
...
@@ -242,8 +242,8 @@
...
@@ -242,8 +242,8 @@
<li>
Contains no reliability risks
</li>
<li>
Contains no reliability risks
</li>
<li>
Does not overly complicate the source code
</li>
<li>
Does not overly complicate the source code
</li>
<li>
If performance-related, has a measureable performance benefit
</li>
<li>
If performance-related, has a measureable performance benefit
</li>
<li>
Is of sufficient usefulness to the average Postgre
s
user
</li>
<li>
Is of sufficient usefulness to the average Postgre
SQL
user
</li>
<li>
Follows existing Postgre
s
coding standards
</li>
<li>
Follows existing Postgre
SQL
coding standards
</li>
</ul>
</ul>
<H3
id=
"item1.7"
>
1.7) Where can I learn more about the
<H3
id=
"item1.7"
>
1.7) Where can I learn more about the
...
...
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