Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1cacb3a

Browse files
committed
Add timeline for next release to developer's FAQ.
1 parentf528e24 commit1cacb3a

File tree

2 files changed

+90
-45
lines changed

2 files changed

+90
-45
lines changed

‎doc/FAQ_DEV

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Developer's Frequently Asked Questions (FAQ) for PostgreSQL
33

4-
Last updated:Mon Nov 13 23:18:46 EST 2006
4+
Last updated:Tue Dec 19 17:37:24 EST 2006
55

66
Current maintainer: Bruce Momjian (bruce@momjian.us)
77

@@ -30,6 +30,7 @@ General Questions
3030
1.16) Where can I get a copy of the SQL standards?
3131
1.17) Where can I get technical assistance?
3232
1.18) How do I get involved in PostgreSQL web site development?
33+
1.19) What is the timeline for the next major PostgreSQL release?
3334

3435
Technical Questions
3536

@@ -796,3 +797,24 @@ typedef struct nameData
796797
pgsql/data directory. The client profile file will be put in the
797798
client's current directory. Linux requires a compile with
798799
-DLINUX_PROFILE for proper profiling.
800+
801+
2.9) What is the timeline for the next major PostgreSQL release?
802+
803+
The development schedule for the 8.3 release is:
804+
805+
March 1, 2006
806+
807+
Initial community review of all major feature patches
808+
April 1, 2006
809+
810+
Feature freeze, all patches must be submitted for review and
811+
application
812+
mid-May, 2006
813+
814+
All patches applied, beta testing begins
815+
July, 2006
816+
817+
Release of 8.3.0
818+
819+
Patches that appear after appropriate dates are typically not applied
820+
but held for the next major release.

‎doc/src/FAQ/FAQ_DEV.html

Lines changed: 67 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<H1>Developer's Frequently Asked Questions (FAQ) for
1414
PostgreSQL</H1>
1515

16-
<P>Last updated:Mon Nov 13 23:18:46 EST 2006</P>
16+
<P>Last updated:Tue Dec 19 17:37:24 EST 2006</P>
1717

1818
<P>Current maintainer: Bruce Momjian (<Ahref=
1919
"mailto:bruce@momjian.us">bruce@momjian.us</A>)<BR>
@@ -55,6 +55,8 @@ <H2>General Questions</H2>
5555
assistance?<BR>
5656
<Ahref="#item1.18">1.18</A>) How do I get involved in PostgreSQL web
5757
site development?<BR>
58+
<Ahref="#item1.19">1.19</A>) What is the timeline for the next major
59+
PostgreSQL release?<BR>
5860

5961

6062
<H2>Technical Questions</H2>
@@ -937,57 +939,78 @@ <H3 id="item2.6">2.6) What is ereport()?</H3>
937939

938940
<H3id="item2.7">2.7) What is CommandCounterIncrement()?</H3>
939941

940-
<P>Normally, transactions can not see the rows they modify. This
941-
allows<CODE>UPDATE foo SET x = x + 1</CODE> to work correctly.</P>
942+
<P>Normally, transactions can not see the rows they modify.
943+
This allows<CODE>UPDATE foo SET x = x + 1</CODE> to work
944+
correctly.</P>
942945

943-
<P>However, there are cases where a transactions needs to see rows
944-
affected in previous parts of the transaction. This is accomplished
945-
using a Command Counter. Incrementing the counter allows
946-
transactions to be broken into pieces so each piece can see rows
947-
modified by previous pieces.<I>CommandCounterIncrement()</I>
946+
<P>However, there are cases where a transactions needs to see
947+
rowsaffected in previous parts of the transaction. This is
948+
accomplishedusing a Command Counter. Incrementing the counter
949+
allowstransactions to be broken into pieces so each piece can
950+
see rowsmodified by previous pieces.<I>CommandCounterIncrement()</I>
948951
increments the Command Counter, creating a new part of the
949952
transaction.</P>
950953

951-
<H3id="item2.8">2.8) What debugging features are
952-
available?</H3>
954+
<H3id="item2.8">2.8) What debugging features are available?</H3>
953955

