threads listlengths 1 2.99k |
|---|
[
{
"msg_contents": "Greetings,\n\n In a discussion which came up at PgEast, I questioned if it'd be\n possible to set the 'all visible' hint bit and give the tuples the\n frozen XID when loading data into a table which was created in the\n same transaction.\n\n The idea being that no other transactions coul... |
[
{
"msg_contents": "A few days ago I was complaining that we needed to adjust the SPI and\nparser APIs so that callers could pass in collation values for Param\nsymbols. After some review of the code, I think we can get away without\nthat. Instead, let's just legislate that you have to use a parser\ncallback h... |
[
{
"msg_contents": "Hello List,\n\nI have a couple of use cases that are important to me, but my reading\nof xlog.c suggests I'm stuck between a rock and a hard place. Or, I am\nmissing some commonly used pattern -- forgive me in that case. I am\nreading 9.0.3 when making these determinations.\n\nHere is the me... |
[
{
"msg_contents": "Hi All\n\nI am trying to write a pg_filedump to read dead rows in pgsql, I am\nrelatively new to postgresql and have been trying to find out how to write\nand compile a pg_filedump to help display dead rows. Please can anyone help\nme \n\ni) Explain how i can write a pg_filedump to display de... |
[
{
"msg_contents": "Hi All\n\nI am trying to write a pg_filedump to read dead rows in pgsql, I am\nrelatively new to postgresql and have been trying to find out how to write\nand compile a pg_filedump to help display dead rows. Please can anyone help\nme \n\ni) Explain how i can write a pg_filedump to display de... |
[
{
"msg_contents": "Maybe I'm being overly simplistic or incorrect here, but I was\nthinking that there might be a route to reducing hint bit impact to\nthe main sufferers of the feature without adding too much pain in the\ngeneral case. I'm unfortunately convinced there is no getting rid of\nthem -- in fact th... |
[
{
"msg_contents": "Greetings,\n\n We have a curious situation, consider this:\n\n Process 1:\n BEGIN TRANSACTION ISOLATION LEVEL SERIALIZABLE;\n\tCRETE TABLE table1 (i integer);\n\tINSERT INTO table1 VALUES (13);\n\n Process 2:\n BEGIN TRANSACTION ISOLATION LEVEL SERIALIZABLE;\n\tCREATE TABLE table2 (i... |
[
{
"msg_contents": "Hello all, \n\nI was going through the Expression Evaluator and was trying to\nunderstand how the expressions are formed and evaluated. I was informed\non the IRC channel that the PARAM nodes are quite important and many\nwell written client applications use PARAMs for sending query to the\nb... |
[
{
"msg_contents": "Hackers,\n\nI would like to ask you about currency of the work above. I propose to\ndevelop functionality of GIN and GiST q-gram indexes with following\nfeatures:\n1) Handle edit distance (e.g. levenshtein distance) and LIKE/ILIKE\nqueries(using GIN partial match if no full q-grams can be ext... |
[
{
"msg_contents": "Attached is a WIP patch that allows SQL-language functions to reference\ntheir parameters by name.\n\nIt uses p_post_columnref_hook, so potentially ambiguous references\nprefer the column... that seems to make the most sense, both because it\navoids a backwards incompatibility, and it conform... |
[
{
"msg_contents": "hi,\n\nSo, I hit a strange problem with Streaming Replication, that I cannot explain.\n\nExecutive summary:\n\nwhen using hot backup made on straming replication slave, sometimes\n(depending on load) generated backup is created in such a way, that while it\ncan be brough back as standalone Pg... |
[
{
"msg_contents": "Judging by the number of new threads about development for 9.2, I\nthink its time we declared 9.1 Beta. I just had a conversation with\nsome Debian developers about how PostgreSQL 9.0 got pulled out of\ntheir release because we delayed by 3 weeks. So we missed our slot to\ndeliver useful new ... |
[
{
"msg_contents": "I believe I've figured out why synchronous replication has such\nterrible performance with fsync=off: it has a nasty race condition.\nIt may happen - if the standby responds very quickly - that the\nstandby acks the commit record and awakens waiters before the\ncommitting backend actually beg... |
[
{
"msg_contents": "Robert Haas <robertmhaas@gmail.com> writes:\n> I think some discussion of which of the things on the open\n> item lists need to be done before beta might be helpful, and we ought\n> to add any items that are not there but are blockers.\n\nHere's a quick enumeration of some things I think need... |
[
{
"msg_contents": "We have run across a problem with autovacuum that occurs when it can \ntruncate off a large amount of empty blocks. It behaves different in \nversion 9.0 than previous versions. Both behaviors are bad.\n\nConsider a relation receives constant inserts/updates that are satisfied \nusing freespa... |
[
{
"msg_contents": "Hello,\n\nDuring translating start.sgml - I found a sentence where I am not sure\nif it is correct.\n\ntutorial-createdb.html\n\nSecond paragraph below the \"permission denied to create a database\" \nerror message there is\nthe sentence:\n\n\" You can also create databases with other names. ... |
[
{
"msg_contents": "Per previous discussion, I'm going to wrap alpha5 Monday morning\nEastern time, barring objections.\n\nThis time, I'm going to try to make sure that announcements actually\ngo out; I dropped the ball on that last time.\n\nIf anyone wants to push time zone updates, translation updates, etc.,\n... |
[
{
"msg_contents": "Does this need updating now that languages are more exensiony? Or is it OK?\n\n if (!HeapTupleIsValid(languageTuple))\n ereport(ERROR,\n (errcode(ERRCODE_UNDEFINED_OBJECT),\n errmsg(\"language \\\"%s\\\" doe... |
[
{
"msg_contents": "Hello\n\nIs there some simple possibility to check a rights from stored procedure?\n\nRegards\n\nPavel Stehule\n",
"msg_date": "Sun, 27 Mar 2011 15:21:18 +0200",
"msg_from": "Pavel Stehule <pavel.stehule@gmail.com>",
"msg_from_op": true,
"msg_subject": "Can I check if somebody... |
[
{
"msg_contents": "Hi,\nI am currently a student of IIT Bombay. I am doing a project on \"Benchmark\ndesign\". For that I need to measure the performance of various queries in\ndatabases.\nI want to know how can we measure the execution time of a query in Postgres\n(Explain analyze will not do). Also is there a... |
[
{
"msg_contents": "Fix plpgsql to release SPI plans when a function or DO block is freed.\n\nThis fixes the gripe I made a few months ago about DO blocks getting\nslower with repeated use. At least, it fixes it for the case where\nthe DO block isn't aborted by an error. We could try running\nplpgsql_free_func... |
[
{
"msg_contents": "Simon Riggs wrote:\n \n> I'm surprised that a network roundtrip takes less time than the\n> backend takes to mark clog and then queue for the SyncRepLock.\n \nI'm not surprised by that at all. Some of our replication involves\nGb or faster connections on the same LAN segment (sometimes on t... |
[
{
"msg_contents": "Robert Haas wrote:\n \n> I don't see much advantage in changing these to asserts - in a\n> debug build, that will promote ERROR to PANIC; whereas in a\n> production build, they'll cause a random failure somewhere\n> downstream.\n \nThe reason Assert is appropriate is that it is *impossible* ... |
[
{
"msg_contents": "Tom Lane wrote:\n \n> There might perhaps be some value in adding a warning like this if\n> it were enabled per-table (and not enabled by default).\n \nIt only fires where a maximum has been declared and is exceeded. \nMost HTABs don't declare a maximum -- they leave it at zero. These\nare ... |
[
{
"msg_contents": "YAMAMOTO Takashi wrote:\n> Kevin Grittner wrote: \n \n>> (1) Could you post the non-default configuration settings?\n> \n> none. it can happen with just initdb+createdb'ed database.\n> \n>> (2) How many connections are in use in your testing?\n> \n> 4.\n> \n>> (3) Can you give a rough categ... |
[
{
"msg_contents": "Proposed changes: Make synchronous_replication into an enum, so we\ncan now also say synchronous_replication = recv, flush or apply as\nwell as on or off.\nsynchronous_replication = on is the same as \"flush\"\n\nBenefit: Allows 2 additional wait modes for sync rep: wait for\nreceive and wa... |
[
{
"msg_contents": "Hi,\n\nI see the ExecInitExpr says something like this:\n------------\ncase T_Var:\n\tstate = (ExprState *) makeNode(ExprState);\n\tstate->evalfunc = ExecEvalVar;\n---------------\n\n\nBut the ExecEvalVar function definition says:\n\n------------------------\nVar\t\t *variable = (Var *) exp... |
[
{
"msg_contents": "YAMAMOTO Takashi wrote:\n \n> this psql session was the only activity to the server at this\n> point.\n \n> [no residual SIReadLock]\n \n>> Right, that's because we were using HASH_ENTER instead of\n>> HASH_ENTER_NULL. I've posted a patch which should correct that.\n \n> sure, with your patc... |
[
{
"msg_contents": "Hi,\n\nI notice that none of the system tables or columns thereof bear any\ncomments. Is this intentional, or an oversight? I would have thought\ncomments would be useful since the column names aren't exactly always\nself-explanatory.\n\nThanks\n\n-- \nThom Brown\nTwitter: @darkixion\nIRC (... |
[
{
"msg_contents": "Hi,\n\nIs there a way to create triggers on system catalog tables like\npg_class, pg_attribute etc...?\n\nThanks,\nShridhar\n\nHi,Is there a way to create triggers on system catalog tables like pg_class, pg_attribute etc...?\nThanks,Shridhar",
"msg_date": "Mon, 28 Mar 2011 19:49:59 +0530"... |
[
{
"msg_contents": "Hi,\n\nIs there a way to create triggers on system catalog tables like pg_class,\npg_attribute etc...?\n\nThanks,\nShridhar\n\n--\nView this message in context: http://postgresql.1045698.n5.nabble.com/Triggers-on-system-catalog-tp4267669p4267669.html\nSent from the PostgreSQL - hackers mailin... |
[
{
"msg_contents": "Bug #5950 proposes the following test case:\n\ncreate table t ();\nalter table t add childs t;\nalter table t add id serial not null primary key;\n\nMost of the back branches dump core because CheckAttributeType() goes\ninto infinite recursion. That doesn't happen in HEAD, but so far as I\nc... |
[
{
"msg_contents": "Attached is a patch that adds a 'json' contrib module. Although we\nmay want a built-in JSON data type in the near future, making it a\nmodule (for the time being) has a couple advantages:\n\n * Installable on current and previous versions of PostgreSQL. The\njson module supports PostgreSQL... |
[
{
"msg_contents": "A few years ago, this list had a brief conversation on $SUBJECT:\nhttp://archives.postgresql.org/message-id/1215443493.4051.600.camel@ebony.site\n\nWhat is notable/surprising about the behavior when two backends have different\nvalues for deadlock_timeout? After sleeping to acquire a lock, e... |
[
{
"msg_contents": "I'm trying to validate a day of the week, and thought that to_date would\ndo the job for me. But I found a case where it cannot tell the\ndifference between sunday and monday. Is this a bug or intended\nbehaviour?\n\ndev=# select to_date('2011-13-Mon', 'YYYY-IW-DY');\n to_date \n--------... |
[
{
"msg_contents": "The fifth alpha release for PostgreSQL version 9.1, 9.1alpha5, is now available. There are no new major features in this alpha release as compared to 9.1alpha4, but there are many minor bug fixes and improvements to features added in 9.1alpha4 and earlier alpha releases. It is expected that... |
[
{
"msg_contents": "I doubt that this is going to matter much, and should only have a\ntrivial impact on shared space calculations and postmaster and\nconnection startup time, but just as a matter of principle we might\nwant to set SHMEM_INDEX_SIZE at least as large as the number of\nentries in ShmemIndex. At s... |
[
{
"msg_contents": "Hello,\n\nIt is in start.sgml. You can see it here:\n\nhttp://www.postgresql.org/docs/9.0/static/tutorial-accessdb.html\n\nThe last two sentences on the page:\n\n\" If PostgreSQL is installed correctly you can also\ntype man psql at the operating system shell prompt\nto see the documentation.... |
[
{
"msg_contents": "I have gotten two reports via IRC that months after using 9.0\npg_upgrade, some of the clog files have been removed while there is\nstill data in the table needing those clog files. These reports came to\nme through Rhodiumtoad who analyzed the systems.\n\nLooking at pg_upgrade, I am concern... |
[
{
"msg_contents": "As you might have heard, GCC 4.6 was released the other day. It\ngenerates a bunch of new warnings with the PostgreSQL source code, most\nof which belong to the new warning scenario -Wunused-but-set-variable,\nwhich is included in -Wall.\n\nAttached is a patch that gets rid of most of these.... |
[
{
"msg_contents": "In a previous thread\n(http://postgresql.1045698.n5.nabble.com/Set-hint-bits-upon-eviction-from-BufMgr-td4264323.html)\nI was playing with the idea of granting the bgwriter the ability to\ndue last chance hint bit setting before evicting the page out. I still\nthink might be a good idea, and ... |
[
{
"msg_contents": "I took a look at the open item concerning typed tables and pg_upgrade:\nhttp://archives.postgresql.org/pgsql-hackers/2011-03/msg00767.php\n\n\"pg_dump --binary-upgrade\" emits commands to recreate the dropped-column\nsituation of the database, and it does not currently understand that it must... |
[
{
"msg_contents": "Hi all i have been trying to compile the sourcecode for postgresql but keep\ngetting an error message when running it in cygwin. \n\nit states:\n\ndllwrap: gcc exited with status 1\nmake[3]: *** [cygpq.dll] Error 1\nmake[3]: Leaving directory\n`/postgresql-9.0.3/postgresql-9.0.3/src/interface... |
[
{
"msg_contents": "Hi there,\n\nI have been having problems using the pg_dumpall function. I am trying to\ndump all the information on my database onto a file or view it. Actually\nwhat am trying to achieve is by using the pg_dumpall i can view dead rows\nonce the db has been dumped into a file. I had a look on... |
[
{
"msg_contents": "In my understanding pg_last_xlog_receive_location() returns NULL if\napplied to non standby server:\n\nGet last transaction log location received and synced to disk by\nstreaming replication. While streaming replication is in progress this\nwill increase monotonically. But when streaming repl... |
[
{
"msg_contents": "\nThe following bug has been logged online:\n\nBug reference: 5957\nLogged by: Grzegorz Szpetkowski\nEmail address: gszpetkowski@gmail.com\nPostgreSQL version: 9.0.3\nOperating system: Ubuntu 10.10\nDescription: createdb with description and md5 auth forces to prov... |
[
{
"msg_contents": "Hi,\n\nThe attached patch fixes two typos.\n\nRegards,\n\n-- \nFujii Masao\nNIPPON TELEGRAPH AND TELEPHONE CORPORATION\nNTT Open Source Software Center",
"msg_date": "Wed, 30 Mar 2011 14:34:54 +0900",
"msg_from": "Fujii Masao <masao.fujii@gmail.com>",
"msg_from_op": true,
"msg... |
[
{
"msg_contents": "HI all,\nI'm trying to compile PostgreSQL 9.0.3 on FreeBSD 8.1-stable, and I can make \nit working if I compile without dtrace. However when I compile with --enable-\ndtrace I'm unable to use the cluster and even initdb.\nIn particular initdb claims that:\n\nfgets failure: No such file or dir... |
[
{
"msg_contents": "Hi,\n\nI'd like to add an ability to validate the corectness of PostgreSQL\nconfiguration files, i.e. postgresql.conf, pg_hba.conf, pg_ident.conf without\nactually applying them. The idea is that it would be a command-line option to\npostgres for a stand-alone case, or a user-callable functio... |
[
{
"msg_contents": "pg_upgrade complains if any of the libpq connection variables are set.\nThat's probably reasonable by default, but it seems to me that we ought\nto allow keeping PGCLIENTENCODING set, otherwise various values and\nerror messages that are coming from the servers will not be in the\nencoding ap... |
[
{
"msg_contents": "This might be nitpicking (or i'm currently missing something), but i recognized \nthat setting wal_buffers = -1 always triggers the following on reload, even if \nnothing to wal_buffers had changed:\n\n$ pg_ctl reload\nLOG: received SIGHUP, reloading configuration files\nLOG: parameter \"wa... |
[
{
"msg_contents": "Looking over the autovacuum.c code, I see:\n\n /*\n * Determine the oldest datfrozenxid/relfrozenxid that we will allow to\n * pass without forcing a vacuum. (This limit can be tightened for\n * particular tables, but not loosened.)\n */\n recentXid = ReadNewTransaction... |
[
{
"msg_contents": "I was trying to build the Windows msvc build for the first time and ran\ninto some issues.\n\nThe documentation talks about obtaining and using the \"Platform SDK\". I\nunderstand that this is nowadays called the \"Windows SDK\". Searching\nfor the former on the Microsoft download site does... |
[
{
"msg_contents": "On Thu, Mar 31, 2011 at 8:38 AM, Bernd Helmle <mailings@oopsware.de> wrote:\n> This might be nitpicking (or i'm currently missing something), but i\n> recognized that setting wal_buffers = -1 always triggers the following on\n> reload, even if nothing to wal_buffers had changed:\n>\n> $ pg_ct... |
[
{
"msg_contents": "On the open items list, we have:\n\nconversion from integer literals to money type\nhttp://archives.postgresql.org/pgsql-testers/2011-01/msg00000.php\n\nWhat this is really complaining about is that we added a cast from\nnumeric to money, but not from integer to money. This isn't really a\nb... |
[
{
"msg_contents": "While reading around in pg_upgrade code I came across the slightly\nbizarre function\n\nvoid exit_nicely(bool need_cleanup)\n\nThe parameter doesn't actually determine whether any cleanup is done.\nThe \"cleanup\" is done anyway and the parameter only controls the exit\ncode in a backwards wa... |
[
{
"msg_contents": "Title: Implementation of Eager Materialized views in postgres\n\nName of Proposer & Email : Aamir Khan & ak4u2009@gmail.com\n\nSynopsis:\n\nI would like to implement eager materialized view.An eager materialized view\nwill be updated whenever the view changes. This is done with a system of\... |
[
{
"msg_contents": "Hello,\n\nMost database connectors/frameworks nowadays support a URI style\nconnection string. Something like:\n\npgsql://user:pass@host/database\n\nDo we think psql should support this style of connection string?\n\nSincerely,\n\nJoshua D. Drake\n-- \nPostgreSQL.org Major Contributor\nComman... |
[
{
"msg_contents": "Hi,\n\nI've noticed some weirdness when trying to grant various types of\npermissions on a foreign table and thought I'd report it here:\n\npostgres=# \\d stuff\n Foreign table \"public.stuff\"\n Column | Type | Modifiers\n--------+---------+-----------\n id | integer |\n colour | text... |
[
{
"msg_contents": "We sometimes transform IN-clauses to a list of ORs:\n\npostgres=# explain SELECT * FROM foo WHERE a IN (b, c);\n QUERY PLAN\n------------------------------------------------------\n Seq Scan on foo (cost=0.00..39.10 rows=19 width=12)\n Filter: ((a = b) OR (a = c))\n... |
[
{
"msg_contents": "Problem:\n========\n\nOn windows when we run edb-postgres.exe without any command line args, its\ngetting crash or its showing error into Application logs of Event Viewer.\n\nAnalysis:\n==========\n\nFor any stderr we call the write_stderr() and write_stderr() calls the\nwrite_console() for s... |
[
{
"msg_contents": "On Fri, Apr 1, 2011 at 6:51 PM, Magnus Hagander <magnus@hagander.net> wrote:\n\n> On Fri, Apr 1, 2011 at 15:14, Rushabh Lathia <rushabh.lathia@gmail.com>\n> wrote:\n> > Problem:\n> > ========\n> >\n> > On windows when we run postgres.exe without any command line args, its\n> > getting crash o... |
[
{
"msg_contents": "Support comments on FOREIGN DATA WRAPPER and SERVER objects.\n\nThis mostly involves making it work with the objectaddress.c framework,\nwhich does most of the heavy lifting. In that vein, change\nGetForeignDataWrapperOidByName to get_foreign_data_wrapper_oid and\nGetForeignServerOidByName t... |
[
{
"msg_contents": "Hackers,\n\nI wanted to get a (ok, not so) quick note in about this before the beta dropped. I've been thinking about the \"requires\" parameter on extensions control files. Right now it just lists the names of extensions that are required for the extension to run:\n\n requires = 'foo, bar... |
[
{
"msg_contents": "While looking into a SSI bug, I noticed that we don't actually display\nthe pid of the holding transaction, even though we have that\ninformation available.\n\nThe attached patch fixes that.\n\nOne note is that it will show the pid of the backend that executed the\ntransaction, even if that t... |
[
{
"msg_contents": "\"Following a great deal of discussion, I'm pleased to announce that the\nPostgreSQL Core team has decided that the major theme for the 9.1\nrelease, due in 2011, will be 'NoSQL'.\n\n\"... the intention is to remove SQL support from\nPostgres, and replace it with a language called 'QUEL'. Thi... |
[
{
"msg_contents": "All,\n\nAs a reminder, the Cluster Hackers meeting, for current developers of\nclustering and replication solutions, will be on Tuesday during pgCon,\nconcurrent with the first day of tutorials.\n\nIf you are planning on attending this meeting, I need to have your RSVP\nnow. If you were plan... |
[
{
"msg_contents": "Hello,\n\nby accident we recognised that the author of sepgsql.sgml\nused < and > instead of < and >\n\nI just fixed it and here is the patch.\n\nSusanne\n\n-- \nSusanne Ebrecht - 2ndQuadrant\nPostgreSQL Development, 24x7 Support, Training and Services\nwww.2ndQuadrant.com",
"msg_da... |
[
{
"msg_contents": "I'm getting the following message after upgrading to Alpha5 on my Fedora\n14 box:\n\n$ psql -p 5433\npsql: connection pointer is NULL\n\nwhich comes from libpq. Server is running, and I can connect it to via\n9.0's psql.\n\nThis is a regular RPM build. Am I doing something wrong, or?\n\nRegar... |
[
{
"msg_contents": "i edited postgreql file so that i can check the flow of .c files invoked when\nwe fire a query but only what i am getting is just parse trees ,rewritten\ntrees and plan but no names of .c files invoked...\nplz help me asap ...its very important for me. what additional changes are\nrequired to... |
[
{
"msg_contents": "Escape greater than and less than characters in docs.\n\nSusanne Ebrecht and me\n\nBranch\n------\nmaster\n\nDetails\n-------\nhttp://git.postgresql.org/pg/commitdiff/d420ba2a2d4ea4831f89a3fd7ce86b05eff932ff\n\nModified Files\n--------------\ndoc/src/sgml/ref/pg_basebackup.sgml | 2 +-\ndoc... |
[
{
"msg_contents": "Hi all!\nWhat i need is transform xml document to table like that:\ninsert into tmp(\"Name\", \"Value\")\nselect t.Name, t.Value from myxml.Nodes(\"/doc/person\") as\nt('Name:varchar|Value:int')\nor similar. In fact I have many rows with many columns.\n\nHow I can do it with PG 9.0.3 where I ... |
[
{
"msg_contents": "Hi,\n\nI can't help thinking I must be missing something obvious here, but is\nthere any way to persist some data from PlanForeignScan to at least\nBeginForeignScan in an FDW? I'm aware of fdwplan->fdw_private, but at\nthat needs to be copyObject compatible, it's not much use to me.\n\nThe is... |
[
{
"msg_contents": "Dear PostgreSQL developers,\n\nAfter having done extensive web search and not found anybody to solve \nthe problem of interest on the general PostgreSQL mailing list, in the \nPostgreSQL newsgroup on usenet or on the PostgreSQL IRC channel, I would \nlike to ask you how to compile a static li... |
[
{
"msg_contents": "On Fri, Mar 25, 2011 at 8:53 PM, Fujii Masao <masao.fujii@gmail.com> wrote:\n> On Sat, Mar 19, 2011 at 12:07 AM, Robert Haas <robertmhaas@gmail.com> wrote:\n>> On Fri, Mar 18, 2011 at 10:55 AM, Greg Stark <gsstark@mit.edu> wrote:\n>>> On Thu, Mar 17, 2011 at 5:46 PM, Robert Haas <robertmhaas@... |
[
{
"msg_contents": "Hi,\n\n I have made very small modifications to a few files in the \ndocumentation directory, which involve SGML entity declarations. \nCurrently they are all written lowercase, the patch makes them \nuppercase. This won't affect SGML parsing, as SGML is case insensitive - \neven though it ... |
[
{
"msg_contents": "Hello!\n\nHere is the text of my proposal which I've recently applied to GSoC and have\nmentioned before in\nhttp://archives.postgresql.org/message-id/AANLkTimqFRmFdrYaesnJB8H4BuJo3j1SBdR1qmv=kieD@mail.gmail.com\nAny comments are welcome.\n\n*Project name*\n\nFast GiST index build\n\n*Synopsi... |
[
{
"msg_contents": "Robert Haas wrote:\n> On Sun, Apr 3, 2011 at 1:26 PM, Tom Lane wrote:\n \n>> It would probably take less than a day to flesh out this idea and\n>> make it happen, but it does seem like a rather large change for\n>> late alpha.\n \n> what we're trying to avoid is committing new stuff that ma... |
[
{
"msg_contents": "Folks,\n\nI think it might be about time to start thinking concretely about when\nwe might like to kick beta1 out the door. The open issues list still\nhas 9 issues on it, but we now have patches awaiting review for most\nof those issues (credit where credit is due: Fujii Masao, Noah Misch,... |
[
{
"msg_contents": "Sorry, I missed a permission check on invocation of trusted procedures.\n\nWhen client's label getting switched to Y from X, we needed to check\nprocess:transition permission between label X and label Y.\nIt is same manner when OS launches a program with a special label to\ncause domain trans... |
[
{
"msg_contents": "Hello,\n\nIBM-1208 is the name of the codepage on my operating system, just as several other...\nCP850, CP437 (US) , CP1004 (same as win1252) etc.\n\nPlease note that this is also present within PostgreSQL 9.0.3\n\nAdd IBM-1208, IBM-850 etc. somewhere so that it doesn't complain?!\n__________... |
[
{
"msg_contents": "When I was investigating this report:\n \nhttp://archives.postgresql.org/pgsql-bugs/2011-03/msg00349.php\n \nbesides providing a straightforward fix here:\n \nhttp://archives.postgresql.org/pgsql-bugs/2011-03/msg00352.php\n \nI noted that there was nearby code which needed review, as it didn'... |
[
{
"msg_contents": "My not yet complete attempt at doing a Windows build produces several of\nthese warnings during the build phase:\n\n Hash %ENV missing the % in argument 1 of each() at -e line 1.\n\nI believe the attached patch is the fix for that.",
"msg_date": "Mon, 04 Apr 2011 23:41:44 +0300",
"... |
[
{
"msg_contents": "Avoid assuming there will be only 3 states for synchronous_commit.\nAlso avoid hardcoding the current default state by giving it the name\n\"on\" and replace with a meaningful name that reflects its behaviour.\nCoding only, no change in behaviour.\n\nBranch\n------\nmaster\n\nDetails\n-------... |
[
{
"msg_contents": "Hi,\n\nI'm trying to write a C language function that has a REFCURSOR argument. \nCould anyone please give me an example of reading from a cursor in C code?\n",
"msg_date": "Tue, 05 Apr 2011 16:24:36 +0900",
"msg_from": "Vlad Arkhipov <arhipov@dc.baikal.ru>",
"msg_from_op": true,
... |
[
{
"msg_contents": "Hello\n\n I am sending my proposal about Google Summer Of Code2011.\nIt would be nice if you could give me your opinion.\n\n・title\n\nCaching query results in pgpool-II\n\n\n・Synopsis\n\nPgpool-II has query caching functionality using storage provided by\ndedicated PostgreSQL (\"system databa... |
[
{
"msg_contents": "Came across the following in a paper from Oct 2010. Was wondering is this is old news I missed in this group.\nhttp://pdos.csail.mit.edu/papers/linux:osdi10.pdf\nabout Linux optimization on multi-core CPU's.\n\nThe group at MIT were exploring how some Linux apps were scaling up --- sometimes ... |
[
{
"msg_contents": "Hi.\n\nI initially set out to put some numbers on \"why\" the visibillity\nmap was important for \"select count(*)\", primarily to give some\nfeedback to Simon Riggs stating:\n\"Your tests and discussion remind me that I haven't yet seen any tests\nthat show that index-only scans would be use... |
[
{
"msg_contents": "All,\n\nFor 9.1, I'm trying to get beta testing a *bit* more organized in hopes\nof shortening the beta period. Since we're not up and running on Django\non the main website yet, and thus I can't make an app for collecting\ntest reports, I've created a Google form:\n\nhttp://tinyurl.com/3gp9... |
[
{
"msg_contents": "The current structure of .pgpass is:\n\nhostname:port:database:username:password \n\nBare, useful, but not really friendly nor flexible. I would love to be\nable to do this:\n\nIf no ini block:\n\nhostname:port:database:username:password \n\nelse:\n\n[ecom]\nhostname=\nport=\ndatabase=\nusern... |
[
{
"msg_contents": "Hello\n\n My name is Masanori Yamazaki. I am sending my proposal about\nGoogle Summer Of Code2011. It would be nice if you could give\nme your opinion.\n\n\n・title\n\nCaching query results in pgpool-II\n\n\n・Synopsis\n\nPgpool-II has query caching functionality using storage provided by\ndedi... |
[
{
"msg_contents": "Hi All,\n\nI was wondering if anyone can tell me how i can access the transaction log\nwithin postgresql 9.0.3.\nI have carried out some updated and deletions within the database and am\nhoping the transaction logs have records of this.\n\nCheers all\n\n--\nView this message in context: http:... |
[
{
"msg_contents": "A quick review of the open items list suggests that we have three main\nareas that need attention before we can declare ourselves ready for\nbeta.\n\nIn no particular order:\n\n1. There are a bunch of small, outstanding SSI patches.\n2. Bugs - plural - related to pg_upgrade & typed tables.\n3... |
[
{
"msg_contents": "*\n\nProject Title*: ADJ Dashboard\nName : Erdinc AKKAYA\nEmail: erdinc.akkaya@gmail.com\n\n*Synopsis*\nAnyDBJSP is a database monitoring and reporting solution with a browser\nbased\ninterface. ADJ dashboard mainly will be written for database admins(DBA).\nThis tool will have pre-defined sq... |
[
{
"msg_contents": "Add traceback information to PL/Python errors\n\nThis mimics the traceback information the Python interpreter prints\nwith exceptions.\n\nJan Urbański\n\nBranch\n------\nmaster\n\nDetails\n-------\nhttp://git.postgresql.org/pg/commitdiff/2bd78eb8d51cc9ee03ba0287b23ff4c266dcd9b9\n\nModified Fi... |
[
{
"msg_contents": "Hi,\n\nDoes it make sense to treat these ?\n\nALTER TABLE \"s'd\"\".s'd\"\"\".\"s's'd\"\".\" ADD COLUMN id bigint DEFAULT\nnextval('\"s''d\".s''d\"\".\"s''d\".d\"s''\"');\n\nERROR: improper relation name (too many dotted names): s'd.s'd\"\".s'd.d\"s'\"\nSQL state: 42601\n\nPostgreSQL 9.1devel... |
[
{
"msg_contents": "I just spent a rather confused half hour while testing my GUC\nassign-hook patch, and when I finally figured out what was happening,\nit made me wonder whether we should redesign the behavior a little bit.\n\nThe current behavior of ProcessConfigFile is that it runs through all\nthe \"name = ... |
[
{
"msg_contents": "Hi,\n\nA customer of ours has for a long time the desire to be able to return\nto the previous privilege level (i.e. the caller privs) inside a\nSECURITY DEFINER function. I find that this notion is not at all\ncovered in the SQL standard, yet the use case is certainly valid from a\nsecurity... |
[
{
"msg_contents": "\nI just hit this, which at least violated my sense of least astonishment, \nif it's not an outright bug:\n\nAfter creating a role foo, I added to following lines to my (9.0) \npg_hba.conf:\n\n local all +foo reject\n host all +foo 0.0.0.0/0 reject\n\nThe surprising (to... |
[
{
"msg_contents": "If you have the timezone configured to a non-default value in\npostgresql.conf, and you comment it out and reload, it says:\n\nLOG: parameter \"TimeZone\" removed from configuration file, reset to default\n\n...but at least when I tested it, it didn't actually appear to reset\nit to the defa... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.