Peter Eisentraut writes:
> On Fri, 2013-12-20 at 10:54 -0300, Alvaro Herrera wrote:
>> Evidently something is not going well in ReadRecord. It should have
>> reported the read failure, but didn't. That seems a separate bug that
>> needs fixed.
> This is enabling large-file support on OS X, so t
On Sun, Dec 29, 2013 at 4:51 AM, Alexander Korotkov wrote:
> I've compiled it with clang. Yeah, there was mixed declarations. I've
> rechecked it with gcc, now it gives no warnings. I didn't try it with
> visual studio, but I hope it will be OK.
>
>
Thanks for the patch. It now compiles without an
Attached revision only uses heavyweight page locks across complex
operations. I haven't benchmarked it, but it appears to perform
reasonably well. I haven't attempted to measure a regression for
regular insertion, but offhand it seems likely that any regression
would be well within the noise - more
On Fri, Dec 27, 2013 at 5:01 AM, Robert Haas wrote:
> On Tue, Dec 24, 2013 at 10:08 AM, Fujii Masao wrote:
>> When I read ProcessConfigFile() more carefully, I found another related
>> problem. The procedure to reproduce the problem is here.
>>
>>
>> $ psql
>> =# ALTER SYSTEM
On Tue, Dec 24, 2013 at 11:38 PM, Fujii Masao wrote:
>> On Sun, Dec 22, 2013 at 8:32 PM, Amit Kapila wrote:
>>> On Sun, Dec 22, 2013 at 3:01 PM, Fujii Masao wrote:
I found the bug of ALTER SYSTEM SET patch. The procedure to reproduce
it is here.
$ psql
=# ALTER SYSTEM SE
A credulous person might suppose that this chunk of code is designed
to abort if pg_resetxlog fails:
prep_status("Setting next transaction ID for new cluster");
exec_prog(UTILITY_LOG_FILE, NULL, true,
"\"%s/pg_resetxlog\" -f -x %u \"%s\"",
new_cluster.bindir, ol
New version of the patch with updated documentation and which does not
display the planning time when the COSTS are off.
I will add it to the next commitfest.
--
Andreas Karlsson
diff --git a/doc/src/sgml/perform.sgml b/doc/src/sgml/perform.sgml
new file mode 100644
index 2af1738..240a3d5
*** a
While playing around with the pginclude tools, I noticed that pgcrypto
header files are failing to include some header files whose symbols they
use. This change would fix it:
diff --git a/contrib/pgcrypto/pgp.h b/contrib/pgcrypto/pgp.h
index 3022abf..f856e07 100644
--- a/contrib/pgcrypto/pgp.h
++
David Rowley writes:
> I was just looking through a few of the warnings flagged up by PVS Studio.
> I found some warnings around some calculations that were doing work_mem *
> 1024L and comparing that to a double. On windows 64 sizeof(long) is 4 bytes.
> Currently work_mem's maximum value is INT_M
On Wed, 2013-12-25 at 17:50 +0900, Etsuro Fujita wrote:
> Peter Eisentraut wrote:
> > On 12/24/13, 1:33 AM, Etsuro Fujita wrote:
> > > This is a small patch to fix a typo in src/backend/utils/mmgr/README.
>
> > I don't think that change is correct.
>
> I've fixed the patch, though that might be s
Andres Freund writes:
> On 2013-12-24 12:27:59 -0500, Tom Lane wrote:
>> What I was proposing was that we do include comments in what we send,
>> as long as those comments are embedded in the statement text, not
>> on lines before it.
> The common way I've seen what I've described above done as i
Kevin Grittner wrote:
> Alvaro Herrera wrote:
>
> > 1. slru.c doesn't consider file names longer than 4 hexadecimal chars.
>
> > Fixing (1) is simple: we can have each SLRU user declare how many digits
> > to have in file names. All existing users but pg_multixact/members
> > should declare 4 d
Kevin Grittner writes:
> Oh, I just noticed that this is for the *pg_restore* code, not the
> pg_dump code, so there isn't necessarily a conflict with the docs.
> The pg_dump code does match the docs on its version check. The
> question becomes, for each supported version, what do we want to
> set
Robert Haas writes:
> On Tue, Dec 17, 2013 at 12:28 PM, Tom Lane wrote:
>> So at this point I'm pretty much talked into it. We could eliminate the
>> dependence on indexes entirely, and replace this code with a step that
>> simply tries to pull single-base-relation quals out of ORs wherever it c
Alvaro Herrera wrote:
> 1. slru.c doesn't consider file names longer than 4 hexadecimal chars.
> Fixing (1) is simple: we can have each SLRU user declare how many digits
> to have in file names. All existing users but pg_multixact/members
> should declare 4 digits; that one should declare 5. T
On Sun, Dec 29, 2013 at 2:29 AM, Amit Kapila wrote:
> On Thu, Dec 26, 2013 at 3:02 PM, David Rowley
> wrote:
> > In the following thread I discovered that my new regression tests worked
> > perfectly on windows, but when they were run on linux they failed.
> >
> >
> http://www.postgresql.org/mess
From: "Michael Meskes"
Or in other words, I used the connect command you had in your email with a
services file pointing to a local database and it connected to that
database.
Instead of adding an additional output I checked the log output which
suggested
that host was NULL.
Your test case
On Thu, Dec 26, 2013 at 3:02 PM, David Rowley wrote:
> In the following thread I discovered that my new regression tests worked
> perfectly on windows, but when they were run on linux they failed.
>
> http://www.postgresql.org/message-id/CAApHDvo_YCiPYGDz07MpX9o6EGg=3mmyJTb0ysPTwoTg3c=t...@mail.gm
> "Tom" == Tom Lane writes:
Tom> I've committed this after significant editorialization --- most
Tom> notably, I pushed control of the sort step into the aggregate
Tom> support functions.
Initial tests suggest that your version is ~40% slower than ours on
some workloads.
On my system, th
On Sat, Dec 28, 2013 at 08:04:09AM +0900, MauMau wrote:
> OK, I'll run the ECPG regression test on Solaris without the patch.
> Please wait until Jan 6 2014 or so, because we've just entered new
> year holidays here in Japan.
Sure, we're no in a particular hurry.
Michael
--
Michael Meskes
Michae
On Sat, Dec 28, 2013 at 04:37:44PM +0900, MauMau wrote:
> You can confirm it by adding the following code fragment to
> ecpglib/connect.c. The attached file contains this.
> ...
Sorry for not being precide enough. I did run some tests and it works like a
charm for me.
Or in other words, I used
I create type based on varlena.
I want control it that don't toast.
how to control the length? I must control all of varlena size or data
varlena size?
thank.
On Sat, Dec 28, 2013 at 9:28 PM, Alexander Korotkov wrote:
> On Tue, Dec 24, 2013 at 6:02 AM, Andreas Karlsson wrote:
> Attached revision of patch implements partial sort usage in merge joins.
>
>
>
I'm looking forward to doing a bit of testing on this patch. I think it is
a really useful feature
23 matches
Mail list logo