| Commit message (Collapse) | Author | Age |
... | |
|
|
|
| |
Euler Taveira de Oliveira
|
| |
|
|
|
|
|
| |
Fedora). This was already done by somebody for the core flex files,
but these contrib files seem to have been missed.
|
| |
|
| |
|
|
|
|
| |
or at any rate doesn't belong as a comment in a random SGML file.
|
|
|
|
| |
rather than British. Patch from Michael Fuhr.
|
|
|
|
| |
to determine whether fread() failed.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
documentation. Mostly add some <xref>s, fix a few typos, and
document that zlib is required in the installation docs.
|
| |
|
|
|
|
|
|
|
|
|
| |
the facility has been set, the facility gets set to LOCAL0 and cannot
be changed later. This seems reasonably plausible to happen, particularly
at higher debug log levels, though I am not certain it explains Han Holl's
recent report. Easiest fix is to teach the code how to change the value
on-the-fly, which is nicer anyway. I made the settings PGC_SIGHUP to
conform with log_destination.
|
| |
|
|
|
|
|
| |
of GUC memory doesn't cause us to start emitting a bogus ident string.
Per report from Han Holl. Also some trivial code cleanup in write_syslog.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
regression=# select '23:59:59.9'::time(0);
time
----------
24:00:00
(1 row)
This is bad because:
regression=# select '24:00:00'::time(0);
ERROR: date/time field value out of range: "24:00:00"
The last example now works.
|
|
|
|
| |
for the PL languages and for contrib.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
etc. match the docs, which talk about "transaction identifier" not
"gid" or "global transaction identifier".
Steve Woodcock
|
|
|
|
|
|
| |
'localhost'.
Improve kerberos error message.
|
|
|
|
| |
affected types of objects.
|
| |
|
|
|
|
|
| |
direction of writing triggers in a procedural language, rather than C.
Per discussion.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
of client_min_messages (fatal + panic) are valid and also fixes a slight
issue with how psql tried to display error messages that aren't sent to
the client.
We often tell people to ignore errors in response to requests for things
like "drop if exists", but there's no good way to completely hide this
without upping client_min_messages past ERROR. When running a file like
SET client_min_messages TO 'FATAL';
DROP TABLE doesntexist;
with "psql -f filename" you get an error prefix of
"psql:/home/username/filename:3" even though there is no error message to
prefix because it isn't sent to the client.
Kris Jurka
|
| |
|
| |
|
|
|
|
|
| |
I'm not clear on what the double-backslash idea was intended to fix,
but it breaks at least mingw GNU Make. Per report from Thomas Hallgren.
|
|
|
|
|
|
|
|
| |
This makes the error messages for PREPARE TRANSACTION, COMMIT PREPARED
etc. match the docs, which talk about "transaction identifier" not
"gid" or "global transaction identifier".
Steve Woodcock
|
|
|
|
|
|
|
| |
etc. match the docs, which talk about "transaction identifier" not
"gid" or "global transaction identifier".
Steve Woodcock
|
| |
|
|
|
|
| |
applications that use FILE pointers.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
WAL and the interaction of the new full_page_writes parameter with PITR.
The too-small WAL first sect1 has been merged with the one following
sect1 for clarity.
Some minor comments have been made in the WAL config section also.
Passes SGML make and proofread for typos.
Files changed:
patching file doc/src/sgml/backup.sgml
patching file doc/src/sgml/config.sgml
patching file doc/src/sgml/wal.sgml
Simon Riggs
|
| |
|
|
|
|
| |
that is too fragile.
|
|
|
|
|
|
| |
syntax checking to plpgsql: check_sql_expr() wasn't being called by
make_select_stmt(), so that there was no SQL syntax check for SELECT
statements.
|
| |
|
| |
|
| |
|
|
|
|
| |
that is protected by a spinlock must be volatile, per recent discussion.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
> * Prevent PQfnumber() from lowercasing unquoted the column name
>
> PQfnumber() should never have been doing lowercasing, but historically
> it has so we need a way to prevent it
>
|
|
|
|
|
|
|
| |
make_restrictinfo_from_bitmapqual. The likelihood of finding duplicates
seems much less than in the AND-subclause case, and the cost much higher,
because OR lists with hundreds or even thousands of subclauses are not
uncommon. Per discussion with Ilia Kantor and andrew@supernews.
|
| |
|
|
|
|
|
|
|
|
| |
< * Prevent libpq's PQfnumber() from lowercasing the column name
<
< One idea is to lowercase all identifiers except those that are
< surrounded by quotes.
<
|