threads listlengths 1 2.99k |
|---|
[
{
"msg_contents": "Is there any utility in postgresql which can do the following?\n\nThe utility must update the table whenever there is any change in the \ntext file.\nCOPY command helps to do that, though this is not straight forward.\nCan it be automated?\n\nThanks\nDhanaraj\n",
"msg_date": "Thu, 14 Sep ... |
[
{
"msg_contents": "First, I asked about this on #postgresql, and I realize that this request\nwould be a low priority item. Yet, it would be an improvement for security\nreasons.\n\nWhen creating a function using EXTERNAL SECURITY DEFINER, by default PUBLIC\nhas execute privileges on it. That's unexpected giv... |
[
{
"msg_contents": "Tom Lane wrote:\n>> 3) Major hacking in Makefile.shlib to achieve the following:\n>> - libXX.so.n is built from libXX.a in the traditional way.\n>> Then libXX.a is deleted, and recreated as archive\n>> containing libXX.so.n.\n>> - Linking takes place withOUT -brtl, but with -b... |
[
{
"msg_contents": "For years I have been promising that a 64 bit version of the money type\nwas on the way. Here it is. So far it compiles and I have done some\nbasic testing on it and it seems to work fine. Note that the currency\nsymbol is also dropped on output as well but it is accepted on input.\n\ndarc... |
[
{
"msg_contents": "Hi,\n\nWe recently upgraded our trac backend from sqlite to postgres, and I\ndecided to have a little fun and write some reports that delve into\ntrac's subversion cache, and got stuck with a query optimisation\nproblem.\n\nTable revision contains 2800+ rows\nTable node_change contains 370000... |
[
{
"msg_contents": "Folks,\n\nI would like to have your opinion on the following:\n\nAt this moment we (almost) have a uuid/guid datatype.\nAs suggested in earlier discussion we provide a raw/plain output of the\nuuid type:\n\ndevdb=# select * from tbluuid;\n pk |\n-----------------... |
[
{
"msg_contents": "Hello,\n\nI know that this would be completely out of the norm. However, would it \nbe worth considering having a mid cycle release for 8.3?\n\nBasically the release would focus on:\n\nUpdateable views\nBitmap indexes\nRecursive queries\n\nWe would release in June?\n\nSincerely,\n\nJoshua D. ... |
[
{
"msg_contents": "\nDone.\n\n---------------------------------------------------------------------------\n\nJoe Conway wrote:\n> Bruce Momjian wrote:\n> > Here is an early draft of the release notes. It needs more polish and\n> > review:\n> > \n> > \thttp://momjian.us/cgi-bin/pgrelease\n> > \n> > I will catch... |
[
{
"msg_contents": "Suppose there are too tuples in a table t, named\nid\n---\n1\n2\n\nand there is a unique index on id. Now we do an update on table t\nupdate t set id=id+1\n\nSince PG executes the update one tuple at a time, it updates tuple \"1\"\nto \"2\" and insert it into the index. Before insert into the... |
[
{
"msg_contents": "Tom Lane wrote:\n> Ugh. So given that linker behavior, it's basically impossible to\n> support multiple libpq versions in the same directory anyway on AIX.\n\nIt is possible, if you have both versions of the shared object in\nthe same library. Essentially what I proposed for 3b).\nIt is the ... |
[
{
"msg_contents": "I have the following query:\n\nselect lower(firstname) || ' ' || lower(lastname) from person\n\nfirstname and lastname are VARCHAR\n\nlower() returns NULL when firstname OR lastname is NULL, is this correct?\n\nThis is 8.2devel from 24.08.2006.\n\n-- \nAndreas Joseph Krogh <andreak@officenet.... |
[
{
"msg_contents": "Sent to pgsql-sql now.\n\n-- \nAndreas Joseph Krogh <andreak@officenet.no>\nSenior Software Developer / Manager\ngpg public_key: http://dev.officenet.no/~andreak/public_key.asc\n------------------------+---------------------------------------------+\nOfficeNet AS | The most difficu... |
[
{
"msg_contents": "I have installed the new postgresql-8.1.msi on windows XP. \nAll standard as proposed except: encoding UTF8 and locale Germany/german as\na service. (UTF8 seams to be important, the locale not?)\n\nUsing pgAdmin-III I have connected and created a new database. Optionally I\ncan create a table... |
[
{
"msg_contents": "I've send the comment below to the documentation page about CREATE\nFUNCTION, but it got (rightfully) rejected, since it doesn't really\nadd up to the discussion and is more of a request about syntax. So,\nhere it goes:\n\nSorry, but \"datetime\" vs \"timestamp with time zone\"?! And what a... |
[
{
"msg_contents": "> I suspect that up to now the buildfarm had a static build of\n> PostgreSQL. What is the output of 'ldd initdb' when it builds\n> and runs correctly?\n> \n> Is libpq.so in a non-standard directory? If yes, one either\n> has to export LIBPATH in the environment or link with\n> -L/location/of/... |
[
{
"msg_contents": "Rocco Altier wrote:\n> Here is the working one:\n> initdb needs:\n> /usr/lib/libc.a(shr.o)\n> /unix\n> /usr/lib/libcrypt.a(shr.o)\n> \n> Here is the broken one:\n> initdb needs:\n> ../../../src/interfaces/libpq/libpq.so\n> /usr/lib/libc.a(shr.o)\n>... |
[
{
"msg_contents": "> From: Tom Lane [mailto:tgl@sss.pgh.pa.us] \n> \"Albe Laurenz\" <all@adv.magwien.gv.at> writes:\n> > Up to now you have built against the static libpq.a\n> > I didn't add the right -blibpath to this patch that\n> > failed for you - the broken initdb is dynamically linked\n> > but does not kn... |
[
{
"msg_contents": "\n\nI'm reading the code in tqual.c and find that this comment doesn't seem to\nmatch the code. CommandId always seems to be compared with >= or <= rather\nthan equality as the comment says.\n\nI'm not even sure I have these operators right as the expression as written\nhere is in a few place... |
[
{
"msg_contents": "Sweet! I'll try it as soon as it's available.Xiaofeng Zhaohttp://www.xzing.orgerrare humanum est> Subject: Re: [HACKERS] Build v8.1.4 with VC++ 2005> Date: Fri, 15 Sep 2006 10:59:03 +0200> From: mha@sollentuna.net> To: mmoncure@gmail.com; xf10036@hotmail.com> CC: pgsql-hackers@postgresql.org... |
[
{
"msg_contents": "\nI've been looking at doing the following TODO item:\n\n Allow ORDER BY ... LIMIT # to select high/low value without sort or index\n using a sequential scan for highest/lowest values\n\n Right now, if no index exists, ORDER BY ... LIMIT # requires we sort all\n values to return t... |
[
{
"msg_contents": "Hello,\n\nYeah, this is a cross post and it is slightly off topic but IMHO this is \nimportant.\n\nTomorrow one of our own, Devrim Gunduz is becoming a man. He is sucking \nit up, and committing to the cvs repo of project marriage.\n\nMay the patches reviewers be kind to him!\n\nCongratz Devr... |
[
{
"msg_contents": "I would like to create some regression tests for the uuid datatype.\nShould those also be included in the patch to review or the regression\ntests are done by the commiters?\n\nRegards,\nGevik.\n\n",
"msg_date": "Fri, 15 Sep 2006 19:23:35 +0200",
"msg_from": "Gevik Babakhani <pgdev@xs... |
[
{
"msg_contents": "\n\nFollowing up on the recent discussion on list about wasted space in data\nrepresentations I want to summarise what we found and make some proposals:\n\nAs I see it there are two cases:\n\nCase 1) Data types that are variable length but often quite small. This includes\n things like NUME... |
[
{
"msg_contents": "> > From: Tom Lane [mailto:tgl@sss.pgh.pa.us] \n> > Mmm ... what of \"make check\"'s temporary installation? We need\n> > to have the executables search in the temporary install's libdir,\n> > *before* looking in the configured --libdir (which could easily\n> > contain an incompatible back-v... |
[
{
"msg_contents": "With the patch attached this time...\n\n\t-rocco\n\n> -----Original Message-----\n> From: Rocco Altier \n> Sent: Friday, September 15, 2006 2:04 PM\n> To: Rocco Altier; 'Tom Lane'; 'Albe Laurenz'\n> Cc: 'pgsql-hackers@postgresql.org'\n> Subject: RE: [PATCHES] [HACKERS] Linking on AIX (Was: Fi... |
[
{
"msg_contents": "I have completed my first pass over the release notes and Tom has made\nsome additions:\n\n\thttp://momjian.postgresql.org/cgi-bin/pgrelease\n\nI will probably go over them again in a few hours, update them to\ncurrent CVS, then move them into our SGML documentation by Monday.\n\n-- \n Bruce... |
[
{
"msg_contents": "This patch fixes a couple of cases where we use strcasecmp() instead of\npg_strcasecmp() in fe_connect.c, coming from the LDAP client pathc.\n\n//Magnu <<libpq_strcmp.diff>> s",
"msg_date": "Fri, 15 Sep 2006 22:57:31 +0200",
"msg_from": "\"Magnus Hagander\" <mha@sollentuna.net>",
... |
[
{
"msg_contents": "This patch adds a required include file to regress.c, required to get at\nInvalidTransactionId.\n\n//Magnus",
"msg_date": "Fri, 15 Sep 2006 22:57:32 +0200",
"msg_from": "\"Magnus Hagander\" <mha@sollentuna.net>",
"msg_from_op": true,
"msg_subject": "Include file in regress.c"
... |
[
{
"msg_contents": "Seems __vc_errcode was used during Visual C++ beta at some point, and is\nnow declared deprecated in the system headers. This patch renames our\nuse of it to __msvc_errcode, so we don't conflict anymore.\n\n//Magnus",
"msg_date": "Fri, 15 Sep 2006 22:57:33 +0200",
"msg_from": "\"Magnu... |
[
{
"msg_contents": "This patch changes the function definition for ldap_start_tls_sA() on\nwin32 by removing the WINLDAPAPI. This is because in some cases\nWINLDAPAPI gets defined to __declspec(dllimport), which is not permitted\nat this location. in all other location it apears to be defined to\nnothing, so rem... |
[
{
"msg_contents": "Here's a patch that updates the msvc build system. It contains the\nchanges in Hiroshi-sans patch from about a week ago, so please apply\nthis patch instead to avoid conflicts. Changes summary:\n\n* Change all references to vcbuild directory, since system was moved to\nsrc\\tools\\msvc on com... |
[
{
"msg_contents": "Folks,\n\nCould someone please provide information about how to create a correct\nregression test?\n\nRegards,\nGevik.\n\n\n",
"msg_date": "Fri, 15 Sep 2006 23:31:41 +0200",
"msg_from": "Gevik Babakhani <pgdev@xs4all.nl>",
"msg_from_op": true,
"msg_subject": "question regardin... |
[
{
"msg_contents": "I've tracked the problem I mentioned earlier with my 4.5 million node \nlinked list of s->childXids down. We use plperl to connect to Oracle \nover DBI. The select function is dbi-link's remote_select. \nremote_select will perform the query and then for each row \nreturn_next which cal... |
[
{
"msg_contents": "I am testing the uuid datatype with unique indexing.\nI have the following script to generate a table with uuid types:\n\ncreate table guid(\n\tpk uuid primary key default new_guid(),\n\tf1 varchar(38)\n);\n\ninsert into guid(f1) values('bla bla');\ninsert into guid(f1) values('bla bla');\n\n... |
[
{
"msg_contents": "Back when we converted src/timezone to use int64 for pg_time_t, we\nwondered what to do about extending the compiled timezone data file\nformat for int64, so that it would work for years beyound 2038. We\nshelved the problem waiting to see what the upstream zic folks would do.\nWell, it look... |
[
{
"msg_contents": "I have confirmed that my email client, elm-ME+, is wrapping long subject\nlines on output, e.g.:\n\n\tSubject: Re: [COMMITTERS] pgsql: sslinfo contrib module - information\n\t about current SSL\n\nand because majordomo is stripping any secondary lines, the subjects are\ngetting truncat... |
[
{
"msg_contents": "The development of the uuid datatype is yet in progress...\nI was wondering if I should go ahead and add a macro datatype like the\nSERIAL, only this time for the uuid.\n\nsomething like:\ncreate table tbl\n(\n\tmypk SERIALGUID;\n)\n\nwhich creates\n\ncreate table tbl\n(\n\tmypk uuid default ... |
[
{
"msg_contents": "Hiya,\n\nI've been having trouble running vacuumdb -a and pg_dumpall\nconcurrently because they run through the databases in a different\norder (so dumpall was getting stuck behind vacuum's lock, and my\nfirewall was rather unhelpfully closing the idle connection). I can't\nsee a good reason ... |
[
{
"msg_contents": "\n\n-----Original Message-----\nFrom: \"Magnus Hagander\" <mha@sollentuna.net>\nTo: \"Martijn van Oosterhout\" <kleptog@svana.org>\nCc: \"Gregory Stark\" <stark@enterprisedb.com>; \"Josh Berkus\" <josh@agliodbs.com>; \"pgsql-www@postgresql.org\" <pgsql-www@postgresql.org>; \"Neil Conway\" <ne... |
[
{
"msg_contents": "Folks,\n\nThe following patch implements the UUID datatype. I would like to send\nthis beta patch to see if I still am on the right track. Please send\nyour comments.\n\nDescription of UUID:\n\n- The type is called uuid.\n- btree and hash indexes are supported.\n- uuid array is supported.\n- ... |
[
{
"msg_contents": "I see the following items standing between us and putting out 8.2beta1:\n\n* Set client encoding based on OS environment - Peter E.\n\nI'm not sure whether Peter is intending to complete this item for 8.2\nor not, but if it's to be done it ought to be done before we start beta.\n\n* The contr... |
[
{
"msg_contents": "regression=# select * from int8_tbl union all select * from int8_tbl order by q2;\n q1 | q2 \n------------------+-------------------\n 4567890123456789 | -4567890123456789\n 4567890123456789 | -4567890123456789\n 4567890123456789 | 123\n 456789012345... |
[
{
"msg_contents": "\n\nSo I have a quick prototype of this and in fact it handles the common use case\nof a paged web page sorted on non-indexed columns very well. If you have only\na small limit like most web pages often avoids external sorts and produces\nresults 10-20x faster or more. Obviously by raising th... |
[
{
"msg_contents": "Folks,\n\nI would like to create a language translation. Is there a procedure for\nthat?\n\nI notices there are several .po files. How do I compile/enable the new\nlanguage translation once I have created a new .po file?\n\nRegards,\nGevik.\n\n\n\n",
"msg_date": "Mon, 18 Sep 2006 15:40:01... |
[
{
"msg_contents": "I was wondering how one can avoid OID conflicts?\nI was testing the uuid patch on a new download from the CVS and \nI noticed that some of the OIDs I thought to be free are used by someone\nelse :(\n\nAny advice?\n\n\n\n",
"msg_date": "Mon, 18 Sep 2006 16:02:56 +0200",
"msg_from": "Ge... |
[
{
"msg_contents": "Bruce Momjian wrote:\n> I would like to see some comments about AIX linking so we \n> don't need to\n> relearn this in 1-2 years.\n\nSomething like\nhttp://archives.postgresql.org/pgsql-hackers/2006-09/msg00893.php\nor something more comprehensive?\n\nMaybe mentioning LIBPATH and -blibpath: m... |
[
{
"msg_contents": "Rocco Altier wrote:\n>>> pg_regress normally tries to handle this by setting LD_LIBRARY_PATH\n>>> ... does AIX use that or a similar symbol?\n>>> \n>> The \"make check\" was successful in my previous testing of the last\n>> patch, so it appears that AIX was paying attention to\nLD_LIBRARY_PAT... |
[
{
"msg_contents": "Tom Lane wrote:\n> The proposed patch to Makefile.shlib makes me gag :-( ... \n\nIt is ugly.\n\n> lying to make\n> about what's the purpose of a rule is seldom a good idea. Please try\n> as attached instead.\n\nI will ASAP.\n\n> Also, I am *really* dubious about the change to\n> ecpg/test/M... |
[
{
"msg_contents": "Folks,\n\nI would like to have your thoughts on a solution for the duplicate OIDs.\n\nI wanted to apply the uuid patch on a newly download source from the\nCVS. Patching and \"make install\" went just okay but \"make check\" and\ninitdb failed to my surprise. A quick look at duplicate_oids sh... |
[
{
"msg_contents": "> -----Original Message-----\n> From: pgsql-hackers-owner@postgresql.org \n> Yeah, I know, which is why I don't find it absolutely critical that\n> this make it to beta1. But one of the concerns mentioned in \n> the thread\n> is that the changes might break things for older AIX versions. If... |
[
{
"msg_contents": "Hi all. I don't know if here is the best place, but in:\nhttp://conference.postgresql.org/Catalog there's no link to the slides of\nthe talks.\n\nI think that would be nice the slides there :)\n\n[]'s\n- Walter\n\nHi all. I don't know if here is the best place, but in: http://conference.postg... |
[
{
"msg_contents": "Whoops, I hadn't read this far when I sent the last message on the other\nthread.\n\n> Gevik Babakhani wrote:\n>> 3. Make a small utility that goes through a patch, finds the new OIDs\n>> and changes them back to a value specified by the committer(s).\n\nThis is effectively what I ended up su... |
[
{
"msg_contents": "Hi,\n I've decided to start hacking on PostgreSQL, and I've looked at the \neasier jobs in the TODO list. I'm interested in implementing:\n\n% Add a GUC variable to control the tablespace for temporary objects and sort \nfiles. It could start with a random tablespace from a supplied li... |
[
{
"msg_contents": "has anybody gotten postgresql to install successfully under Windows Vista?\n",
"msg_date": "Mon, 18 Sep 2006 21:07:09 -0600",
"msg_from": "John Meyer <john.l.meyer@gmail.com>",
"msg_from_op": true,
"msg_subject": "vista"
},
{
"msg_contents": "John Meyer wrote:\n> has a... |
[
{
"msg_contents": "Jie Zhang wrote:\n> Hi Heikki and all,\n>\n> Please find the latest bitmap index patch in the attachment. This patch is\n> generated against the postgresql cvs head.\n> \n\nThanks.\n\nThe handling of stream and hash bitmaps looks pretty complicated to me. \nAll the bitmap-related nodes have... |
[
{
"msg_contents": "Hi,\n \tcan anybody explain me what is the difference between system cache \nand buffer cache?\n\nI found that keywords in PostgreSql FAQ \nhttp://www.postgresql.org/docs/faqs.FAQ_DEV.html#item2.1\n\nthanks in advance.\n\nRegards,\n-- \n N Praveen Kumar\n\n \tImagination is more important th... |
[
{
"msg_contents": "We currently use 4 int32s to store xmin, xmax, cmin, cmax and xvac on \nevery heap tuple. That's a lot of overhead, especially on tables with \nnarrow rows. Reduction in header size would give us considerable space \nand I/O savings.\n\nI'm thinking of removing cmin and cmax, and keeping that... |
[
{
"msg_contents": "Way past feature freeze, but this small change allows a powerful new\nfeature utilising the Restartable Recovery capability. Very useful for\nvery large database backups... \n\nIncludes full documentation.\n\nPerhaps a bit rushed, but inclusion in 8.2 would be great. (Ouch, don't\nshout back,... |
[
{
"msg_contents": "On 9/17/06, Tom Lane <tgl@sss.pgh.pa.us> wrote:\n> We have three possible choices for this: do nothing, install a\n> bug-compatible, allegedly-clean-room implementation in contrib:\n> http://archives.postgresql.org/pgsql-patches/2006-09/msg00077.php\n> or put a hopefully-cleaner design into c... |
[
{
"msg_contents": "We've cleared all the must-fix-before-beta issues I mentioned on Sunday.\nAFAICS we're good to tag and wrap ...\n\n\t\t\tregards, tom lane\n",
"msg_date": "Tue, 19 Sep 2006 13:39:58 -0400",
"msg_from": "Tom Lane <tgl@sss.pgh.pa.us>",
"msg_from_op": true,
"msg_subject": "Ready ... |
[
{
"msg_contents": "ok, here is the promised docs for the advisory locks.\n\nsome quick notes here: this is my first non trivial patch (albeit only\ndocumentation) and i am a complete docbook novice. i also dont have\nthe capability to build docbook at the moment. so consider this a\nvery rough draft. any com... |
[
{
"msg_contents": "Log Message:\n-----------\nRemove completed TODO items:\n\n< * -Make postmater and postgres options distinct so the postmaster -o\n< option is no longer needed\n< * -Allow pooled connections to list all prepared statements\n< \n< This would allow an application inheriting a pooled connect... |
[
{
"msg_contents": "I notice that when I run 'make check' on a\nstatically linked HEAD, it fails during\n'createlang' with\n\n============== installing plpgsql ==============\nERROR: could not access file \"$libdir/plpgsql\": No such file or\ndirectory\ncommand failed:\n\"/postgres/cvs/pgsql... |
[
{
"msg_contents": "I discussed with Gavin about \"pg_downgrade\" process. I think that it \nshould be much dangerous and more complex problem than upgrade. Some \noperation on the new system should makes downgrade impossible ...\n\nMy experience with database upgrades is that downgrade is requested only \nif th... |
[
{
"msg_contents": "\nThanks, done.\n\n---------------------------------------------------------------------------\n\nAlvaro Herrera wrote:\n> Jim C. Nasby wrote:\n> > On Tue, Sep 19, 2006 at 09:37:39AM -0400, Bruce Momjian wrote:\n> > > Jim C. Nasby wrote:\n> > > > On Mon, Sep 18, 2006 at 06:47:02PM -0400, Bruc... |
[
{
"msg_contents": "I would like to work on the domain casting problem. I have spent\nsometime in order to understand how this whole domain handling works\nwhen it comes to casting and I think I understand why this cannot be\nfixed in isolation as Tom has described in:\n\nhttp://archives.postgresql.org/pgsql-hac... |
[
{
"msg_contents": " \n\n> -----Original Message-----\n> From: Dave Cramer [mailto:davec@fastcrypt.com] \n> Sent: 20 September 2006 15:40\n> To: Dave Page\n> Subject: Re: [HACKERS] pdfs of the conference\n> \n> \n> > The guy with the PostgreSQL sign round his neck is Devrim \n> Gunduz. The\n> > guy holding one u... |
[
{
"msg_contents": "I'd like to include a section on Major changes in this release at the\ntop of the release notes, as has been done for at least the last 6 major\nreleases. The notes below are one stab at that, for **discussion**. I've\ntried to arrange specific changes into groups... \n\n\nMajor changes in th... |
[
{
"msg_contents": "Per discussion on reducing heap tuple header, I've started to work on \nthe phantom cid idea.\n\nI'm thinking of having an array of cmin,cmax pairs, indexed by phantom \ncid number. Looking up cmin,cmax of a phantom id is then a simple array \nlookup. To allow reusing phantom cids, we have a ... |
[
{
"msg_contents": "Should the values in the default configuration file contain units? And \nif so, should we phase out the verbal description of the units, e.g.,\n\n#work_mem = 1024 # min 64, size in kB\n\nbecomes\n\n#work_mem = 1MB # min 64kB\n\n(The \"native\" u... |
[
{
"msg_contents": "Log Message:\n-----------\nAdd documentation for new in-core advisory lock functions. Merlin Moncure\n\nModified Files:\n--------------\n pgsql/doc/src/sgml:\n func.sgml (r1.338 -> r1.339)\n (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/func.sgml.diff?r1=1.3... |
[
{
"msg_contents": "One good thing about advisory locks having been in contrib was that they\ndidn't affect anyone who didn't actually install the module. Now that\nwe've put those functions in core, I wonder whether we don't need to\nface up to the possibility of malicious use. For instance, it's not\nvery ha... |
[
{
"msg_contents": "Peter Eisentraut wrote:\n>> I notice that when I run 'make check' on a\n>> statically linked HEAD, it fails during\n>> 'createlang' with\n> \n> Because createlang relies on *dynamic* loading.\n\nSo that is working as designed.\nI interpret that as 'static builds for the database\nserver are n... |
[
{
"msg_contents": "I am aware that more recent versions > 8.x have fixed this problem, I \nchecked the 7.4 release notes but can't see if any of the fixes made \nit into 7.4.\n\nDid they ?\n\nDave \n",
"msg_date": "Thu, 21 Sep 2006 10:04:06 -0400",
"msg_from": "Dave Cramer <pg@fastcrypt.com>",
"ms... |
[
{
"msg_contents": "We've seen reports occasionally of how the system reports that\nmax_fsm_pages needs to be increased to at least X, and then when the DBA\ndoes so, it complains that some larger amount is needed --- one recent\nreport is here:\nhttp://archives.postgresql.org/pgsql-admin/2006-06/msg00176.php\n\... |
[
{
"msg_contents": "Log Message:\n-----------\nFix free space map to correctly track the total amount of FSM space needed\neven when a single relation requires more than max_fsm_pages pages. Also,\nmake VACUUM emit a warning in this case, since it likely means that VACUUM\nFULL or other drastic corrective measu... |
[
{
"msg_contents": "We would help if we do it in an open pgfoundry project.\n\nBizgres?\n\n- Luke\n\nMsg is shrt cuz m on ma treo\n\n -----Original Message-----\nFrom: \tJosh Berkus [mailto:josh@agliodbs.com]\nSent:\tThursday, September 21, 2006 11:08 PM Eastern Standard Time\nTo:\tJonah H. Harris\nCc:\tpgsql-ha... |
[
{
"msg_contents": "Appended is a doc patch that removes tables B-4 and B-5 from Appendix B and\nintegrates information from there into other parts, mostly into section\n8.5.3.\n\nI still havent gotten a reply to\n\nhttp://archives.postgresql.org/pgsql-hackers/2006-09/msg01590.php\n\nso I didn't change those par... |
[
{
"msg_contents": "Following the recent discussion on this list and another on pgsql-core,\nwe have decided that we would like to aim to meet the following schedule\nfor the release of PostgreSQL 8.3:\n\nApril 1st 2007 - Feature freeze\n\nMay 1st 2007 - Beta 1 release\n\nJune 1st 2007 - Release\n\nThis will obv... |
[
{
"msg_contents": "Log Message:\n-----------\nWe're going to have to spell dotless i as plain i, because dotless i is\nnot in the character set supported by DocBook nor standard HTML. (Sorry\nVolkan.) Also replace random character-set references by a pointer to\nthe actual standard.\n\nModified Files:\n------... |
[
{
"msg_contents": "\n\n-----Original Message-----\nFrom: \"Tom Dunstan\" <pgsql@tomd.cc>\nTo: \"Dave Page\" <dpage@vale-housing.co.uk>\nCc: \"pgsql-hackers@postgresql.org\" <pgsql-hackers@postgresql.org>\nSent: 22/09/06 17:21\nSubject: Re: [HACKERS] 8.3 Development Cycle\n\n> will other features be considered i... |
[
{
"msg_contents": "Good afternoon, dear PostgreSQL developers!\n\nFirst I want to thank all of you for the great DB Server! It's really \nuseful, thank you!\n\nSecond, here is my question(guys from #postgresql channel advised to write \nto dev list):\n\nI want to make a silent install of PostgreSQL version 8.1 ... |
[
{
"msg_contents": "I thought folks might be interested in this... note in particular the \ncomment about linux.\n\nBegin forwarded message:\n\n> From: Greg 'groggy' Lehey <grog@FreeBSD.org>\n> Date: June 26, 2006 11:34:12 PM EDT\n> To: leo huang <leo.huang.list@gmail.com>\n> Cc: freebsd-performance@freebsd.org... |
[
{
"msg_contents": "When initdb is given an invalid (possibly mistyped) locale name, it just \nprints a warning and proceeds with the default locale from the \nenvironment. Someone already wondered about this before:\n\n /* should we exit here? */\n if (!ret)\n fprintf(stderr, _(\"%s: invalid local... |
[
{
"msg_contents": "FYI, I am traveling to Oxford, England next week, Monday to Friday, to\nmeet with Simon and Heikki. My Internet connectivity will be irregular.\n\n-- \n Bruce Momjian bruce@momjian.us\n EnterpriseDB http://www.enterprisedb.com\n\n + If your life is a hard drive, Christ can be your ba... |
[
{
"msg_contents": "\nJust a short note that the first Beta is now available on \nftp.postgresql.org, and, shortly, on the mirrors ...\n\nThis isn't a full announce, which will be on Monday ... but please run a \nfew tests, make sure everything looks okay ...\n\n----\nMarc G. Fournier Hub.Org Networkin... |
[
{
"msg_contents": "Some off-list investigation of Dan Kavan's data loss problem,\nhttp://archives.postgresql.org/pgsql-admin/2006-09/msg00092.php\nhas led to the conclusion that it seems to be a kernel bug.\nThe smoking gun is this strace excerpt:\n\n> lseek(10, 0, SEEK_END) = 913072128\n> writ... |
[
{
"msg_contents": "Hi Andrew,\n\nI'm just investigating a problem with beta 1 running on Windows 2K and\nXP, and noticed that neither Snake or Bandicoot have built -HEAD for\nnearly 3 weeks. I'm investigating why and will fix the problem, but it\nstrikes me that what would be useful is an alarm email from the s... |
[
{
"msg_contents": "Greetings,\n\n Was just playing with 8.2beta1 and importing some data from MySQL and\n found something rather annoying. Not *100%* sure the best way to deal\n with this, if there even is a way, but...\n\n When loading a rather large data set I started getting errors along\n these lines:... |
[
{
"msg_contents": "Josh,\n\n> > Anyhow, don't know if there's really a good solution but \n> it'd be nice\n> > to only get one warning, or one of a given type, or \n> something, and \n> > to\n> \n> Except that one warning would not be accurate, because the \n> warning is per tuple. How is postgresql going t... |
[
{
"msg_contents": "http://archives.postgresql.org/pgsql-committers/2006-08/msg00410.php\n\nShould this be removed again now?\n\nThe actual fix should be\nhttp://archives.postgresql.org/pgsql-committers/2006-08/msg00504.php,\nand per\nhttp://archives.postgresql.org/pgsql-hackers/2006-08/msg01920.php it\nseems to... |
[
{
"msg_contents": "Digging into several win32 related issues right now, so I don't have the\ntime to investigate ATM, but I figured I should get it out here:\n\nIf I configure log_destination='eventlog', and then\nredirect_stderr='on', PostgreSQL will attempt to create a logfile in\npg_log anyway. This file rem... |
[
{
"msg_contents": "There is a small bug in the fopen() wrapper code that was applied a\ncouple of weeks back for win32. It sets the wrong flags for files opened\nin \"append\" mode. This makes the logfile writing not work - syslog.c\nopens the logfile in append mode, but if the file does not already\nexist, it ... |
[
{
"msg_contents": "subject says it all. pg_regress starts \"postmaster\" (pg_regress.c, line\n1515). Shouldn't this be \"postgres\" these days?\n\n(Yes, I'm aware that I wrote that code ;-) But this just occurred to\nme..)\n\n//Magnus\n",
"msg_date": "Sun, 24 Sep 2006 17:14:22 +0200",
"msg_from": "\"Mag... |
[
{
"msg_contents": "On version of Windows prior to XP, pg_ctl will *always* log a warning\nabout not finding Job API functions. This is probably unnecessary, since\nthey are never present there. The check was originally intended to give\na warning if something was wrong on a system where it was *expected*.\n\nAt... |
[
{
"msg_contents": "Found a couple of \"XXX is there a way to do this on Windows\" in\npg_regress.c that I had missed. The answer to the question is yes,\nattached is a patch that does it.\n\n//Magnus",
"msg_date": "Sun, 24 Sep 2006 17:32:44 +0200",
"msg_from": "\"Magnus Hagander\" <mha@sollentuna.net>",... |
[
{
"msg_contents": "Snake and Bandicoot are still hanging in ECPG-Check at the moment.\nKilling the dt_test.exe program that the regression tests seem to be\nrunning frees it all up to properly report the failure. I don't have\ntime to investigate further at the minute, but for anyone that does,\nBandicoot's las... |
[
{
"msg_contents": "Continuing the discussion about domain cast problem...\nhttp://archives.postgresql.org/pgsql-hackers/2006-09/msg01681.php\n\nTom,\n\nI have done some playing and thinking about the problem...\nYou are absolutely right about the points you mentioned on\nhttp://archives.postgresql.org/pgsql-hac... |
[
{
"msg_contents": "\nHello guys,\n\nit's been a while, but...\n\n> What's bugging me is that 0 and O_EXCL give the same answer, and\n> O_TRUNC and O_TRUNC | O_EXCL give the same answer, \n\nThis is ok, as (iirc) O_EXCL only has effect in the presence of O_CREAT.\n(a comment to this effect would help here, as we... |
[
{
"msg_contents": "I just messed with a bunch of my majordomo settings and I wanted to make\nsure things are working the way I thought. Please disregard. Sorry to\nbother everyone\n\n-- \nI'll defend to the death your right to say that, but I never said I'd\nlisten to it!\n\t\t-- Tom Galloway with apologies t... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.