git.postgresql.org Git - postgresql.git/log

git projects / postgresql.git / log
? search:
summary | shortlog | log | commit | commitdiff | tree
first ⋅ prev ⋅ next
postgresql.git
21 years agoFix built-in SQL-language functions to ensure that referenced names
commit | commitdiff | tree
Tom Lane [2003年10月21日 16:23:16 +0000 (16:23 +0000)]
Fix built-in SQL-language functions to ensure that referenced names
are properly schema-qualified.

Christopher Kings-Lynne

21 years agoRemove:
commit | commitdiff | tree
Bruce Momjian [2003年10月21日 15:51:41 +0000 (15:51 +0000)]
Remove:

< o Allow BINARY option to SELECT, just like DECLARE

21 years agoUpdate:
commit | commitdiff | tree
Bruce Momjian [2003年10月21日 15:48:56 +0000 (15:48 +0000)]
Update:

< * Allow INET subnet tests to use indexes
> * Allow INET subnet tests using non-constants to be indexed

21 years agoCope with platforms that offer LONGLONG_MIN in place of the C99-spec
commit | commitdiff | tree
Tom Lane [2003年10月21日 15:34:34 +0000 (15:34 +0000)]
Cope with platforms that offer LONGLONG_MIN in place of the C99-spec
LLONG_MIN. One example is AIX, per report from Andreas.

21 years agoRevert to 7.3-and-before practice of only including <fcntl.h> in c.h
commit | commitdiff | tree
Tom Lane [2003年10月21日 15:32:58 +0000 (15:32 +0000)]
Revert to 7.3-and-before practice of only including <fcntl.h> in c.h
on Windows; per complaint from Andreas that it breaks AIX build.

21 years agoFix findLastBuiltinOid_V70() to deliver correct result when running
commit | commitdiff | tree
Tom Lane [2003年10月21日 04:46:28 +0000 (04:46 +0000)]
Fix findLastBuiltinOid_V70() to deliver correct result when running
against a 7.0 server.

Christopher Kings-Lynne

21 years agoUpdate per Tom:
commit | commitdiff | tree
Bruce Momjian [2003年10月21日 02:48:09 +0000 (02:48 +0000)]
Update per Tom:

< * Allow INET subnet tests using non-constants
> * Allow INET subnet tests to use indexes
101a102
> o Allow MIN()/MAX() on arrays
144c145
< * Allow CREATE INDEX zman_index ON test (date_trunc( 'day', zman ) datetime_ops)
> * -Allow CREATE INDEX zman_index ON test (date_trunc( 'day', zman ) datetime_ops)
166c167
< * Improve handling of index scans for NULL
> * Allow use of indexes to search for NULLs
203a205
> * Add optional textual message to NOTIFY
252c254
< o Add SET SCHEMA
> o Add SET PATH for schemas
297a300
> * Allow fastpast to pass values in portable format
344a348
> * Allow statement-level triggers to access modified rows
526d529
< o Add optional textual message to NOTIFY
530d532
< o Allow fastpast to pass values in portable format
533c535
< o Special passing of binary values in platform-neutral format (bytea?)
> o -Special passing of binary values in platform-neutral format (bytea?)

21 years agoAdd release info about dollar signs to migration section:
commit | commitdiff | tree
Bruce Momjian [2003年10月21日 01:25:31 +0000 (01:25 +0000)]
Add release info about dollar signs to migration section:

<listitem><para> Dollar sign (<literal>$</>) is no longer allowed
in operator names</para></listitem>
<listitem><para> Dollar sign (<literal>$</>) can be a non-first
character in identifiers</para></listitem>

21 years agoUpdate catalog version after information schema changes.
commit | commitdiff | tree
Peter Eisentraut [2003年10月20日 21:39:37 +0000 (21:39 +0000)]
Update catalog version after information schema changes.

21 years agoComplain if pg_restore is given both -d and -f options; this suggests
commit | commitdiff | tree
Tom Lane [2003年10月20日 21:05:12 +0000 (21:05 +0000)]
Complain if pg_restore is given both -d and -f options; this suggests
the user is confused about whether -f is input or output file.

21 years agoIt is possible for ResolveNew to be used to insert a sublink into a
commit | commitdiff | tree
Tom Lane [2003年10月20日 20:01:59 +0000 (20:01 +0000)]
It is possible for ResolveNew to be used to insert a sublink into a
subquery that didn't previously have one. We have traditionally made
the caller of ResolveNew responsible for updating the hasSubLinks flag
of the outermost query, but this fails to account for hasSubLinks in
subqueries. Fix ResolveNew to handle this. We might later want to
change the calling convention of ResolveNew so that it can fix the
outer query too, simplifying callers. But I went with the localized
fix for now. Per bug report from J Smith, 20-Oct-03.

21 years agoImprove error reporting in parseTypeString(), motivated by confusing
commit | commitdiff | tree
Tom Lane [2003年10月20日 17:25:42 +0000 (17:25 +0000)]
Improve error reporting in parseTypeString(), motivated by confusing
behavior reported by Martin Marques.

21 years agoInstall dummy sqlda.h file since this is needed for compatibility.
commit | commitdiff | tree
Michael Meskes [2003年10月20日 12:54:29 +0000 (12:54 +0000)]
Install dummy sqlda.h file since this is needed for compatibility.

21 years agoWhen building shared libraries on HPUX with gcc, forcibly include -lgcc
commit | commitdiff | tree
Tom Lane [2003年10月20日 01:34:33 +0000 (01:34 +0000)]
When building shared libraries on HPUX with gcc, forcibly include -lgcc
to ensure any needed compiler support routines are included. This is
arguably appropriate on *every* gcc platform, but for the moment I'll take
the conservative approach of only doing it on a platform where it's
provably useful. Per complaint from Heiko Lehmann, 13-Feb-03, as well
as personal experience --- contrib/pgstattuple has never worked for me,
but it does now.

21 years agoSave_r, Save_t should be static not global variables.
commit | commitdiff | tree
Tom Lane [2003年10月19日 23:43:51 +0000 (23:43 +0000)]
Save_r, Save_t should be static not global variables.

21 years agoUpdate README file to show 7.4 oidjoins relationships. The regression
commit | commitdiff | tree
Tom Lane [2003年10月19日 22:15:32 +0000 (22:15 +0000)]
Update README file to show 7.4 oidjoins relationships. The regression
test was updated previously, but documentation is lagging.

21 years agoAdjust libpq to avoid deadlock when both client and server want to send
commit | commitdiff | tree
Tom Lane [2003年10月19日 21:36:41 +0000 (21:36 +0000)]
Adjust libpq to avoid deadlock when both client and server want to send
data, and both have filled the transmission buffers. One scenario where
this can happen was illustrated here:
http://archives.postgresql.org/pgsql-hackers/2003-04/msg00979.php

21 years agoCheck for both Informix modes when parsing include files.
commit | commitdiff | tree
Michael Meskes [2003年10月19日 13:22:33 +0000 (13:22 +0000)]
Check for both Informix modes when parsing include files.

21 years agoCleanup on --help-config: Now called --describe-config, no further options,
commit | commitdiff | tree
Peter Eisentraut [2003年10月18日 22:59:09 +0000 (22:59 +0000)]
Cleanup on --help-config: Now called --describe-config, no further options,
machine readable, without headers, not sorted. Parameter descriptions
adjusted to fit first sentence + rest convention.

21 years agoFurther work on information_schema. _pg_keyissubset() wasn't quite
commit | commitdiff | tree
Tom Lane [2003年10月18日 19:06:10 +0000 (19:06 +0000)]
Further work on information_schema. _pg_keyissubset() wasn't quite
fully search-path-proof yet; also, element_types view did not work for
parameters and result types of functions, because it didn't generate
the object_name for the function the same way the data_type_privileges
view does. While at it, centralize dependencies on INDEX_MAX_KEYS/
FUNC_MAX_ARGS into a function returning setof int, so that it will be
easier to fix information_schema for nonstandard values of these
parameters.

21 years agoRepair interaction between IN-join processing and subselect pullup that
commit | commitdiff | tree
Tom Lane [2003年10月18日 16:52:15 +0000 (16:52 +0000)]
Repair interaction between IN-join processing and subselect pullup that
I inadvertently broke a few days ago (per report from Sean Thomas).
Add regression test case to try to catch any similar breakage in future.

21 years agoSimplify loop test to avoid bug in AIX compiler, per Andreas.
commit | commitdiff | tree
Tom Lane [2003年10月18日 15:38:06 +0000 (15:38 +0000)]
Simplify loop test to avoid bug in AIX compiler, per Andreas.

21 years agoInformation schema fixes:
commit | commitdiff | tree
Peter Eisentraut [2003年10月18日 12:53:35 +0000 (12:53 +0000)]
Information schema fixes:
Use pg_get_constraintdef instead of pg_constraint.consrc
Use UNION ALL instread of UNION
Make use of regclass type for getting OID of system catalogs
Add schema qualifications where necessary
Fix typos

21 years agoMust free the pgParameterStatus chain in freePGconn(). My fault,
commit | commitdiff | tree
Tom Lane [2003年10月18日 05:02:06 +0000 (05:02 +0000)]
Must free the pgParameterStatus chain in freePGconn(). My fault,
well spotted by Neil Conway.

21 years agoDocument all the system views created by initdb (several of these were
commit | commitdiff | tree
Tom Lane [2003年10月17日 22:38:20 +0000 (22:38 +0000)]
Document all the system views created by initdb (several of these were
never documented anywhere, sigh). Centralize the detailed documentation
of system views into catalogs.sgml, and provide cross-references.

21 years agoAdd a listing of our SQLSTATE error codes to the documentation.
commit | commitdiff | tree
Tom Lane [2003年10月17日 18:57:01 +0000 (18:57 +0000)]
Add a listing of our SQLSTATE error codes to the documentation.
Link to it from some appropriate places.

21 years agoFix busted markup.
commit | commitdiff | tree
Tom Lane [2003年10月17日 18:29:55 +0000 (18:29 +0000)]
Fix busted markup.

21 years agoFix elog tab-insertion code to insert tabs only where wanted.
commit | commitdiff | tree
Tom Lane [2003年10月17日 16:49:03 +0000 (16:49 +0000)]
Fix elog tab-insertion code to insert tabs only where wanted.

21 years agoRemove automatic '()' in other branch of UNION as well.
commit | commitdiff | tree
Peter Eisentraut [2003年10月17日 11:52:06 +0000 (11:52 +0000)]
Remove automatic '()' in other branch of UNION as well.

21 years agoAdjust display of actual runtimes in EXPLAIN output to use three fractional
commit | commitdiff | tree
Tom Lane [2003年10月17日 01:14:26 +0000 (01:14 +0000)]
Adjust display of actual runtimes in EXPLAIN output to use three fractional
digits, and label it 'ms' not 'msec', for consistency with psql's \timing
display. Per recent discussions.

21 years agoUse pg_get_constraintdef() rather than pg_constraint.consrc; this is
commit | commitdiff | tree
Tom Lane [2003年10月17日 00:57:04 +0000 (00:57 +0000)]
Use pg_get_constraintdef() rather than pg_constraint.consrc; this is
a portion of a patch recently submitted by Christopher Kings-Lynne.
Applied by agreement that this is a bug fix.

21 years agoAdd note deprecating use of consrc.
commit | commitdiff | tree
Tom Lane [2003年10月17日 00:55:17 +0000 (00:55 +0000)]
Add note deprecating use of consrc.

21 years agoFix bugs in referential_constraints view.
commit | commitdiff | tree
Peter Eisentraut [2003年10月16日 23:46:17 +0000 (23:46 +0000)]
Fix bugs in referential_constraints view.

21 years agoThere should not be an automatic '()' after a function name when
commit | commitdiff | tree
Peter Eisentraut [2003年10月16日 23:45:29 +0000 (23:45 +0000)]
There should not be an automatic '()' after a function name when
tab-completing.

21 years agoSet attstattarget to -1 for all system catalog columns. All but a few
commit | commitdiff | tree
Tom Lane [2003年10月16日 22:52:22 +0000 (22:52 +0000)]
Set attstattarget to -1 for all system catalog columns. All but a few
of the entries used to be zero, which I think I had deliberately done in
the name of saving cycles during ANALYZE, but it was really a rather
foolish decision. Some of the more complex views in information_schema
were getting really bad plans for lack of statistics on the columns they
were joining over.

I'm not forcing an initdb for this, but I think there will be one soon
anyway to repair some bugs in the information_schema views.

21 years agoAvoid division by zero in estimate_num_groups() when table has no rows.
commit | commitdiff | tree
Tom Lane [2003年10月16日 21:37:54 +0000 (21:37 +0000)]
Avoid division by zero in estimate_num_groups() when table has no rows.

21 years agoEnsure that all places that are complaining about exhaustion of shared
commit | commitdiff | tree
Tom Lane [2003年10月16日 20:59:35 +0000 (20:59 +0000)]
Ensure that all places that are complaining about exhaustion of shared
memory say 'out of shared memory'; some were doing that and some just
said 'out of memory'. Also add a HINT about increasing max_locks_per_transaction
where relevant, per suggestion from Sean Chittenden. (The former change
does not break the strings freeze; the latter does, but I think it's
worth doing anyway.)

21 years agoCause tab completion to do something moderately reasonable with mixed-case
commit | commitdiff | tree
Tom Lane [2003年10月16日 20:03:09 +0000 (20:03 +0000)]
Cause tab completion to do something moderately reasonable with mixed-case
identifiers --- it will now complete these correctly with double quoting.
Fix a few other issues in passing.

21 years agoAdd mention of SIGHUP on the postmaster manual page.
commit | commitdiff | tree
Bruce Momjian [2003年10月16日 17:38:01 +0000 (17:38 +0000)]
Add mention of SIGHUP on the postmaster manual page.

21 years agoFix bad interaction between NOTIFY processing and V3 extended query
commit | commitdiff | tree
Tom Lane [2003年10月16日 16:50:41 +0000 (16:50 +0000)]
Fix bad interaction between NOTIFY processing and V3 extended query
protocol, per report from Igor Shevchenko. NOTIFY thought it could
do its thing if transaction blockState is TBLOCK_DEFAULT, but in
reality it had better check the low-level transaction state is
TRANS_DEFAULT as well. Formerly it was not possible to wait for the
client in a state where the first is true and the second is not ...
but now we can have such a state. Minor cleanup in StartTransaction()
as well.

21 years agoMinor copy-editing.
commit | commitdiff | tree
Tom Lane [2003年10月16日 04:52:21 +0000 (04:52 +0000)]
Minor copy-editing.

21 years agoAdd:
commit | commitdiff | tree
Bruce Momjian [2003年10月16日 04:12:53 +0000 (04:12 +0000)]
Add:

> * Allow pg_dump to dump CREATE CONVERSION (Christopher)

21 years agoFix SGML markup.
commit | commitdiff | tree
Bruce Momjian [2003年10月16日 04:11:53 +0000 (04:11 +0000)]
Fix SGML markup.

Update HISTORY file.

21 years agoThis patch adds another item to the "migration to 7.4" list in the
commit | commitdiff | tree
Bruce Momjian [2003年10月16日 03:55:31 +0000 (03:55 +0000)]
This patch adds another item to the "migration to 7.4" list in the
HISTORY file, and attributes the shared-buffer-alignment change to
Manfred Spraul.

Neil Conway

21 years agoI have run pg_autovacuum on AIX, so that can, at least loosely, be
commit | commitdiff | tree
Bruce Momjian [2003年10月16日 03:47:28 +0000 (03:47 +0000)]
I have run pg_autovacuum on AIX, so that can, at least loosely, be
considered "tested."

And I have turned all of the 7.4 HISTORY material into DocBook for
release.sgml

Christopher Browne

21 years agoCause the default CFLAGS to be -O2 -fno-strict-aliasing when using gcc,
commit | commitdiff | tree
Tom Lane [2003年10月15日 22:23:56 +0000 (22:23 +0000)]
Cause the default CFLAGS to be -O2 -fno-strict-aliasing when using gcc,
per recent pghackers discussions. Also ensure that explicitly setting
CFLAGS in the configure environment will be honored.

21 years agoTranslation updates
commit | commitdiff | tree
Peter Eisentraut [2003年10月15日 10:00:20 +0000 (10:00 +0000)]
Translation updates

21 years agoNew translation
commit | commitdiff | tree
Peter Eisentraut [2003年10月15日 09:49:07 +0000 (09:49 +0000)]
New translation

21 years agoTranslation update
commit | commitdiff | tree
Peter Eisentraut [2003年10月15日 09:45:34 +0000 (09:45 +0000)]
Translation update

21 years agoNew translation
commit | commitdiff | tree
Peter Eisentraut [2003年10月15日 09:39:04 +0000 (09:39 +0000)]
New translation

21 years agoUse PQescapeString to ensure that tab-completion queries are not messed
commit | commitdiff | tree
Tom Lane [2003年10月14日 22:47:12 +0000 (22:47 +0000)]
Use PQescapeString to ensure that tab-completion queries are not messed
up by quotes or backslashes in words that are being matched to database
names (per gripe from Ian Barwick, though I didn't use his patch).
Also fix possible memory leakage if _complete_with_query isn't run to
completion (not clear if that can happen or not, but be safe).

21 years agoRemove void* in MemSet until we understand the gcc 3.3.1 problem better.
commit | commitdiff | tree
Bruce Momjian [2003年10月14日 19:08:00 +0000 (19:08 +0000)]
Remove void* in MemSet until we understand the gcc 3.3.1 problem better.

21 years agoAdd compile -O flag only for non-debug mode, per Tom
commit | commitdiff | tree
Bruce Momjian [2003年10月14日 00:48:09 +0000 (00:48 +0000)]
Add compile -O flag only for non-debug mode, per Tom

21 years agopull_up_subqueries() should copy the subquery before starting to modify
commit | commitdiff | tree
Tom Lane [2003年10月13日 23:48:16 +0000 (23:48 +0000)]
pull_up_subqueries() should copy the subquery before starting to modify
it. Not sure why I'd thought it would be a good idea to do differently
way back when, but Greg Stark exposed the folly of doing so ...

21 years agoBack out makeNode() patch to fix gcc 3.3.1 warning.
commit | commitdiff | tree
Bruce Momjian [2003年10月13日 22:47:15 +0000 (22:47 +0000)]
Back out makeNode() patch to fix gcc 3.3.1 warning.

21 years agoRemove registration message, after discussion concluded that it was of
commit | commitdiff | tree
Peter Eisentraut [2003年10月13日 21:39:41 +0000 (21:39 +0000)]
Remove registration message, after discussion concluded that it was of
little use.

21 years agoTranslation update
commit | commitdiff | tree
Peter Eisentraut [2003年10月13日 21:38:37 +0000 (21:38 +0000)]
Translation update

21 years agoDetermine max_connections first, then see how large shared_buffers can
commit | commitdiff | tree
Tom Lane [2003年10月13日 21:06:44 +0000 (21:06 +0000)]
Determine max_connections first, then see how large shared_buffers can
be made, to avoid corner cases where max_connections ends up unreasonably
small because shared_buffers is hogging too much shmem space. Per pghackers
discussion about a week ago. Also, fix the copy-newlines problem in a
more robust way, by using COPY FROM filename instead of COPY FROM STDIN;
per a suggestion from Peter.

21 years agoAdjust setRelhassubclassInRelation() to not perform actual heap_update
commit | commitdiff | tree
Tom Lane [2003年10月13日 20:02:52 +0000 (20:02 +0000)]
Adjust setRelhassubclassInRelation() to not perform actual heap_update
when the pg_class.relhassubclass value is already correct. This should
avoid most cases of the 'tuple concurrently updated' problem that
Robert Creager recently complained about. Also remove a bunch of dead
code in StoreCatalogInheritance() --- it was still computing the complete
list of direct and indirect inheritance ancestors, though that list has
not been needed since we got rid of the pg_ipl catalog.

22 years agoUse makeNode() to allocate structures that have to be cast to Node *,
commit | commitdiff | tree
Bruce Momjian [2003年10月12日 23:19:21 +0000 (23:19 +0000)]
Use makeNode() to allocate structures that have to be cast to Node *,
rather than allocating them on the stack.

Fixes complaint from gcc 3.3.1.

22 years agoNew translation
commit | commitdiff | tree
Peter Eisentraut [2003年10月12日 19:16:36 +0000 (19:16 +0000)]
New translation

22 years agoAdded missing "commit" in test case.
commit | commitdiff | tree
Michael Meskes [2003年10月12日 15:19:46 +0000 (15:19 +0000)]
Added missing "commit" in test case.

22 years agoAdd void * cast to MemSet to silence compiler, and add comment that we
commit | commitdiff | tree
Bruce Momjian [2003年10月11日 19:53:45 +0000 (19:53 +0000)]
Add void * cast to MemSet to silence compiler, and add comment that we
already check for alignment.

22 years agoBack out -fstrict-aliasing void* casting.
commit | commitdiff | tree
Bruce Momjian [2003年10月11日 18:04:26 +0000 (18:04 +0000)]
Back out -fstrict-aliasing void* casting.

22 years agoTranslation updates
commit | commitdiff | tree
Peter Eisentraut [2003年10月11日 17:11:02 +0000 (17:11 +0000)]
Translation updates

22 years agoThis patch will stop gcc from issuing warnings about type-punned objects
commit | commitdiff | tree
Bruce Momjian [2003年10月11日 16:30:55 +0000 (16:30 +0000)]
This patch will stop gcc from issuing warnings about type-punned objects
when -fstrict-aliasing is turned on, as it is in the latest gcc when you
use -O2

Andrew Dunstan

22 years agoUpdate max existing db size to 32tb.
commit | commitdiff | tree
Bruce Momjian [2003年10月10日 21:27:13 +0000 (21:27 +0000)]
Update max existing db size to 32tb.

22 years agoFix core dump on root starting pg_autovacuum.
commit | commitdiff | tree
Bruce Momjian [2003年10月10日 19:26:25 +0000 (19:26 +0000)]
Fix core dump on root starting pg_autovacuum.

Change conditionals to be more constent with our code

if (const == var) => if (var == const).

22 years agoTranslation updates
commit | commitdiff | tree
Peter Eisentraut [2003年10月10日 08:01:44 +0000 (08:01 +0000)]
Translation updates

22 years agoRename __arm__/__arm__ to __arm__/__arm, found by Neil Conway
commit | commitdiff | tree
Bruce Momjian [2003年10月10日 03:58:57 +0000 (03:58 +0000)]
Rename __arm__/__arm__ to __arm__/__arm, found by Neil Conway

22 years agoAdd NULL regression tests.
commit | commitdiff | tree
Bruce Momjian [2003年10月10日 03:46:51 +0000 (03:46 +0000)]
Add NULL regression tests.

Manfred Koizar

22 years agoChange Win32 rename/unlink timeout to 3 seconds.
commit | commitdiff | tree
Bruce Momjian [2003年10月10日 03:27:58 +0000 (03:27 +0000)]
Change Win32 rename/unlink timeout to 3 seconds.

22 years agoUpdate Russian FAQ.
commit | commitdiff | tree
Bruce Momjian [2003年10月10日 02:52:12 +0000 (02:52 +0000)]
Update Russian FAQ.

Viktor Vislobokov

22 years agoAdd:
commit | commitdiff | tree
Bruce Momjian [2003年10月10日 02:42:09 +0000 (02:42 +0000)]
Add:

> * Prevent libpq's PQfnumber() from lowercasing the column name
572d572
< * Vadim is Vadim B. Mikheev <vadim4o@email.com> of Sector Data

22 years ago> That's a fairly useless place to put it, though, since someone would
commit | commitdiff | tree
Bruce Momjian [2003年10月10日 02:08:42 +0000 (02:08 +0000)]
> That's a fairly useless place to put it, though, since someone would
> only think to look at sort_mem if they already had a clue. It should
> be mentioned under bulk data load (in performance tips chapter)

Attached is a doc patch that does this. The way I've worded it may not
be the best, though.

Neil Conway

22 years agoAdd count(*) TODO detail.
commit | commitdiff | tree
Bruce Momjian [2003年10月10日 01:53:06 +0000 (01:53 +0000)]
Add count(*) TODO detail.

22 years agoAdd TODO.detail for count(*):
commit | commitdiff | tree
Bruce Momjian [2003年10月10日 01:52:15 +0000 (01:52 +0000)]
Add TODO.detail for count(*):

> to allow fast COUNT(*) queries with no WHERE clause(?) [count]

22 years agoAllow pg_id to compile on Win32.
commit | commitdiff | tree
Bruce Momjian [2003年10月10日 01:34:51 +0000 (01:34 +0000)]
Allow pg_id to compile on Win32.

Andrew Dunstan

22 years agoAdd:
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 23:41:22 +0000 (23:41 +0000)]
Add:

> o Allow PL/pgSQL to handle %TYPE arrays, e.g. tab.col%TYPE[]

22 years agoRemove -pipe from compiles.
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 22:55:46 +0000 (22:55 +0000)]
Remove -pipe from compiles.

22 years agoAdd:
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 19:36:27 +0000 (19:36 +0000)]
Add:

> * Have VACUUM FULL use REINDEX rather than index vacuum

22 years agoAbout section 8.5.1.5. ("Special Values"):
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 19:13:48 +0000 (19:13 +0000)]
About section 8.5.1.5. ("Special Values"):

I suggest adding LOCALTIMESTAMP and LOCALTIME to the first paragraph.
Maybe it should be phrased as:

The following SQL-compatible functions can be used to obtain
current datetime-related values: CURRENT_DATE, CURRENT_TIME,
CURRENT_TIMESTAMP, LOCALTIME and LOCALTIMESTAMP.
(See Section 9.8.4.)

Troels Arvin

22 years agoMake sure that -- comments extend to the end of the line. This fixes the
commit | commitdiff | tree
Peter Eisentraut [Thu, 9 Oct 2003 19:13:23 +0000 (19:13 +0000)]
Make sure that -- comments extend to the end of the line. This fixes the
misscanning of this construct:

SELECT ''hello world''
-- SELECT ''goodbye world''
::text;

22 years agoSome updates
commit | commitdiff | tree
Peter Eisentraut [Thu, 9 Oct 2003 19:11:03 +0000 (19:11 +0000)]
Some updates

22 years agoAdd mention of logrotate for syslog, from Robert Treat
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 19:05:09 +0000 (19:05 +0000)]
Add mention of logrotate for syslog, from Robert Treat

22 years agoUpdate Solaris FAQ to mention -fast.
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 17:11:13 +0000 (17:11 +0000)]
Update Solaris FAQ to mention -fast.

22 years agoRemove -pipe on Linux, per reports from Peter.
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 16:52:45 +0000 (16:52 +0000)]
Remove -pipe on Linux, per reports from Peter.

22 years agoAdd -pipe compile for Linux.
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 14:47:59 +0000 (14:47 +0000)]
Add -pipe compile for Linux.

22 years agoMake template CFLAGS handling consistent.
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 14:40:37 +0000 (14:40 +0000)]
Make template CFLAGS handling consistent.

22 years agoSomeone report me small bug in contrib/pg_dumplo today. It's problem
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 13:38:05 +0000 (13:38 +0000)]
Someone report me small bug in contrib/pg_dumplo today. It's problem
with a little dirty snprintf() usage which I used some years ago:

snprintf(path, BUFSIZ, "%s/lo_dump.index", path);

Karel Zak

22 years agoRe-add -pipe compile flags for bsd's.
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 04:34:02 +0000 (04:34 +0000)]
Re-add -pipe compile flags for bsd's.

22 years agoUpdate:
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 04:29:40 +0000 (04:29 +0000)]
Update:

> * COMMENT ON [ CAST | CONVERSION | OPERATOR CLASS | LARGE OBJECT | LANGUAGE ]
> (Christopher)

22 years agoThis centralizes the optimization defaults into configure.in, rather
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 03:20:34 +0000 (03:20 +0000)]
This centralizes the optimization defaults into configure.in, rather
than having CFLAGS= in the template files.

It uses -O2 for gcc (generated by autoconf), and -O for non-gcc, unless
the template overrides it.

22 years agoAdd:
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 03:17:24 +0000 (03:17 +0000)]
Add:

> * COMMENT ON [ CAST | CONVERSION | OPERATOR CLASS | LARGE OBJECT ] (Christopher)

22 years agoChange "query:" to "statement:".
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 02:40:18 +0000 (02:40 +0000)]
Change "query:" to "statement:".

Have log_duration print when log_min_duration_statement prints.

22 years agoAdd quotes to CFLAG define.
commit | commitdiff | tree
Bruce Momjian [Thu, 9 Oct 2003 02:37:09 +0000 (02:37 +0000)]
Add quotes to CFLAG define.

22 years agoProtected access to variable m_preparedCount via synchronized
commit | commitdiff | tree
Jan Wieck [Thu, 9 Oct 2003 01:17:07 +0000 (01:17 +0000)]
Protected access to variable m_preparedCount via synchronized
function to prevent multiple threads using automatic cursors on
the same connection from stomping over each others cursor.

Jan

22 years agoAdd:
commit | commitdiff | tree
Bruce Momjian [Wed, 8 Oct 2003 22:29:58 +0000 (22:29 +0000)]
Add:
<
346a346
> * Remove CREATE CONSTRAINT TRIGGER

22 years agoAdd 2-phase info, add Win32 URL:
commit | commitdiff | tree
Bruce Momjian [Wed, 8 Oct 2003 21:44:06 +0000 (21:44 +0000)]
Add 2-phase info, add Win32 URL:

< o Sample implementation in contrib/rserv
29c28,29
< * Create native Win32 port [win32]
> * Create native Win32 port, http://momjian.postgresql.org/main/writings/pgsql/win32.html
>
367c367,368
< * Two-phase commit to implement distributed transactions
> * Add two-phase commit to all distributed transactions with
> offline/readonly server status or administrator notification for failure

22 years agoNew translations
commit | commitdiff | tree
Peter Eisentraut [Wed, 8 Oct 2003 20:35:39 +0000 (20:35 +0000)]
New translations

next
This is the main PostgreSQL git repository.
RSS Atom

AltStyle によって変換されたページ (->オリジナル) /