954956
<P>First, try running<I>configure</I> with the --enable-cassert
955-
option, many<I>assert()</I>s monitor the progress of the backend
956-
and halt the program when something unexpected occurs.</P>
957-
958-
<P>The<I>postmaster</I> has a<I>-d</I> option that allows even more
959-
detailed information to be reported. The<I>-d</I> option takes a
960-
number that specifies the debug level. Be warned that high debug
961-
level values generate large log files.</P>
962-
963-
<P>If the<I>postmaster</I> is not running, you can actually run the
964-
<I>postgres</I> backend from the command line, and type your
965-
<SMALL>SQL</SMALL> statement directly. This is recommended
966-
<B>only</B> for debugging purposes. If you have compiled with debugging
967-
symbols, you can use a debugger to see what is happening. Because
968-
the backend was not started from<I>postmaster</I>, it is not
969-
running in an identical environment and locking/backend interaction
970-
problems might not be duplicated.</P>
971-
972-
<P>If the<I>postmaster</I> is running, start<I>psql</I> in one
973-
window, then find the<SMALL>PID</SMALL> of the<I>postgres</I>
957+
option, many<I>assert()</I>s monitor the progress of the
958+
backendand halt the program when something unexpected occurs.</P>
959+
960+
<P>The<I>postmaster</I> has a<I>-d</I> option that allows
961+
even moredetailed information to be reported. The<I>-d</I>
962+
option takes anumber that specifies the debug level. Be warned
963+
that high debuglevel values generate large log files.</P>
964+
965+
<P>If the<I>postmaster</I> is not running, you can actually
966+
run the<I>postgres</I> backend from the command line, and type
967+
your<SMALL>SQL</SMALL> statement directly. This is recommended
968+
<B>only</B> for debugging purposes. If you have compiled with
969+
debuggingsymbols, you can use a debugger to see what is
970+
happening. Becausethe backend was not started from<I>postmaster</I>,
971+
it is notrunning in an identical environment and locking/backend
972+
interactionproblems might not be duplicated.</P>
973+
974+
<P>If the<I>postmaster</I> is running, start<I>psql</I> in
975+
onewindow, then find the<SMALL>PID</SMALL> of the<I>postgres</I>
974976
process used by<I>psql</I> using<CODE>SELECT pg_backend_pid()</CODE>.
975977
Use a debugger to attach to the<I>postgres</I><SMALL>PID</SMALL>.
976-
You can set breakpoints in the debugger and issue queries from the
977-
other. If you are looking to find the location that is generating
978-
an error or log message, set a breakpoint at<I>errfinish</I>.
979-
980-
<I>psql</I>. If you are debugging<I>postgres</I> startup, you can
981-
set PGOPTIONS="-W n", then start<I>psql</I>. This will cause startup
982-
to delay for<I>n</I> seconds so you can attach to the process with
983-
the debugger, set any breakpoints, and continue through the startup
984-
sequence.</P>
985-
986-
<P>You can also compile with profiling to see what functions are
987-
taking execution time. The backend profile files will be deposited
988-
in the<I>pgsql/data</I> directory. The client profile file will be
989-
put in the client's current directory. Linux requires a compile with
990-
<I>-DLINUX_PROFILE</I> for proper profiling.</P>
978+
You can set breakpoints in the debugger and issue queries from
979+
the other. If you are looking to find the location that is
980+
generating an error or log message, set a breakpoint at
981+
<I>errfinish</I>.
982+
983+
<I>psql</I>. If you are debugging<I>postgres</I> startup, you
984+
can set PGOPTIONS="-W n", then start<I>psql</I>. This will
985+
cause startup to delay for<I>n</I> seconds so you can attach
986+
to the process with the debugger, set any breakpoints, and
987+
continue through the startup sequence.</P>
988+
989+
<P>You can also compile with profiling to see what functions
990+
are taking execution time. The backend profile files will be
991+
deposited in the<I>pgsql/data</I> directory. The client profile
992+
file will be put in the client's current directory. Linux
993+
requires a compile with<I>-DLINUX_PROFILE</I> for proper
994+
profiling.</P>
995+
996+
<H3id="item2.9">2.9) What is the timeline for the next major
997+
PostgreSQL release?<BR>
998+
999+
<P>The development schedule for the 8.3 release is:</P>
1000+
<DL>
1001+
<DD>March 1, 2006</DD>
1002+
<DT>Initial community review of all major feature patches</DT>
1003+
<DD>April 1, 2006</DD>
1004+
<DT>Feature freeze, all patches must be submitted for review and application</DT>
1005+
<DD>mid-May, 2006</DD>
1006+
<DT>All patches applied, beta testing begins</DT>
1007+
<DD>July, 2006</DD>
1008+
<DT>Release of 8.3.0</DT>
1009+
</DL>
1010+
1011+
<P>Patches that appear after appropriate dates are typically
1012+
not applied but held for the next major release.</P>
1013+
9911014
</BODY>
9921015
</HTML>
9931016

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp