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 getpwuid_r call:
commit | commitdiff | tree
Bruce Momjian [2004年3月23日 02:03:55 +0000 (02:03 +0000)]
Fix getpwuid_r call:

*result = getpwuid_r(uid, resultbuf, buffer, buflen);

21 years agoReplace the virtual_host and tcpip_socket parameters with a unified
commit | commitdiff | tree
Tom Lane [2004年3月23日 01:23:48 +0000 (01:23 +0000)]
Replace the virtual_host and tcpip_socket parameters with a unified
listen_addresses parameter, as per recent discussion. The default behavior
is now to listen on localhost, which eliminates the need for the -i
postmaster switch in many scenarios.

Andrew Dunstan

21 years agoBefore deciding we can use a socket for statistics collection, test to
commit | commitdiff | tree
Tom Lane [2004年3月22日 23:55:29 +0000 (23:55 +0000)]
Before deciding we can use a socket for statistics collection, test to
ensure that it actually passes data. This catches cases such as a kernel
packet filter rule that makes the socket useless.

Andrew Dunstan

21 years agoAdd missing extern for optind.
commit | commitdiff | tree
Tom Lane [2004年3月22日 16:46:28 +0000 (16:46 +0000)]
Add missing extern for optind.

21 years agoClean up rather poor description of the difference between INHERITS and
commit | commitdiff | tree
Tom Lane [2004年3月22日 16:18:50 +0000 (16:18 +0000)]
Clean up rather poor description of the difference between INHERITS and
LIKE. Per gripe from Patrick Samson.

21 years agoStandardize output buffer size and display format for strftime;
commit | commitdiff | tree
Tom Lane [2004年3月22日 15:34:22 +0000 (15:34 +0000)]
Standardize output buffer size and display format for strftime;
followup to complaint from Korean User's Group.

21 years agoDisasble threads on unixware until other platforms report a problem.
commit | commitdiff | tree
Bruce Momjian [2004年3月22日 14:53:43 +0000 (14:53 +0000)]
Disasble threads on unixware until other platforms report a problem.

21 years agoIncrease xlog str_time() static string variable, per Korean User's Group.
commit | commitdiff | tree
Bruce Momjian [2004年3月22日 04:16:57 +0000 (04:16 +0000)]
Increase xlog str_time() static string variable, per Korean User's Group.

21 years agoIn working through a pg_autovacuum problem with Joe Conway (which turned
commit | commitdiff | tree
Bruce Momjian [2004年3月22日 03:57:08 +0000 (03:57 +0000)]
In working through a pg_autovacuum problem with Joe Conway (which turned
out to be the same problem reported by Cott Lang which the previous
patch resolved) a new bug was uncovered when running with a debug level
of greater than 1.

This patch resolves this new found bug and fixes some of the other
debugging output to be more consistent.

Please apply to both HEAD and the 7.4 branch.

Matthew T. O'Connor

21 years agoI just noticed that \dp outputs "Table" to indicate relations (tables,
commit | commitdiff | tree
Bruce Momjian [2004年3月22日 03:38:24 +0000 (03:38 +0000)]
I just noticed that \dp outputs "Table" to indicate relations (tables,
sequences and views). This patch allows it to handle views and
sequences.

Euler Taveira de Oliveira

21 years agoAdds DLLIMPORT modifier to check_function_bodies
commit | commitdiff | tree
Bruce Momjian [2004年3月22日 03:15:33 +0000 (03:15 +0000)]
Adds DLLIMPORT modifier to check_function_bodies

Claudio Natoli

21 years agoAdd mention of "-D_POSIX_PTHREAD_SEMANTICS" enabling 5-arg getpwuid_r().
commit | commitdiff | tree
Bruce Momjian [2004年3月22日 01:50:31 +0000 (01:50 +0000)]
Add mention of "-D_POSIX_PTHREAD_SEMANTICS" enabling 5-arg getpwuid_r().

21 years agoAdd timestamp-versus-timestamptz cross-type comparison functions,
commit | commitdiff | tree
Tom Lane [2004年3月22日 01:38:18 +0000 (01:38 +0000)]
Add timestamp-versus-timestamptz cross-type comparison functions,
flesh out the index operator classes to include these. In passing,
fix erroneous volatility marking of ACL functions.

21 years agoRevise syntax-error reporting behavior to give pleasant results for
commit | commitdiff | tree
Tom Lane [2004年3月21日 22:29:11 +0000 (22:29 +0000)]
Revise syntax-error reporting behavior to give pleasant results for
errors in internally-generated queries, such as those submitted by
plpgsql functions. Per recent discussions with Fabien Coelho.

21 years agoTranslation updates
commit | commitdiff | tree
Dennis Bjorklund [2004年3月21日 12:19:36 +0000 (12:19 +0000)]
Translation updates

21 years agoTranslation updates
commit | commitdiff | tree
Dennis Bjorklund [2004年3月21日 09:22:18 +0000 (09:22 +0000)]
Translation updates

21 years agoRewrite pg_dump's comment-dumping code to pull over all the comments
commit | commitdiff | tree
Tom Lane [2004年3月20日 20:09:45 +0000 (20:09 +0000)]
Rewrite pg_dump's comment-dumping code to pull over all the comments
in one query, rather than making a separate query for each object that
could have a comment. This costs relatively little space (a few tens of
K typically) and saves substantial time in databases with many objects.
I find it reduces the runtime of 'pg_dump -s regression' by about a
third.

21 years agoRemove suggestiong for using test for wal_sync_method.
commit | commitdiff | tree
Bruce Momjian [2004年3月20日 16:18:41 +0000 (16:18 +0000)]
Remove suggestiong for using test for wal_sync_method.

21 years agoAlways test getpwuid_r because HEAD always uses *_r if it finds them.
commit | commitdiff | tree
Bruce Momjian [2004年3月20日 16:11:22 +0000 (16:11 +0000)]
Always test getpwuid_r because HEAD always uses *_r if it finds them.
Not an issue for 7.4.X.

21 years agoHandle draft version of getpwuid_r() that accepts only four arguments.
commit | commitdiff | tree
Bruce Momjian [2004年3月20日 15:39:27 +0000 (15:39 +0000)]
Handle draft version of getpwuid_r() that accepts only four arguments.

Backpatch to 7.4.X. Required for Solaris 7 & 8.

21 years agoAdd a usage example for has_function_privilege().
commit | commitdiff | tree
Tom Lane [2004年3月19日 19:13:26 +0000 (19:13 +0000)]
Add a usage example for has_function_privilege().

21 years agoCreate a validator for plpgsql, so that some minimal syntax checking
commit | commitdiff | tree
Tom Lane [2004年3月19日 18:58:07 +0000 (18:58 +0000)]
Create a validator for plpgsql, so that some minimal syntax checking
is done at creation time for plpgsql functions. Improve createlang and
droplang to support adding/dropping validators for PLs. Initial steps
towards producing a syntax error position from plpgsql syntax errors
(this part is a work in progress, and will change depending on outcome
of current discussions).

21 years agoCode review for log_line_prefix patch. Cooperate with StringInfo instead
commit | commitdiff | tree
Tom Lane [2004年3月19日 02:23:59 +0000 (02:23 +0000)]
Code review for log_line_prefix patch. Cooperate with StringInfo instead
of fighting it, avoid hard-wired (and wrong) assumption about max length
of prefix, cause %l to actually work as documented, don't compute data
we may not need.

21 years agoMake test_fsync use optimizer flag.
commit | commitdiff | tree
Bruce Momjian [2004年3月18日 23:27:29 +0000 (23:27 +0000)]
Make test_fsync use optimizer flag.

21 years agoFix log_executor_stats if() test.
commit | commitdiff | tree
Bruce Momjian [2004年3月18日 23:26:17 +0000 (23:26 +0000)]
Fix log_executor_stats if() test.

21 years agoAdd Unixware thread support from Larry Rosenman.
commit | commitdiff | tree
Bruce Momjian [2004年3月18日 23:23:58 +0000 (23:23 +0000)]
Add Unixware thread support from Larry Rosenman.

21 years agoAllocate 16mb file for testing.
commit | commitdiff | tree
Bruce Momjian [2004年3月18日 20:09:33 +0000 (20:09 +0000)]
Allocate 16mb file for testing.

21 years agoHave program default to 1000 loops, and add file name and loop option.
commit | commitdiff | tree
Bruce Momjian [2004年3月18日 19:54:00 +0000 (19:54 +0000)]
Have program default to 1000 loops, and add file name and loop option.

Make open/close loop testings the same. Add descriptions for certain tests.

21 years agoAdd comment about using this testing for wal_sync_method.
commit | commitdiff | tree
Bruce Momjian [2004年3月18日 17:23:56 +0000 (17:23 +0000)]
Add comment about using this testing for wal_sync_method.

21 years agoAdd fsync tests:
commit | commitdiff | tree
Bruce Momjian [2004年3月18日 15:26:27 +0000 (15:26 +0000)]
Add fsync tests:

Compare fsync before and after write's close:
Compare one o_sync write to two:
Compare file sync methods with one 8k write:
Compare file sync methods with 2 8k writes:

21 years agoMention which fsync methods are unavailable.
commit | commitdiff | tree
Bruce Momjian [2004年3月18日 14:02:58 +0000 (14:02 +0000)]
Mention which fsync methods are unavailable.

21 years agoAdd permission mode to opens().
commit | commitdiff | tree
Bruce Momjian [2004年3月18日 04:11:41 +0000 (04:11 +0000)]
Add permission mode to opens().

21 years agoAdd missing include
commit | commitdiff | tree
Bruce Momjian [2004年3月18日 04:04:36 +0000 (04:04 +0000)]
Add missing include

21 years agoRemove acccidental object/binary files.
commit | commitdiff | tree
Bruce Momjian [2004年3月18日 03:57:58 +0000 (03:57 +0000)]
Remove acccidental object/binary files.

21 years agoAdd fsync test program. It tests fsync to see if times for fsync are the
commit | commitdiff | tree
Bruce Momjian [2004年3月18日 03:56:59 +0000 (03:56 +0000)]
Add fsync test program. It tests fsync to see if times for fsync are the
same when done on the write() ile descriptor and a new descriptor.

it also times various fsync methods.

21 years agoDone:
commit | commitdiff | tree
Bruce Momjian [2004年3月17日 22:30:10 +0000 (22:30 +0000)]
Done:

> * -Order duplicate index entries on creation by tid for faster heap lookups

21 years agoDuring btree index build, sort equal-keyed tuples according to their
commit | commitdiff | tree
Tom Lane [2004年3月17日 22:24:58 +0000 (22:24 +0000)]
During btree index build, sort equal-keyed tuples according to their
TID (heap position). This doesn't do anything to the validity of the
finished index, but by pretending to qsort() that there are no really
equal keys in the sort, we can avoid performance problems with qsort
implementations that have trouble with large numbers of equal keys.
Patch from Manfred Koizar.

21 years agoReimplement CASE val WHEN compval1 THEN ... WHEN compval2 THEN ... END
commit | commitdiff | tree
Tom Lane [2004年3月17日 20:48:43 +0000 (20:48 +0000)]
Reimplement CASE val WHEN compval1 THEN ... WHEN compval2 THEN ... END
so that the 'val' is computed only once, per recent discussion. The
speedup is not much when 'val' is just a simple variable, but could be
significant for larger expressions. More importantly this avoids issues
with multiple evaluations of a volatile 'val', and it allows the CASE
expression to be reverse-listed in its original form by ruleutils.c.

21 years agoModify:
commit | commitdiff | tree
Bruce Momjian [2004年3月17日 17:40:44 +0000 (17:40 +0000)]
Modify:

< * Order duplicate index entries by tid for faster heap lookups
> * Order duplicate index entries on creation by tid for faster heap lookups

21 years agoDocument SPI_push() and SPI_pop().
commit | commitdiff | tree
Bruce Momjian [2004年3月17日 01:05:10 +0000 (01:05 +0000)]
Document SPI_push() and SPI_pop().

21 years agoReplace the switching function ExecEvalExpr() with a macro that jumps
commit | commitdiff | tree
Tom Lane [2004年3月17日 01:02:24 +0000 (01:02 +0000)]
Replace the switching function ExecEvalExpr() with a macro that jumps
directly to the appropriate per-node execution function, using a function
pointer stored by ExecInitExpr. This speeds things up by eliminating one
level of function call. The function-pointer technique also enables further
small improvements such as only making one-time tests once (and then
changing the function pointer). Overall this seems to gain about 10%
on evaluation of simple expressions, which isn't earthshaking but seems
a worthwhile gain for a relatively small hack. Per recent discussion
on pghackers.

21 years agoAdd:
commit | commitdiff | tree
Bruce Momjian [2004年3月16日 16:13:38 +0000 (16:13 +0000)]
Add:

> * Allow pg_dumpall to use non-text output formats
>

21 years agoRemove double-rename used by Win32 on busy files. Not needed anymore.
commit | commitdiff | tree
Bruce Momjian [2004年3月16日 05:05:58 +0000 (05:05 +0000)]
Remove double-rename used by Win32 on busy files. Not needed anymore.

21 years agolog_statement was not removed by the previous patch. It only updated
commit | commitdiff | tree
Bruce Momjian [2004年3月15日 17:57:51 +0000 (17:57 +0000)]
log_statement was not removed by the previous patch. It only updated
its description.

21 years agoThe "cvs add" of test_thread_implicit.pgc seems to have been missed,
commit | commitdiff | tree
Bruce Momjian [2004年3月15日 16:27:43 +0000 (16:27 +0000)]
The "cvs add" of test_thread_implicit.pgc seems to have been missed,
i've attached this again.

Additionally I include a small patch to remove mutex locking when a
DEFAULT/NULL connection is being retrieved. This is consistent with
libpq.

Lee Kindness

21 years agoCheck for EOF on pipe differs under win32, as it is based on a socket
commit | commitdiff | tree
Bruce Momjian [2004年3月15日 16:21:37 +0000 (16:21 +0000)]
Check for EOF on pipe differs under win32, as it is based on a socket
implementation.

Claudio Natoli

21 years agofloat8-small-is-zero and float8-exp-three-digits will likely need
commit | commitdiff | tree
Bruce Momjian [2004年3月15日 16:20:52 +0000 (16:20 +0000)]
float8-small-is-zero and float8-exp-three-digits will likely need
similar changes.

Claudio Natoli

21 years ago* postmaster.c: cleanup pmdaemonize under win32; missed failure message
commit | commitdiff | tree
Bruce Momjian [2004年3月15日 16:18:43 +0000 (16:18 +0000)]
* postc: cleanup pmdaemonize under win32; missed failure message
in CreateOptsFile
* s_lock.c: minor comment fix
* findbe.c: variables not used under win32 moved within #ifndef WIN32
case

Claudio Natoli

21 years agoHandle OID's and unsigned values better in pg_autovacuum.
commit | commitdiff | tree
Bruce Momjian [2004年3月15日 16:17:30 +0000 (16:17 +0000)]
Handle OID's and unsigned values better in pg_autovacuum.

Matthew T. O'Connor

21 years agoWindows uses codepages rather than the environment, so we work around
commit | commitdiff | tree
Bruce Momjian [2004年3月15日 16:14:26 +0000 (16:14 +0000)]
Windows uses codepages rather than the environment, so we work around
that by querying the environment explicitly first for LC_COLLATE and
LC_CTYPE. We have to do this because initdb passes those values in the
environment. If there is nothing there we fall back on the codepage.

Andrew Dunstan

21 years agoUpdate random regression test text to be clearer.
commit | commitdiff | tree
Bruce Momjian [2004年3月15日 16:11:42 +0000 (16:11 +0000)]
Update random regression test text to be clearer.

21 years agoUpdate random test description because it fails less frequently now.
commit | commitdiff | tree
Bruce Momjian [2004年3月15日 16:06:43 +0000 (16:06 +0000)]
Update random test description because it fails less frequently now.

21 years agoRemove GUC log_statement, log_pid, log_timestamp, log_source_port.
commit | commitdiff | tree
Bruce Momjian [2004年3月15日 15:56:28 +0000 (15:56 +0000)]
Remove GUC log_statement, log_pid, log_timestamp, log_source_port.
Functionality superceeded by log_line_prefix.

Andrew Dunstan

21 years agoImprove random regression tests to fail less frequently.
commit | commitdiff | tree
Bruce Momjian [2004年3月15日 15:46:25 +0000 (15:46 +0000)]
Improve random regression tests to fail less frequently.

21 years agoFix typo.
commit | commitdiff | tree
Bruce Momjian [2004年3月15日 14:21:30 +0000 (14:21 +0000)]
Fix typo.

21 years agoMention Linux syslog will sync lines to disk, and describe how to
commit | commitdiff | tree
Bruce Momjian [2004年3月15日 14:15:45 +0000 (14:15 +0000)]
Mention Linux syslog will sync lines to disk, and describe how to
disable it.

21 years agoAdd PQmbdsplen() which returns the "display length" of a character.
commit | commitdiff | tree
Tatsuo Ishii [2004年3月15日 10:41:26 +0000 (10:41 +0000)]
Add PQmbdsplen() which returns the "display length" of a character.
Still some works needed:
- UTF-8, MULE_INTERNAL always returns 1

21 years agoLocalize our dependencies on the way to create NAN or INFINITY.
commit | commitdiff | tree
Tom Lane [2004年3月15日 03:29:22 +0000 (03:29 +0000)]
Localize our dependencies on the way to create NAN or INFINITY.
Per recent proposal to pghackers.

21 years agoRemove grotty special-case code in coerce_to_target_type() that
commit | commitdiff | tree
Tom Lane [2004年3月15日 01:13:41 +0000 (01:13 +0000)]
Remove grotty special-case code in coerce_to_target_type() that
implemented casts to varchar and bpchar using a cast-to-text function.
This is a holdover from before we had pg_cast; it now makes more sense
to just list these casts in pg_cast. While at it, add pg_cast entries
for the other direction (casts from varchar/bpchar) where feasible.

21 years agoUpdate Solaris thread flags, per Jim Seymour
commit | commitdiff | tree
Bruce Momjian [2004年3月14日 23:51:48 +0000 (23:51 +0000)]
Update Solaris thread flags, per Jim Seymour

21 years agoTweak planner so that index expressions and predicates are matched to
commit | commitdiff | tree
Tom Lane [2004年3月14日 23:41:27 +0000 (23:41 +0000)]
Tweak planner so that index expressions and predicates are matched to
queries without regard to whether coercions are stated explicitly or
implicitly. Per suggestion from Stephan Szabo.

21 years agoFix error in termination of COPY IN mode when using V2 protocol.
commit | commitdiff | tree
Tom Lane [2004年3月14日 22:00:54 +0000 (22:00 +0000)]
Fix error in termination of COPY IN mode when using V2 protocol.
Report and fix per ljb, 8-Mar-04.

21 years agoMark linux as thread-enabled with new 7.5 tests.
commit | commitdiff | tree
Bruce Momjian [2004年3月14日 15:06:13 +0000 (15:06 +0000)]
Mark linux as thread-enabled with new 7.5 tests.

21 years agoFix ecpg_sqlca_key_destructor to return void.
commit | commitdiff | tree
Bruce Momjian [2004年3月14日 14:47:33 +0000 (14:47 +0000)]
Fix ecpg_sqlca_key_destructor to return void.

21 years ago> (I also see some post-7.4.1 changes in src/template/solaris, so you
commit | commitdiff | tree
Bruce Momjian [2004年3月14日 14:01:43 +0000 (14:01 +0000)]
> (I also see some post-7.4.1 changes in src/template/solaris, so you
> possibly should look there too.)
[snip]
>

I think I have the fix for part of it, but this remains...

gcc -O2 -fno-strict-aliasing -Wall -Wmissing-prototypes
-Wmissing-declarations -fPIC -I. -I../../../src/include
-D_POSIX_PTHREAD_SEMANTICS -DFRONTEND
-DSYSCONFDIR='"/usr/local/pgsql/etc"' -c -o thread.o thread.c
thread.c: In function `pqGethostbyname':
thread.c:189: error: `resbuf' undeclared (first use in this
function)

Looking at src/port/thread.c, line 189, it looks like somebody typo'd.
Looks like that second parameter should be "resultbuf", not "resbuf"?

Jim Seymour

21 years ago- Fixed Informix compat math functions to cope with the situations
commit | commitdiff | tree
Michael Meskes [2004年3月14日 12:16:30 +0000 (12:16 +0000)]
- Fixed Informix compat math functions to cope with the situations
where one argument takes the result.
- Applied thread patches by Lee Kindness

21 years agoPortability fixes and bug fixes for recent floating point input changes.
commit | commitdiff | tree
Neil Conway [2004年3月14日 05:22:52 +0000 (05:22 +0000)]
Portability fixes and bug fixes for recent floating point input changes.
In particular, don't depend on strtod() to accept 'NaN' and 'Infinity'
inputs (while this is required by C99, not all platforms are compliant
with that yet). Also, don't require glibc's behavior from isinf():
it seems that on a lot of platforms isinf() does not itself distinguish
between negative and positive infinity.

21 years agoTeach psql to show the location of syntax errors visually, per recent
commit | commitdiff | tree
Tom Lane [2004年3月14日 04:25:18 +0000 (04:25 +0000)]
Teach psql to show the location of syntax errors visually, per recent
discussions. Patch by Fabien Coelho and Tom Lane. Still needs to be
taught about multi-screen-column kanji characters; Tatsuo has promised
to provide the needed infrastructure for that.

21 years agoRename README's to match directory names. Mention copyright matches
commit | commitdiff | tree
Bruce Momjian [2004年3月14日 03:19:13 +0000 (03:19 +0000)]
Rename README's to match directory names. Mention copyright matches
PostgreSQL's.

21 years agoArrange to emit a CONTEXT: SQL function "foo" entry in an error
commit | commitdiff | tree
Tom Lane [2004年3月14日 01:58:41 +0000 (01:58 +0000)]
Arrange to emit a CONTEXT: SQL function "foo" entry in an error
message that is reporting a prechecking error in a SQL function.
This is to cue client-side code that the syntax error position,
if any, is with respect to the function body and not the outer command.

21 years agoDone:
commit | commitdiff | tree
Bruce Momjian [2004年3月13日 23:17:39 +0000 (23:17 +0000)]
Done:

> * -Issue NOTICE if foreign key data requires costly test to match primary key

21 years agoGenerate a WARNING when the column types in a foreign key constraint are
commit | commitdiff | tree
Tom Lane [2004年3月13日 22:09:14 +0000 (22:09 +0000)]
Generate a WARNING when the column types in a foreign key constraint are
incompatible enough to prevent indexscanning the referenced table. Also,
improve the error message that pops out when we can't implement the FK at
all for lack of a usable equality operator. Fabien Coelho, with some review
by Tom Lane.

21 years agoRepair memory leakage introduced into the non-hashed aggregate case by
commit | commitdiff | tree
Tom Lane [2004年3月13日 00:54:10 +0000 (00:54 +0000)]
Repair memory leakage introduced into the non-hashed aggregate case by
7.4 rewrite for hashed aggregate support. If the transition data type
is pass-by-reference, the transValue must be pfreed when starting a new
group boundary, else we have a one-value-per-group leakage. Thanks to
Rae Steining for providing a reproducible test case.

21 years agoTranslation updates
commit | commitdiff | tree
Dennis Bjorklund [2004年3月12日 18:32:51 +0000 (18:32 +0000)]
Translation updates

21 years agoFixes recent changes to test. For immediate application.
commit | commitdiff | tree
Bruce Momjian [2004年3月12日 14:08:05 +0000 (14:08 +0000)]
Fixes recent changes to test. For immediate application.

[ Note: int8-exp-three-digits.out needs the same treatment]

Will review recent changes for float4/8 and implications for win32 when
I get a chance.

Claudio Natoli

21 years agoUpdate FAQ with current release version.
commit | commitdiff | tree
Bruce Momjian [2004年3月12日 13:51:57 +0000 (13:51 +0000)]
Update FAQ with current release version.

21 years agoUpdate Russian FAQ, Viktor Vislobokov
commit | commitdiff | tree
Bruce Momjian [2004年3月12日 13:51:33 +0000 (13:51 +0000)]
Update Russian FAQ, Viktor Vislobokov

21 years agoTranslation updates
commit | commitdiff | tree
Dennis Bjorklund [2004年3月12日 12:59:09 +0000 (12:59 +0000)]
Translation updates

21 years agoTranslation updates
commit | commitdiff | tree
Dennis Bjorklund [2004年3月12日 12:38:36 +0000 (12:38 +0000)]
Translation updates

21 years agoRename incorrect references to nonblock.c to noblock.c. Claudio.
commit | commitdiff | tree
Bruce Momjian [2004年3月12日 04:33:41 +0000 (04:33 +0000)]
Rename incorrect references to nonblock.c to noblock.c. Claudio.

21 years agoFix a typo in the documentation for geqo_effort.
commit | commitdiff | tree
Neil Conway [2004年3月12日 00:56:00 +0000 (00:56 +0000)]
Fix a typo in the documentation for geqo_effort.

21 years agoImprove documentation for the newly-added NOWAIT clause of LOCK TABLE.
commit | commitdiff | tree
Neil Conway [2004年3月12日 00:52:23 +0000 (00:52 +0000)]
Improve documentation for the newly-added NOWAIT clause of LOCK TABLE.

21 years agoAllow 'Infinity' and '-Infinity' as input to the float4 and float8
commit | commitdiff | tree
Neil Conway [2004年3月12日 00:25:43 +0000 (00:25 +0000)]
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.

21 years agoTranslation updates
commit | commitdiff | tree
Dennis Bjorklund [2004年3月11日 15:48:57 +0000 (15:48 +0000)]
Translation updates

21 years agoDocument the SSL and Kerberos are not thread-safe.
commit | commitdiff | tree
Bruce Momjian [2004年3月11日 02:39:10 +0000 (02:39 +0000)]
Document the SSL and Kerberos are not thread-safe.

21 years agoRevise int2/int4/int8/float4/float8 input routines to allow for
commit | commitdiff | tree
Neil Conway [2004年3月11日 02:11:14 +0000 (02:11 +0000)]
Revise int2/int4/int8/float4/float8 input routines to allow for
any amount of leading or trailing whitespace (where "whitespace"
is defined by isspace()). This is for SQL conformance, as well
as consistency with other numeric types (e.g. oid, numeric).

Also refactor pg_atoi() to avoid looking at errno where not
necessary, and add a bunch of regression tests for the input
to these types.

21 years agoAdd NOWAIT option to LOCK command
commit | commitdiff | tree
Tatsuo Ishii [2004年3月11日 01:47:41 +0000 (01:47 +0000)]
Add NOWAIT option to LOCK command

21 years agoMove non-blocking code into its own /port file, for code clarity.
commit | commitdiff | tree
Bruce Momjian [2004年3月10日 21:12:49 +0000 (21:12 +0000)]
Move non-blocking code into its own /port file, for code clarity.

21 years agoFix a typo.
commit | commitdiff | tree
Neil Conway [2004年3月10日 20:10:26 +0000 (20:10 +0000)]
Fix a typo.

21 years agoImprovements to README.CVS
commit | commitdiff | tree
Neil Conway [2004年3月10日 01:31:15 +0000 (01:31 +0000)]
Improvements to README.CVS

21 years agoRemove HISTORY and INSTALL. Have them generated by the tarball scripts.
commit | commitdiff | tree
Bruce Momjian [2004年3月10日 00:28:11 +0000 (00:28 +0000)]
Remove HISTORY and INSTALL. Have them generated by the tarball scripts.

Add README.CVS to help CVS folks find this information.

21 years agoTweak some text to avoid using <command>SET</command> as a verb, per
commit | commitdiff | tree
Neil Conway [Tue, 9 Mar 2004 23:15:47 +0000 (23:15 +0000)]
Tweak some text to avoid using <command>SET</command> as a verb, per
suggestion from Peter E.

21 years agoAdd comment for Win32.
commit | commitdiff | tree
Bruce Momjian [Tue, 9 Mar 2004 22:40:10 +0000 (22:40 +0000)]
Add comment for Win32.

21 years agoRemove blank line in Makefile.
commit | commitdiff | tree
Bruce Momjian [Tue, 9 Mar 2004 20:10:10 +0000 (20:10 +0000)]
Remove blank line in Makefile.

21 years agoAdd HISTORY/INSTALL clean target to 7.4.X.
commit | commitdiff | tree
Bruce Momjian [Tue, 9 Mar 2004 20:08:10 +0000 (20:08 +0000)]
Add HISTORY/INSTALL clean target to 7.4.X.

21 years agoBuild scanner output when making a distribution.
commit | commitdiff | tree
Peter Eisentraut [Tue, 9 Mar 2004 19:47:05 +0000 (19:47 +0000)]
Build scanner output when making a distribution.

21 years agoAdd documentation for the recent 'ALSO' patch for CREATE RULE. Along
commit | commitdiff | tree
Neil Conway [Tue, 9 Mar 2004 19:30:21 +0000 (19:30 +0000)]
Add documentation for the recent 'ALSO' patch for CREATE RULE. Along
the way, fix a typo and make a few SGML cleanups.

21 years agoRebuild HISTORY file to match our official style sheets.
commit | commitdiff | tree
Bruce Momjian [Tue, 9 Mar 2004 17:40:27 +0000 (17:40 +0000)]
Rebuild HISTORY file to match our official style sheets.

21 years agoRefer to GUC variables using <xref> tags rather than <varname> tags,
commit | commitdiff | tree
Neil Conway [Tue, 9 Mar 2004 16:57:47 +0000 (16:57 +0000)]
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.

21 years agoCorrects a typo, introduces missing variables, and rearranges the
commit | commitdiff | tree
Bruce Momjian [Tue, 9 Mar 2004 05:11:53 +0000 (05:11 +0000)]
Corrects a typo, introduces missing variables, and rearranges the
initialization of stats process under EXEC_BACKEND.

[A cleaner, rationalized approach to stat/backend/SSDataBase child
processes under EXEC_BACKEND is on my TODO list. However this patch
takes care of immediate concerns (ie. stats test now passes under
win32)]

Claudio Natoli

next
This is the main PostgreSQL git repository.
RSS Atom

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