Tom Lane
6c7e6d2baa
Add a usage example for has_function_privilege().
22 years ago
Bruce Momjian
3700335baf
Done:
...
> * -Order duplicate index entries on creation by tid for faster heap lookups
22 years ago
Bruce Momjian
8c702ea7ac
Modify:
...
< * Order duplicate index entries by tid for faster heap lookups
> * Order duplicate index entries on creation by tid for faster heap lookups
22 years ago
Bruce Momjian
d245b6bd9f
Document SPI_push() and SPI_pop().
22 years ago
Bruce Momjian
2c7e473434
Add:
...
> * Allow pg_dumpall to use non-text output formats
>
22 years ago
Bruce Momjian
e2d8c1b2bb
log_statement was not removed by the previous patch. It only updated
...
its description.
22 years ago
Bruce Momjian
221c0adaa8
Update random regression test text to be clearer.
22 years ago
Bruce Momjian
48c9fbd35c
Update random test description because it fails less frequently now.
22 years ago
Bruce Momjian
d6b57925ca
Remove GUC log_statement, log_pid, log_timestamp, log_source_port.
...
Functionality superceeded by log_line_prefix.
Andrew Dunstan
22 years ago
Bruce Momjian
98bb1d2085
Fix typo.
22 years ago
Bruce Momjian
10afaf472a
Mention Linux syslog will sync lines to disk, and describe how to
...
disable it.
22 years ago
Bruce Momjian
afaf252cee
Done:
...
> * -Issue NOTICE if foreign key data requires costly test to match primary key
22 years ago
Bruce Momjian
e3d6ee6c28
Update FAQ with current release version.
22 years ago
Bruce Momjian
fab1a5950b
Update Russian FAQ, Viktor Vislobokov
22 years ago
Neil Conway
be7976d5a2
Fix a typo in the documentation for geqo_effort.
22 years ago
Neil Conway
fe9c4420e4
Improve documentation for the newly-added NOWAIT clause of LOCK TABLE.
22 years ago
Neil Conway
bfd6f52b0e
Allow 'Infinity' and '-Infinity' as input to the float4 and float8
...
types. Update the regression tests and the documentation to reflect
this. Remove the UNSAFE_FLOATS #ifdef.
This is only half the story: we still unconditionally reject
floating point operations that result in +/- infinity. See
recent thread on -hackers for more information.
22 years ago
Bruce Momjian
0f8c4bc4a2
Document the SSL and Kerberos are not thread-safe.
22 years ago
Tatsuo Ishii
0b86ade1c2
Add NOWAIT option to LOCK command
22 years ago
Neil Conway
ae22a6c185
Fix a typo.
22 years ago
Neil Conway
f28d5614ce
Tweak some text to avoid using <command>SET</command> as a verb, per
...
suggestion from Peter E.
22 years ago
Bruce Momjian
832e6df893
Remove blank line in Makefile.
22 years ago
Bruce Momjian
66cb7e2e99
Add HISTORY/INSTALL clean target to 7.4.X.
22 years ago
Neil Conway
47110ace3a
Add documentation for the recent 'ALSO' patch for CREATE RULE. Along
...
the way, fix a typo and make a few SGML cleanups.
22 years ago
Neil Conway
80ec228389
Refer to GUC variables using <xref> tags rather than <varname> tags,
...
where appropriate. Add "id" and "xreflabel" tags to the descriptions
of the GUC variables to facilitate this. Also make a few minor docs
cleanups.
22 years ago
Bruce Momjian
943eae92fb
Add ALSO keyword to CREATE RULE.
...
Fabien COELHO
22 years ago
Bruce Momjian
96ef6682e3
Done:
...
> * -Allow log lines to include session-level information, like database and user
22 years ago
Bruce Momjian
2d3fe86bc4
Add:
...
#log_line_prefix = '' # e.g. '<%u%%%d> '
# %u=user name %d=database name
# %r=remote host and port
# %p=PID %t=timestamp %i=command tag
# %c=session id %l=session line number
# %s=session start timestamp
# %x=stop here in non-session processes
# %%='%'
Andrew Dunstan
22 years ago
Bruce Momjian
e0bed412a2
Have SGML make clean remove text files output as well
22 years ago
Bruce Momjian
fb5eb6ac87
Update German FAQ.
...
Ian Barwick
22 years ago
Tom Lane
0bdce30f6b
Some editorial work on 7.4.2 release notes.
22 years ago
Michael Meskes
9e5a091f02
Added multidimensional arrays as todo for ecpg.
22 years ago
Neil Conway
5ae38167cf
Improve discussion of using OIDs for identifying rows, fix an instance of
...
incorrect SGML markup.
22 years ago
Neil Conway
cb659ecb40
Explicitely mention that some GUC variables cannot be changed at
...
runtime.
22 years ago
Neil Conway
ab8faed00d
Editorialization of some text discussing 'IS NULL' vs. '= NULL'.
22 years ago
Bruce Momjian
565b4f2de5
Use lynx -stdin and regenerate HISTORY
22 years ago
Tom Lane
96c229dd7a
Improve documentation of virtual_host parameter: old text failed to
...
indicate that you could specify multiple listen addresses.
22 years ago
Bruce Momjian
ff47b8518e
First update of release notes for 7.4.2. Still needs work.
22 years ago
Bruce Momjian
39042637dd
Oops, '-' doesn't work for my lynx either.
...
Change back to /dev/stdin, even though it isn't portable. Let's wait for
someone to complain they don't have /dev/stdin.
22 years ago
Bruce Momjian
8fc7522cad
Use '-' for stdin on lynx, my lynx version doesn't support -stdin.
22 years ago
Bruce Momjian
aef037723f
Update Polish FAQ, from Marcin Mazurek.
22 years ago
Bruce Momjian
1973971821
Per a brief conversation with Tom, I've created a patch for adding
...
support for 'week' within the date_trunc function.
Within the patch I added a couple of test cases and associated target
output, and changed the documentation to add 'week' appropriately.
Robert Creager
22 years ago
Bruce Momjian
033e37bed1
Fix for underscore in ID sgml markup.
22 years ago
Bruce Momjian
65a0db19f4
Add new SPI functions for use by PL/Java:
...
+extern Oid SPI_getargtypeid(void *plan, int argIndex);
+extern int SPI_getargcount(void *plan);
+extern bool SPI_is_cursor_plan(void *plan);
Thomas Hallgren
22 years ago
Neil Conway
2146bfc869
Emit a warning when an empty string is input to the oid, float4, and
...
float8 types. This begins the deprecation of this feature: in 7.6,
this input will be rejected.
Also added a new error code for warnings about deprecated features,
and updated the regression tests.
22 years ago
Dennis Bjorklund
0b1f7cccd7
The trim function doc did not say that the second argument could be
...
be omitted. This patch fixes that. It also fixes a bug where the
type text was not wrapped as <type>text</type>.
22 years ago
Bruce Momjian
f503b6a821
Better document INSTEAD behavior for rules.
22 years ago
Neil Conway
c934cf1e96
Add a few more cross-references where appropriate, add more text about
...
the FROM clause and an example to the UPDATE reference page, and make
a few other SGML tweaks.
22 years ago
Bruce Momjian
6008fca4d9
Remove Jan:
...
< o Add PL/PHP (Joe, Jan)
> o Add PL/PHP (Joe)
22 years ago
Bruce Momjian
58c69eab00
Add:
...
> o Add way to remove cluster specification on a table
22 years ago