Search Discussions
-
Attached is a small patch that adds a few comments for the settings that require restart. Applicable for 9.0+. Regards, -- Devrim GÜNDÜZ PostgreSQL Danışmanı/Consultant, Red Hat Certified Engineer ...
Devrim Gündüz
Sep 27, 2010 at 8:58 am
Oct 14, 2010 at 5:18 pm -
I just discovered the --patience flag on the git diff command, and I'd like to suggest that we encourage people to use it when possible for building patches. I just looked at output with and without ...
Kevin Grittner
Sep 15, 2010 at 5:58 pm
Oct 1, 2010 at 9:53 pm -
Can we please change the comment lines below the patch heading to have the real name instead of the postgresql.org ID? Patch by Pavel Stehule Patch by Gurjeet Singh instead of Patch by okbobcz Patch ...
Gurjeet Singh
Sep 30, 2010 at 9:38 pm
Oct 1, 2010 at 6:06 pm -
... or did we just forget to remove it? -- -- Josh Berkus PostgreSQL Experts Inc. http://www.pgexperts.com
Josh Berkus
Sep 21, 2010 at 1:19 am
Sep 22, 2010 at 4:17 pm -
Hi, http://archives.postgresql.org/pgsql-hackers/2010-05/msg00921.php Let's revisit this issue. The problem here is that pg_ctl might emit the following warning messages when it shuts down the ...
Fujii Masao
Sep 13, 2010 at 10:08 am
Sep 14, 2010 at 2:58 pm -
This is an attempt to sum up the open issues remaining before we can make another try at converting our source code to git. * As I noted previously, up till about 2003 we were quite haphazard about ...
Tom Lane
Sep 13, 2010 at 4:32 pm
Sep 13, 2010 at 6:41 pm -
I'm not subscribed to pgsql-committers, but apparently under the new git-enabled setup, I'm getting a "Stalled post to pgsql-committers" message for every commit. Fix that please.
Peter Eisentraut
Sep 25, 2010 at 4:43 pm
Sep 29, 2010 at 7:16 pm -
[moving to pgsql-hackers; this isn't the simple bug I initially suspected it might be] I think you're right. Looking into it more, though, I'm not even sure what the correct behaviour even is. I ...
Craig Ringer
Sep 22, 2010 at 8:25 am
Sep 25, 2010 at 6:49 am -
It's not hard to tell if we're missing a file that ought to be listed in .gitignore --- git status will find that problem soon enough. However, it seems that git isn't so willing to tell you about ...
Tom Lane
Sep 23, 2010 at 12:54 am
Sep 24, 2010 at 4:26 pm -
Alpha1 has been bundled and is available at http://developer.postgresql.org/~petere/alpha/ Please check that it is sane. If there are no concerns, I will move them to the FTP site tomorrow (Sunday) ...
Peter Eisentraut
Sep 4, 2010 at 5:27 pm
Sep 6, 2010 at 10:08 pm -
All, While working on some database maintenance, I was just tripped up by the fact that there is no good way to query reloptions for tables. By "no good way" I mean "no way which does not involve ...
Josh Berkus
Sep 27, 2010 at 5:19 am
Feb 26, 2011 at 5:49 pm -
In http://www.postgresql.org/docs/9.0/static/tutorial-window.html it say "Although avg will produce the same result no matter what order it processes the partition's rows in, this is not true of all ...
Dennis Björklund
Sep 22, 2010 at 10:35 am
Feb 20, 2011 at 5:02 am -
Hi, When I using an index scan, can I get the offset of the tuple in the table? Thanks -- Pei
Pei He
Sep 21, 2010 at 9:03 pm
Sep 22, 2010 at 10:31 am -
There are a couple of weird-looking commits way back near the beginning of the converted Postgres history: commit 91f2ac21a1e085dfe81aae110cee2246a803f600 refs/tags/Release_2_0_0 Author: PostgreSQL ...
Tom Lane
Sep 12, 2010 at 4:02 pm
Sep 13, 2010 at 3:52 pm -
I have implemented your suggestion of setting LANG, LANGUAGE, and LC_MESSAGES based on code in pg_regress.c; that is the only place I see where we force English, and it certainly has received more ...
Bruce Momjian
Sep 1, 2010 at 8:35 pm
Sep 7, 2010 at 2:11 pm -
Hi, I'm researching if smallint can be made a higher-class citizen of our type system than currently. Does anyone know where to find the discussion refered to here? ...
Alvaro Herrera
Sep 3, 2010 at 10:42 pm
Sep 5, 2010 at 1:22 pm -
Compiling with RELCACHE_FORCE_RELEASE doesn't pass "make check" on my machine. Is it supposed to pass? Regards, Jeff Davis
Jeff Davis
Sep 1, 2010 at 6:33 pm
Sep 2, 2010 at 1:12 pm -
Awhile back I ranted about replacing the planner's concept of inner indexscans with a more generalized notion of "parameterized paths": ...
Tom Lane
Sep 2, 2010 at 9:31 pm
Nov 10, 2011 at 2:06 am -
Hello who is psycopg maintainer, please? Can somebody explains to me, why psycopg doesn't support twophase commit still, although some implementation was done in summer 2008? Now two phase commit is ...
Pavel Stehule
Sep 18, 2010 at 4:02 pm
Nov 6, 2010 at 4:34 pm -
Where does PGXS makefile get /usr/share/doc/pgsql/contrib directory from? While building 3rd party RPMs using PGXS, even if I specify docdir in Makefile, README.* files are installed to this ...
Devrim Gündüz
Sep 19, 2010 at 9:25 pm
Oct 12, 2010 at 1:50 pm -
Hey all, Here is simple test case of LOB usage, please, note the comments: #include <libpq-fe.h #include <libpq/libpq-fs.h int main(int argc, char* argv[]) { PGconn* c = PQconnectdb("password=test"); ...
Dmitriy Igrishin
Sep 24, 2010 at 1:13 pm
Sep 27, 2010 at 10:17 pm -
psql's \dn command hides pg_temp_nn schemas, except for the current backend's own temp schema (if any). However, when we added separate pg_toast_temp_nn schemas for TOAST tables, \dn wasn't taught ...
Tom Lane
Sep 18, 2010 at 7:11 pm
Sep 27, 2010 at 12:09 pm -
Now that we have the wonderful latch facility, let's use it to reduce the delay between receiving a piece of WAL and applying in the standby. Currently, the startup process polls every 100ms to see ...
Heikki Linnakangas
Sep 13, 2010 at 11:40 am
Sep 14, 2010 at 1:46 pm -
Hi, I found walsender didn't process options (e.g., application_name in primary_conninfo) passed in the startup packet. The cause is that walsender doesn't execute process_postgres_switches() and ...
Fujii Masao
Sep 10, 2010 at 10:17 am
Sep 13, 2010 at 9:02 am -
Hi, Starting from 9.0, it seems unable to generate man pages for Japanese translated sgml(generating html is ok). Until 8.4 it worked fine. Does anybody succeeded in generating non English/multibyte ...
Tatsuo Ishii
Sep 29, 2010 at 2:23 pm
Sep 30, 2010 at 6:11 am -
Hello, just doing an upgrade form PostgreSQL 8.4.4 on Windows 2007 64bit to PostgreSQL 9.0 64bit on the same system. I am working along http://developer.postgresql.org/pgdocs/postgres/pgupgrade.html ...
Massa, Harald Armin
Sep 26, 2010 at 9:42 am
Sep 29, 2010 at 6:27 pm -
If I have this sql composite type: CREATE TYPE d_type AS ( i integer, e integer, id integer ); and this table: CREATE TABLE my_tab ( d_col d_type NOT NULL ) CREATE INDEX my_tab_d_col_gist ON my_tab ...
Marios Vodas
Sep 27, 2010 at 8:27 am
Sep 27, 2010 at 3:52 pm -
At the moment, to enable logging, a service restart is required. Is there any way to remove this requirement or is there a fundamental reason why it must always be like that? -- Thom Brown Twitter: ...
Thom Brown
Sep 24, 2010 at 8:34 am
Sep 24, 2010 at 4:01 pm -
Hi, I want to shut down the server under certain conditions that can be checked inside a backend process. For instance, while running symmetric replication, if the primary dies, I want the the ...
Fazool mein
Sep 21, 2010 at 12:48 am
Sep 22, 2010 at 11:28 pm -
Hi ! I wonder if the SSI implementation will give some way of detecting the cause of a serialization failure. Something like the deadlock detection maybe where you get the sql-statements involved. ...
Dan S
Sep 20, 2010 at 5:56 pm
Sep 21, 2010 at 5:15 pm -
I notice that RelationCreateStorage() creates the main fork on disk before writing (let alone flushing) WAL. So if PG gets killed at that point, we end up with an orphaned file on disk. I think that ...
Robert Haas
Sep 15, 2010 at 10:40 pm
Sep 16, 2010 at 10:57 pm -
Folks, I noticed a little unimplemented feature which I suspect a lot of people would find useful, namely the ability to "freeze" certain settings for a role. Example: We'd like to create a role ...
David Fetter
Sep 7, 2010 at 6:39 pm
Sep 7, 2010 at 11:44 pm -
Hello, At work, I've been tasked with providing some Windows connection libraries, etc. Are people still using MinGW, or should I just recommend using a proprietary toolkit to do the builds? If so, ...
David Fetter
Sep 3, 2010 at 3:11 pm
Sep 6, 2010 at 1:24 pm -
Hi, I always wondered why ps ax|grep postgres shows several extra blank lines after the process name, i.e. 972 ?? Ss 0:00.69 postgres: writer process 973 ?? Ss 0:00.51 postgres: wal writer process (I ...
Alexey Klyukin
Sep 3, 2010 at 6:25 pm
Sep 5, 2010 at 3:06 pm -
It would crash if input is of unrecognized format. Probably than there's going to be more problems to be concerned with, but just in case, don't crash in -- GJ
Grzegorz Jaśkiewicz
Sep 28, 2010 at 1:31 pm
Sep 28, 2010 at 3:28 pm -
Dear all, Environement: - OS : Ubuntu 10.04 LTS. - DB: postgresql 8.4. - Connection to postgresql using sslmode = disable Scenario : 1. I use pgadmin to connect/disconnect to the postgresql server on ...
Guillaume Du Pasquier
Sep 27, 2010 at 3:56 pm
Sep 27, 2010 at 5:49 pm -
Hi all. My name is Jose Arthur and I use PostgreSQL for a while, but never contributed to the main project, until now. Since nobody else take this patch to review in this commitfest, I'm going to try ...
José Arthur Benetasso Villanova
Sep 25, 2010 at 10:55 pm
Sep 27, 2010 at 1:43 pm -
Seems like it's probably a good idea, but I wanted to double-check that no one has a different thought. -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise Postgres Company
Robert Haas
Sep 26, 2010 at 6:26 pm
Sep 27, 2010 at 8:06 am -
Hello everyone, I am designing a heartbeat system between replicas to know when a replica goes down so that necessary measures can be taken. As I see, there are two ways of doing it: 1) Creating a ...
Fazool mein
Sep 16, 2010 at 9:49 pm
Sep 26, 2010 at 11:27 pm -
I have these types: CREATE TYPE p_type AS ( x double precision, y double precision ); CREATE TYPE d_type AS ( i p_type, e p_type, id integer ); CREATE OR REPLACE FUNCTION d_swap(d_type) RETURNS ...
Marios Vodas
Sep 26, 2010 at 3:35 pm
Sep 26, 2010 at 6:36 pm -
The psql \dd command has a couple of infelicities. 1. It doesn't actually list comments on all of the object types to which they can be applied using the COMMENT command. 2. It also doesn't list ...
Robert Haas
Sep 20, 2010 at 4:53 am
Sep 24, 2010 at 1:41 pm -
Hi. My new clone of git://git.postgresql.org/git/postgresql.git is 196MB, whereas my old clone (last synced around the beginning of September) was 285MB. Does anyone know offhand why the sizes are so ...
Abhijit Menon-Sen
Sep 21, 2010 at 9:45 pm
Sep 22, 2010 at 2:19 pm -
I would like to apply the attached patch to README.HOT so clarify when single-page cleanup happens, e.g. not during INSERT. -- Bruce Momjian <bruce@momjian.us http://momjian.us EnterpriseDB ...
Bruce Momjian
Sep 17, 2010 at 7:53 pm
Sep 19, 2010 at 5:52 pm -
I don't know if this is a bug or not, but if not, it looks like a misfeature ... When executing the following in Pg 8.4.4: CREATE OR REPLACE FUNCTION f () RETURNS TABLE(a1 INTEGER) AS $BODY$ BEGIN ...
Darren Duncan
Sep 16, 2010 at 6:33 am
Sep 17, 2010 at 3:13 am -
Like latches, nice one. The way the loop in WalSender now happens it won't send any outstanding WAL if a shutdown is requested while it is waiting. That probably needs to change and we'd do similarly ...
Simon Riggs
Sep 14, 2010 at 3:16 pm
Sep 15, 2010 at 7:09 am -
I haven't had a chance to do a great deal of work on this project, but I'm hoping to get back to it at some point and, in the meantime, thought that it might be useful to circulate a few thoughts ...
Robert Haas
Sep 7, 2010 at 2:55 am
Sep 14, 2010 at 2:37 am -
Can someone update the PostgreSQL shared memory usage table for 9.0? http://www.postgresql.org/docs/9.0/static/kernel-resources.html#SYSVIPC Right now it says "Approximate shared memory bytes ...
Bruce Momjian
Sep 13, 2010 at 8:44 pm
Feb 21, 2011 at 3:08 am -
Hello, I propose a new hook type - that helps with controlling a life cycle of some tsearch dictionaries. This hook has minimal impact on performance - it's called once per session for one tsearch ...
Pavel Stehule
Sep 5, 2010 at 6:37 am
Sep 30, 2010 at 9:37 am -
When we drop an operator used by other operators as COMMUTATOR or NEGATOR, pg_dump generates an invalid SQL command for the operators depending on the dropped one. Is it an unavoidable restriction? ...
Itagaki Takahiro
Sep 29, 2010 at 7:56 am
Sep 29, 2010 at 3:25 pm -
Folks, We're almost half way through the commitfest, and so I'll start with: The Good: - Most patches still in play have a reviewer. - It's possible for one person to post 5 reviews in a day. Robert ...
David Fetter
Sep 28, 2010 at 9:03 pm
Sep 29, 2010 at 2:16 am
Group Overview
group | pgsql-hackers |
categories | postgresql |
discussions | 155 |
posts | 2,173 |
users | 126 |
website | postgresql.org... |
irc | #postgresql |
126 users for September 2010
Archives
- August 2013 (1,430)
- July 2013 (1,772)
- June 2013 (2,428)
- May 2013 (1,555)
- April 2013 (1,283)
- March 2013 (1,441)
- February 2013 (1,366)
- January 2013 (2,520)
- December 2012 (1,701)
- November 2012 (1,618)
- October 2012 (1,580)
- September 2012 (1,195)
- August 2012 (1,180)
- July 2012 (1,125)
- June 2012 (1,850)
- May 2012 (1,584)
- April 2012 (1,459)
- March 2012 (1,921)
- February 2012 (1,517)
- January 2012 (1,777)
- December 2011 (1,347)
- November 2011 (1,764)
- October 2011 (1,687)
- September 2011 (1,623)
- August 2011 (1,433)
- July 2011 (1,658)
- June 2011 (2,404)
- May 2011 (1,664)
- April 2011 (1,834)
- March 2011 (1,956)
- February 2011 (2,476)
- January 2011 (2,965)
- December 2010 (2,587)
- November 2010 (2,109)
- October 2010 (2,113)
- September 2010 (2,173)
- August 2010 (2,061)
- July 2010 (1,612)
- June 2010 (1,560)
- May 2010 (1,961)
- April 2010 (1,575)
- March 2010 (1,314)
- February 2010 (2,439)
- January 2010 (3,118)
- December 2009 (2,514)
- November 2009 (493)
- October 2009 (1,903)
- September 2009 (1,990)
- August 2009 (2,170)
- July 2009 (2,025)
- June 2009 (1,565)
- May 2009 (1,518)
- April 2009 (1,431)
- March 2009 (1,424)
- February 2009 (1,399)
- January 2009 (2,641)
- December 2008 (2,011)
- November 2008 (1,918)
- October 2008 (1,695)
- September 2008 (1,887)
- August 2008 (1,374)
- July 2008 (1,495)
- June 2008 (1,149)
- May 2008 (1,112)
- April 2008 (1,908)
- March 2008 (1,288)
- February 2008 (1,309)
- January 2008 (1,220)
- December 2007 (989)
- November 2007 (1,369)
- October 2007 (1,553)
- September 2007 (1,225)
- August 2007 (1,221)
- July 2007 (1,007)
- June 2007 (1,127)
- May 2007 (1,189)
- April 2007 (1,266)
- March 2007 (1,866)
- February 2007 (1,916)
- January 2007 (1,645)
- December 2006 (1,423)
- November 2006 (1,021)
- October 2006 (1,565)
- September 2006 (2,375)
- August 2006 (2,039)
- July 2006 (1,626)
- June 2006 (1,624)
- May 2006 (1,366)
- April 2006 (1,150)
- March 2006 (1,327)
- February 2006 (1,259)
- January 2006 (1,030)
- December 2005 (1,252)
- November 2005 (1,568)
- October 2005 (1,417)
- September 2005 (1,464)
- August 2005 (1,191)
- July 2005 (1,150)
- June 2005 (1,576)
- May 2005 (1,592)
- April 2005 (1,004)
- March 2005 (1,069)
- February 2005 (969)
- January 2005 (1,100)
- December 2004 (949)
- November 2004 (1,210)
- October 2004 (1,059)
- September 2004 (951)
- August 2004 (1,601)
- July 2004 (1,397)
- June 2004 (1,037)
- May 2004 (1,446)
- April 2004 (1,167)
- March 2004 (1,330)
- February 2004 (1,003)
- January 2004 (861)
- December 2003 (827)
- November 2003 (1,618)
- October 2003 (1,602)
- September 2003 (1,683)
- August 2003 (1,343)
- July 2003 (1,045)
- June 2003 (1,302)
- May 2003 (802)
- April 2003 (1,012)
- March 2003 (1,242)
- February 2003 (1,323)
- January 2003 (1,315)
- December 2002 (1,176)
- November 2002 (1,220)
- October 2002 (1,449)
- September 2002 (1,816)
- August 2002 (2,295)
- July 2002 (1,290)
- June 2002 (1,024)
- May 2002 (1,157)
- April 2002 (1,532)
- March 2002 (1,207)
- February 2002 (1,225)
- January 2002 (1,397)
- December 2001 (963)
- November 2001 (1,301)
- October 2001 (1,155)
- September 2001 (895)
- August 2001 (1,204)
- July 2001 (938)
- June 2001 (1,131)
- May 2001 (1,458)
- April 2001 (1,168)
- March 2001 (1,672)
- February 2001 (1,154)
- January 2001 (1,450)
- December 2000 (1,222)
- November 2000 (1,390)
- October 2000 (1,296)
- September 2000 (633)
- August 2000 (888)
- July 2000 (1,428)
- June 2000 (1,283)
- May 2000 (1,648)
- April 2000 (184)
- March 2000 (291)
- February 2000 (1,464)
- January 2000 (1,639)
- December 1999 (1,056)
- November 1999 (916)
- October 1999 (949)
- September 1999 (946)
- August 1999 (695)
- July 1999 (1,070)
- June 1999 (1,242)
- May 1999 (1,136)
- April 1999 (218)
- March 1999 (1,002)
- February 1999 (692)
- January 1999 (758)
- December 1998 (591)
- November 1998 (600)
- October 1998 (1,208)
- September 1998 (678)
- August 1998 (856)
- July 1998 (482)
- June 1998 (496)
- May 1998 (618)
- April 1998 (702)
- March 1998 (1,118)
- February 1998 (1,307)
- January 1998 (855)
- December 1997 (346)
- November 1997 (374)
- October 1997 (575)
- September 1997 (549)
- August 1997 (404)
- July 1997 (391)
- June 1997 (595)
- May 1997 (478)
- April 1997 (854)
- March 1997 (526)
- February 1997 (297)
- January 1997 (927)
- December 1996 (2)
- November 1996 (1)
- October 1996 (1)
- October 1995 (2)
- July 1995 (1)