threads
listlengths
1
2.99k
[ { "msg_contents": "Here's another part of my crusade against xlog cleanup routines. This \nseries of patches gets rid of the gin_cleanup() function, which is \ncurrently used to finish splits of GIN b-tree pages, if the system \ncrashes (or an error occurs) between splitting a page and inserting its \ndownlink ...
[ { "msg_contents": "Prevent excessive progress reporting that can grow to gigabytes\nof output with large databases.\n---\n src/bin/pg_basebackup/pg_basebackup.c | 21 ++++++++++++---------\n 1 file changed, 12 insertions(+), 9 deletions(-)\n\ndiff --git a/src/bin/pg_basebackup/pg_basebackup.c b/src/bin/pg_baseba...
[ { "msg_contents": "When pg_upgrade generates a rebuild_tsvector_tables.sql script to\nrewrite tsvector columns, it includes ALTER TABLE commands for child\ntables that cannot be altered independently from their parents:\n\npsql:rebuild_tsvector_tables.sql:673: ERROR: cannot alter inherited column \"xxx\"\n\nTh...
[ { "msg_contents": "As part of doing some database corruption investigation, I'm trying to get the pg_clog/ bit pair for a particular transaction.\n\nLet's say we check on a particular tuple, and get:\n\nSELECT xmin, id FROM mytable WHERE pk=4727366;\n\n xmin | id \n-----------+----------\n 107898222 ...
[ { "msg_contents": "\nhandyrep@john:~/handyrep$ pg_isready --version\npg_isready (PostgreSQL) 9.3.1\n\nhandyrep@john:~/handyrep$ pg_isready -h john -p 5432 -U postgres -d\npostgres -q\npg_isready: missing \"=\" after \"postgres\" in connection info string\n\nhandyrep@john:~/handyrep$ pg_isready --host=john --por...
[ { "msg_contents": "This is my first attempt at writing a patch, so it's pretty simple.\n\nCommit log sums it up:\n\nAdds a convenience feature to the explain command which prints out GUC cost\nparameters in explain text output.\n\n For example:\n\n explain (params) select * from table;\n\n will include...
[ { "msg_contents": "Reminder: Commit fest 2013-11, the third commit fest (out of four) in\nthe PostgreSQL development cycle, will start this Friday, November 15.\nIf you have a patch that you would like to see considered for inclusion\ninto PostgreSQL 9.4, please register it in the commit fest application\nbefor...
[ { "msg_contents": "Hi hackers,\n\nI'd like to propose adding inheritance support for foriegn tables.\nDavid Fetter mentioned this feature last July, but it seems stalled.\n\n http://www.postgresql.org/message-id/20130719005601.GA5760@fetter.org\n\nSupporting inheritance by foreign tables allows us to distrib...
[ { "msg_contents": "Hi,\n\nI am struggling to understand what following phrase says:\n\ntcp_keepalives_idle (integer)\n Specifies the number of seconds before sending a keepalive packet\n on an otherwise idle connection.\n\nWhat I am not sure is the meaning of \"otherwise\". Can I safely replace\nit to:\n ...
[ { "msg_contents": "Hi all,\n\nI attached patch adds new wal_level 'all'.\nIf wal_level is set 'all', the server logs WAL not only when wal_level\nis set 'hot_standby' ,but also when updating hint bit.\nThat is, we will be able to know all of the changed block number by\nreading the WALs.\nThis wal_level is infr...
[ { "msg_contents": "I have gone through the mail chain of this thread and tried to find\nthe different concerns or open ends for this patch.\n\nSummarisation of the discussion and concerns for this patch:\n\n1. Security concern in interface\n2. Security concern in Windows implementation\n3. Handling of Ctrl-C/SI...
[ { "msg_contents": "Hi,\n\nHere's a small patch which should speedup json out functions a little bit\nby removing a call to strlen for which could be a long string.\nThe length of the string is already known by the StringInfoData, so there's\nno point in letting cstring_to_text() loop over the whole string again...
[ { "msg_contents": "Attached patch allows pg_stat_statements to store arbitrarily long\nquery texts, using an external, transparently managed lookaside file.\n\nThis is of great practical benefit to certain types of users, who need\nto understand the execution costs of queries with associated\nexcessively long q...
[ { "msg_contents": "Please find attached the patch, for adding a new option for pg_basebackup, to specify a different directory for pg_xlog.\n\n\nDesign\n\nA new option: \"xlogdir\" is added to the list of options for pg_basebackup. The new option is not having an equivalent short option letter.\nThis option wil...
[ { "msg_contents": "Hi,\n\nI create a patch that is improvement of disk-read and OS file caches. It can\noptimize kernel readahead parameter using buffer access strategy and\nposix_fadvice() in various disk-read situations.\n\nIn general OS, readahead parameter was dynamically decided by disk-read\nsituations. I...
[ { "msg_contents": "In HEAD:\n\nregression=# \\d tenk1_thous_tenthous\nERROR: column i.indisidentity does not exist\nLINE 4: i.indisidentity,\n ^\n\nThis works fine in released versions.\n\n\t\t\tregards, tom lane\n\n\n-- \nSent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)\nTo make chang...
[ { "msg_contents": "When searching all the possible paths of executing a query, the optimizer\nfinds and saves the cheapest paths for the top level rel. I'd like to check\nout all the paths the optimizer has ever considered, which I believe, are\nstored in the pathlist of the top level rel. But I do not have an ...
[ { "msg_contents": "Hello,\n\nAs you know, the reason we are working changeset extraction is that we\nwant to build logical unidirection and bidirectional replication\nontop. To use changeset extraction effectively, I think one set of\nrelated features ontop is very useful:\n\nWhen extracting changes using the c...
[ { "msg_contents": "http://aws.typepad.com/aws/2013/11/amazon-rds-for-postgresql-now-available.html\n\n(The \"Free Tier\" page has not been updated yet, but I believe\nPostgreSQL should also be free for new AWS users:\nhttp://aws.amazon.com/free/ )\n\nRayson\n\n==================================================\...
[ { "msg_contents": "Hello,\n\none my customer reported a \"out of memory\" issue. After investigation he\nfound a main problem in large query that uses a lot of union all queries.\nHe wrote a self test:\n\ndo $$\n\ndeclare i integer; str text='';\n\nbegin\n\nfor i in 1..1000 loop\n\nstr := str || 'union all sel...
[ { "msg_contents": "Hi All,\n\nAs a bit of a background task, over the past few days I've been analysing\nthe uses of strncpy in the code just to try and validate if it is the right\nfunction to be using. I've already seen quite a few places where their\nusage is wrongly assumed.\n\nAs many of you will know and ...
[ { "msg_contents": "I looked into bug #8591:\nhttp://www.postgresql.org/message-id/E1Vgk41-00050x-Ck@wrigleys.postgresql.org\nand was able to reproduce the problem. The proximate cause is that\nget_eclass_for_sort_expr is wrong to suppose that it can always create new\nequivalence class entries with empty em_nu...
[ { "msg_contents": "Attached patch changes the default ciphersuite to\n\n HIGH:!aNULL\n\ninstead of old\n\n DEFAULT:!LOW:!EXP:!MD5:@STRENGTH\n\nwhere DEFAULT is a shortcut for \"ALL:!aNULL:!eNULL\".\n\n\nMain goal is to leave low-level ciphersuite details to OpenSSL guys\nand give clear impression to Postg...
[ { "msg_contents": "Initial review of the patch submitted in this message and listed in the \ncurrent CommitFest:\n\nhttp://www.postgresql.org/message-id/CAGPqQf3XwWC_4fhiNz_G6EcvPs_OV3k2pe4-aJ1dg4iyY+f_Dw@mail.gmail.com\n\nThis patch would seem to be already committed here\n\nhttp://git.postgresql.org/gitweb/?p...
[ { "msg_contents": "Hi all,\n\nPlease find attached updated patches for the support of REINDEX\nCONCURRENTLY, renamed 2.0 for the occasion:\n- 20131114_1_index_drop_comments.patch, patch that updates some\ncomments in index_drop. This updates only a couple of comments in\nindex_drop but has not been committed ye...
[ { "msg_contents": "Hi all,\n\nCurrently, bgworkers offer the possibility to connect to a given\ndatabase using BackgroundWorkerInitializeConnection in bgworker.h, but\nthere is actually no way to disconnect from a given database inside\nthe same bgworker process.\n\nOne of the use cases for that would be the po...
[ { "msg_contents": "I'm proposing that we upgrade our Autoconf to 2.69, which is the latest\nright now (release date 2012-04-24). There are no changes in the source\nneeded, just tweak the version number in configure.in (see below) and\nrun autoreconf. I've compared the configure output before and after on\na ...
[ { "msg_contents": "Various places in the constraint checking code say something like, if we\never implement assertions, here is where it should go. I've been\nfiddling with filling in those gaps for some time now, and the other day\nI noticed, hey, this actually kind of works, so here it is. Let's see\nwhethe...
[ { "msg_contents": "On Fri, Nov 15, 2013 at 12:50 AM, Etsuro Fujita <fujita.etsuro@lab.ntt.co.jp\n> wrote:\n\n>\n> I think that, as a secondary effect of the patch, the scan would be\n> performed a bit efficiently.\n>\n>\nHi Etsuro,\n\nWould you be able to supply some benchmarks of a work load which benefits\nfr...
[ { "msg_contents": "Hi,\n\nWe have a problem where PostgreSQL will restart or shutdown when calling it through PDAL write filter. This was after we applied pgtune on the postgresql.conf.\n\nThese are the settings on the machine:\nVirtual Machine - Ubuntu 13.10\n1.92GB Memory\n2 Parallel Processors\n\nAnd these a...
[ { "msg_contents": "Attached is a patch to provide a new event trigger that will fire on \ntransaction commit. I have tried to make certain that it fires at a \nsufficiently early stage in the commit process that some of the evils \nmentioned in previous discussions on this topic aren't relevant.\n\nThe triggers...
[ { "msg_contents": "First review of the above patch as listed in current CommitFest as well \nas subsequent ECDH patch in the thread below:\n\nhttp://www.postgresql.org/message-id/1383782378-7342-1-git-send-email-markokr@gmail.com\n\nPlatform OpenSuse 12.2\n\nBoth patches applied cleanly.\n\nConfigured:\n\n./con...
[ { "msg_contents": "Hi,\n\nI've observed an issue whereby a parent table with a trigger that\nredirects inserts to a child table fails to run the trigger\nsuccessfully if written to using a foreign table:\n\nExample:\n\nDatabase 1:\n\nCREATE TABLE parent (id int, content text);\n\nCREATE TABLE child () INHERITS ...
[ { "msg_contents": "On Sun, Oct 20, 2013 at 7:21 AM, Magnus Hagander <magnus@hagander.net> wrote:\n> On Sun, Oct 20, 2013 at 2:22 AM, Peter Geoghegan <pg@heroku.com> wrote:\n\n>> It seemed neater to me to create a new flag, so that in principle any\n>> vacuum() code path can request autovacuum_work_mem, rather t...
[ { "msg_contents": "Hackers,\n\nCo-worker asked a question I could not answer: Why is IF NOT EXISTS not supported by CREATE TABLE AS? Oversight, perhaps? Or maybe because one expects the table to have the data from the SELECT statement? If the latter, maybe OR REPLACE would be useful?\n\nBest,\n\nDavid\n\n-- \nS...
[ { "msg_contents": "Hello! \n\nCould anyone review patch suggested by Jeff Janes ?\n\nInitial thread http://www.postgresql.org/message-id/flat/1384356585.995240612@f50.i.mail.ru#1384356585.995240612@f50.i.mail.ru\n\nThanks in advance!\n\n> \n> On Wed, Nov 13, 2013 at 3:53 PM, Sergey Burladyan < eshkinkot@gmail....
[ { "msg_contents": "Hi,\n\nAttached is the patch that improves usage of '*' wildcard in .pgpass,\nparticularly in the host part. The use case is below.\n\nI work with multiple environments (like staging, production, performance\nand so on), each one containing tens of different database clusters, each\ncluster h...
[ { "msg_contents": "Review for Pavel Stehule's patch in CF 2013-11:\n\n https://commitfest.postgresql.org/action/patch_view?id=1253\n\nPatch applies cleanly and works as intended; it's a very straightforward\npatch so no surprises there.\n\nThe patch expands the range of completable items for \\pset, putting\nt...
[ { "msg_contents": "Hi All,\n\nI want to modify postgresql code for the first time.\nI tried to use netbeans to compile the code.\n\nNow, I wanted to print something on console when I create a table or an\nindex. I am printing just for testing purpose to get a feel of code.\n\nPlease tel me the procedure to run ...
[ { "msg_contents": "Hi hackers,\n\n I used jdbc to connect to PostgreSQL ,and I found parse \nnearly three\n times of bind and execute.Is is normaly? What factors may \ncause this result?\n\n The OS is CentOS 5. The PG is 9.0.9. The JDBC is 9.2.\n\n Yours,\n Wang Shu...
[ { "msg_contents": "Hi everyone,\n\n Finally we found , the JDBC function we ever modified\n contributed to this phenomenon, thanks of all.\n\n\n Yours,\n Wang Shuo\n HighGo Software Co.,Ltd.\n November 18, 2013\n\n\n\n-- \nSent via pgsql-hackers mailing list (pgsql-hackers@postgresql.o...
[ { "msg_contents": "On 18 November 2013, Amit Khandekar wrote:\n\n>> On 18 October 2013 17:07, Rajeev rastogi <rajeev.rastogi@huawei.com<mailto:rajeev.rastogi@huawei.com>> wrote:\n>>From the following mail, copy behaviour between stdin and normal file having some inconsistency.\n>> http://www.postgresql.or...
[ { "msg_contents": "On 18 November 2013, Amit Khandekar wrote:\n>> On 18 October 2013 17:07, Rajeev rastogi <rajeev.rastogi@huawei.com<mailto:rajeev.rastogi@huawei.com>> wrote:\n>>From the following mail, copy behaviour between stdin and normal file having some inconsistency.\n>> http://www.postgresql.org/...
[ { "msg_contents": "Hi All,\n\nIs there any way to force the optimizer to use a specific join operator?\nFor example, in SQL Server, I can do this way\n\nselect * from (A inner hash join B on A.a = B.b) inner loop join C on A.a =\nC.c\n\nI did some search but didn't find PostgreSQL had similar join hints except\...
[ { "msg_contents": "Review for Andrew Dunstan's patch in CF 2013-11:\n\n https://commitfest.postgresql.org/action/patch_view?id=1312\n\nThis review is more from a usage point of view, I would like\nto spend more time looking at the code but only so many hours in a day,\netcetera; I hope this is useful as-is.\n\...
[ { "msg_contents": "Three times in the last two weeks, we have experience data corruption secondary servers using streaming replication on client systems. The versions involved are 9.0.14, 9.2.5, and 9.3.1. Each incident was separate; two cases they were for the same client (9.0.14 and 9.3.1), one for a differ...
[ { "msg_contents": "Following are my initial comments for\nhttps://commitfest.postgresql.org/action/patch_view?id=1203\n\n\n1. It no longer applies, probably due to commit\na18167510f4c385329697588ce5132cbf95779c3\n\nerror: contrib/hstore/hstore--1.1.sql: No such file or directory\n\n\n2. Compatibility with HSto...
[ { "msg_contents": "Folks,\n\nSpeaking of legacy code with bad default behaviors: pg_ctl. The current\nutility is designed to fathfully reproduce the rather hackish shell\nscript we originally had for postgres startup. This results in a\ncouple of unintuitive defaults which give sysadmins and config\nmanageme...
[ { "msg_contents": "Sorry but I don't know how to respond to an old thread I found on\npostgresql.org:\nhttp://www.postgresql.org/message-id/20766.1357318482@sss.pgh.pa.us\n\nI presume this is still an open issue. While working on a new feature I\nwrote a stress test for it. After fixing my bugs, I couldn't ge...
[ { "msg_contents": "Hi,\n\nRecently, I found very interesting case where using IOS could provide\nserious benefits, but database not able to use it.\n\nI think my ideas could be beneficial in two ways:\n1)as work around of the current limitations\n2)as idea to improve planner/executor in the future\n\n\nCase:\nS...
[ { "msg_contents": "Referring to the instructions located here:\nhttp://www.postgresql.org/docs/8.3/static/install-win32-libpq.html\n\nI noticed that the msvs makefile doesn't work. One file is missing, and the\nmanifest embedding test is a bit awkward. The attached patch fixes these\nissues.\n\nBR,\nWim.\n\n\n-...
[ { "msg_contents": "Hi All,\n\nI was reading b tree index code and I wanted to the know the calling\nfunction which calls\nbtinsert<http://doxygen.postgresql.org/nbtree_8c.html#a2b69e4abd6e38fbb317a503b8cf6e00a>\n(PG_FUNCTION_ARGS<http://doxygen.postgresql.org/fmgr_8h.html#adf4dec9b7d23f1b4c68477affde8b7ff>)\nfu...
[ { "msg_contents": "Hello all,\n\nI am upgrading a 8.4 cluster to 9.1 and am seeing the following:\n\n\tSQL command failed\n\n\tCREATE TEMPORARY TABLE info_rels (reloid) AS\n\tSELECT c.oid\n\tFROM\n\t\tpg_catalog.pg_class c\n\t\t\tJOIN pg_catalog.pg_namespace n ON c.relnamespace = n.oid\n\t\t\t\tLEFT OUTER JOIN ...
[ { "msg_contents": "On 19 November 2013, Amit Khandekar wrote:\n>On 18 November 2013 18:00, Rajeev rastogi <rajeev.rastogi@huawei.com<mailto:rajeev.rastogi@huawei.com>> wrote:\n>>On 18 November 2013, Amit Khandekar wrote:\n> >>Please find the patch for the same and let me know your suggestions.\n>>>In this call ...
[ { "msg_contents": "Hi,\nis clang supported for compiling Postgres? I found some websites with\ninformation that some people compiled Postgres succesfully, but I got\nplenty of errors even with running ./configure. So I'm wondering if it's my\nfault, however gcc works properly.\n\nthanks,\nSzymon\n\nHi,is clang ...
[ { "msg_contents": "As an extension with a lot of CPU load, we (postgis) tend to use flinfo->fn_extra a lot, for caching things that are intensive to calculate at the start of a query and reuse throughout subsequent functions calls. \n\n- coordinate projection objects\n- indexes of the edges of large geometries\...
[ { "msg_contents": "Hi all\n\nI'm spending a lot of time staring at parse and plan trees at the\nmoment, and I'm finding reading them rather cumbersome.\n\nFor those of you who do this a lot, do you use any sort of tooling to\nhelp you out? Just being able to collapse and expand subtrees would be a\nlifesaver.\n...
[ { "msg_contents": "Hi\n\nThe vacuum procedure do rewrite for a table but, what happened if the table\nhas some TOASTed columns?\n\nPlease, help me to find a module or function in source code which is\nresponsible for\nvaccuming the TOAST relation.\n\nRegards,\nSoroosh Sardari\n\nHiThe vacuum procedure do rewrit...
[ { "msg_contents": "On 20 November, Amit Khandekar wrote:\n>>>>I hope you meant to write test case as psql -d postgres -c \"\\copy tab from stdin; insert into tab values ('lll', 3)\", as if we are reading from file, then the above issue does not come.\n>>>I meant COPY with a slash. \\COPY is equivalent to COPY F...
[ { "msg_contents": "I'm trying to catch up on all of this dynamic shared memory stuff. A \nbunch of random questions and complaints:\n\nWhat kind of usage are we trying to cater with the dynamic shared \nmemory? How many allocations? What size will they have have typically, \nminimum and maximum? I looked at the...
[ { "msg_contents": "Consider the following case of a function that requires a column\ndefinition list (example borrowed from the regression tests):\n\ncreate function array_to_set(anyarray) returns setof record as $$\n select i AS \"index\", $1[i] AS \"value\" from generate_subscripts($1, 1) i\n$$ language sql ...
[ { "msg_contents": "Hi all,\n\nThe main goal of this patch is enable to an user the capability to store\noptions\n(relations and attributes) related to extensions by using a fixed prefix\ncalled 'ext' in\nthe defined name. It's cant be useful for replication solutions.\n\nSo, with this patch we can do that:\n\nA...
[ { "msg_contents": "I'm really concerned by this post on Linux's fsync and disk flush behaviour:\n\nhttp://milek.blogspot.com.au/2010/12/linux-osync-and-write-barriers.html\n\nand seeking opinions from folks here who've been deeply involved in\nwrite reliability work.\n\nThe amount of change in write reliablity ...
[ { "msg_contents": "Hi All,\n\nI would like to contribute to postgresql. But when i find a bug or issue\nwhich i would like to fix then a lot of questions arise to me. Those are\nbelow:\n\n1)This one (the bug or issue in to do list i have selected) may be to hard\nto me. so from which one should i start?\n\n2)wh...
[ { "msg_contents": "On 16/09/13 16:20, Satoshi Nagayasu wrote:\n> Thanks for checking. Fixed to eliminate SnapshotNow.\n\nLooking forward to get a new patch, incorporating the comments, that are already given in the following mails:\n\n1. Jaime Casanova: \"The name pgstattuple2, doesn't convince me... maybe you ...
[ { "msg_contents": "Hello\n\nI wrote new styles for psql table borders.\n\nhttp://postgres.cz/wiki/Pretty_borders_in_psql\n\nThis patch is simply and I am think so some styles can be interesting for\nfinal presentation.\n\nDo you think so this feature is generally interesting and should be in core?\n\nRegards\n...
[ { "msg_contents": "I'm not quite sure why nobody else seems to be complaining, but the changes\nto type.h in this commit seems to have broken things little.\n\nIn the visual studios build I'm getting:\n\n src\\interfaces\\ecpg\\preproc\\preproc.y(84): error C2065: 'ET_FATAL' :\nundeclared identifier [D:\\Postg...
[ { "msg_contents": "Hi all\n\nI have updatable security barrier views working for INSERT and DELETE,\nso this might be a good chance to see whether the described approach is\nacceptable in reality, not just in theory.\n\nI've been surprised by how well it worked out. I actually landed up\nremoving a lot of the e...
[ { "msg_contents": "Where are we on the remaining possible pushdowns for foreign data\nwrappers, particularly the Postgres one? I know we do WHERE restriction\npushdowns in 9.3, but what about join and aggregate pushdowns? Is\nanyone working on those?\n\nI know join pushdowns seem insignificant, but it helps t...
[ { "msg_contents": "9.3 documentation says:\n\nAccording to the standard, the column-list syntax should allow a list of\ncolumns to be assigned from a single row-valued expression, such as a\nsub-select:\n\nUPDATE accounts SET (contact_last_name, contact_first_name) =\n (SELECT last_name, first_name FROM sale...
[ { "msg_contents": "Hi,\n\nHeikki's comments about StartupMultiXact() being executed too late in\nhttp://archives.postgresql.org/message-id/528C9392.8000004%40vmware.com\nmade me look at how multixact truncation works, since that's where\nSimpleLruTruncate() would trigger an error because of an unitialized\nlate...
[ { "msg_contents": "Hi,\n\nWhile looking at the multixact truncation code (mail nearby), I've\nnoticed that there's a significant difference in the way multixact\nmembers are accessed since fkey locks were introduced:\n\n<9.3 when heap_lock_tuple finds a XMAX_IS_MULTI tuple it executes\nMultiXactIdWait() which i...
[ { "msg_contents": "Hello,\n\nI may be totally missing something, but there seems to be no way \nto create a COMMENT on a domain constraint. There is\n\nCOMMENT ON CONSTRAINT constraint_name ON table_name\n\nbut no such thing for domain constraints, which seems like a \nweird omission. \n\nI couldn't find any ...
[ { "msg_contents": "In master branch, server is not getting started with log level as debug5.\n\nSimple steps to reproduce the problem:\na. initdb -D ..\\..\\Data\nb. change log_min_messages = debug5 in postgresql.conf\nc. start server (pg_ctl start -D ..\\..\\Data) -- server doesn't get started\n\nRelevant mes...
[ { "msg_contents": "On 21 November 2013, Amit Khandekar <amit.khandekar@enterprisedb.com<mailto:amit.khandekar@enterprisedb.com>> wrote:\n>Ok. we will then first fix the \\COPY TO issue where it does not revert back the overriden psql output file handle. Once this is solved, fix for both COPY FROM and COPY TO, l...
[ { "msg_contents": "When trying to add the extension with \\i it writes an error message:\n Use \"CREATE EXTENSION uuid-ossp\" to load this file.\n\nUnfortunatly this does not work for extensions with dashes. Must CREATE \nEXTENSION \"uuid-ossp\". Proposed patch is attached.\n\nRegards\nMario\n\n\n\n\n-- \nS...
[ { "msg_contents": "We started with\n\nFri Nov 15\n\nStatus Summary. Needs Review: 79, Waiting on Author: 7, Ready for Committer: 5, Committed: 7, Returned with Feedback: 3, Rejected: 1. Total: 102.\n\nWe are now at\n\nFri Nov 22\n\nStatus Summary. Needs Review: 47, Waiting on Author: 28, Ready for Committer: 10...
[ { "msg_contents": "AddressSanitizer (http://clang.llvm.org/docs/AddressSanitizer.html)\n(also available through gcc, but I used clang), reports one bug, which\nI traced down to this code in ruleutils.c:\n\n [elsewhere:]\n #define ViewSelectRuleName \"_RETURN\"\n\n\n /*\n * Get the pg_rewrite tuple ...
[ { "msg_contents": "Hi,\n\nI spend some time trying to figure out why PostgreSQL builds on\nS390-Linux, but Postgres-XC doesn't. Well at least this holds for the Debian\npackages. So far I haven't figured it out. However, it appears to me that the\nbuild should fail for both. I'm not an S390 expert by any means...
[ { "msg_contents": "I am reading the following in the documentation: \"Tip: A common mistake is to\nwrite a semicolon immediately after BEGIN. This is incorrect and will result\nin a syntax error.\"\n\nSo, \"common mistake\" means semicolons after BEGIN seem consistent to many\npeople - it seems consistent to me...
[ { "msg_contents": "hello.\nin copy.c is one function that its name is CopyOneRowTO.\nin this function have one foreach loop. in this loop first if have this\ncondition: !cstate->binary\nwhat means this condition and when true this condition?\nthank you.\n\nhello.in copy.c is one function that its name is CopyOn...
[ { "msg_contents": "Because of the recently discovered data-corruption-on-replication-slaves\nbug, we're going to put out new minor releases for the back branches.\nThe plan is to wrap tarballs Monday Dec 2 for public announcement Thursday\nDec 5. We considered doing it this coming week instead, but that seems\...
[ { "msg_contents": "Hi,\n\nThe attached pgbench testcase can reproduce two issues:\n1) (takes a bit)\nTRAP: FailedAssertion(\"!(((xid) >= ((TransactionId) 3)))\", File:/pruneheap.c\", Line: 601)\n\nThat's because HeapTupleHeaderGetUpdateXid() ignores aborted updaters\nand returns InvalidTransactionId in that cas...
[ { "msg_contents": "Hello all\n\nI did check of pg_stat_statements_ext_text.v2.2013_11_16.patch, that\nintroduce a external storage for query text\n\nI got a compilation warning:\n\nbash-4.1$ make all\ngcc -O2 -Wall -Wmissing-prototypes -Wpointer-arith\n-Wdeclaration-after-statement -Wendif-labels -Wmissing-form...
[ { "msg_contents": "Hello everyone.\n\nI am new to writing extensions to PostgreSQL. And I am not familiar with the C language (My professional languages: Ruby, Golang, Java). But still want to write an extension for PostgreSQL.\n\nAfter articles of Michael Paquier about  background workers in PostgreSQL, I real...
[ { "msg_contents": "session_preload_libraries is not in the sample config file. Is that just\nan oversight?\n\nRegards,\n\tJeff Davis\n\n\n\n\n-- \nSent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)\nTo make changes to your subscription:\nhttp://www.postgresql.org/mailpref/pgsql-hackers\n", "...
[ { "msg_contents": "Hello,\n\nthis patch introduces IF NOT EXISTS clause to CREATE (AGGREGATE | CAST\n|COLATION |DOMAIN |ROLE |SEQUENCE |SEARCH CONFIGURATION |SEARCH DICTIONARY\n| SEARCH PARSE | SEARCH TEMPLATE | TYPE). Implemented feature was discussed\nmore times in spring and summer, and this patch was ready ...
[ { "msg_contents": "On Sat, Nov 9, 2013, Amit Kapila wrote\n\n\n\n> On Fri, Nov 8, 2013 at 10:37 AM, Rajeev rastogi\n\n> <rajeev.rastogi@huawei.com<mailto:rajeev.rastogi@huawei.com>> wrote:\n\n> > On Fri, 08 November 2013 09:47\n\n> >\n\n> >> On Tue, Nov 5, 2013 at 3:20 PM, Rajeev rastogi\n\n> >> <rajeev.rastogi...
[ { "msg_contents": "On 16/09/13 16:20, Satoshi Nagayasu wrote:\n> Thanks for checking. Fixed to eliminate SnapshotNow.\n\nLooking forward to get a new patch, incorporating the comments, that are already given in the following mails:\n\n1. Jaime Casanova: \"The name pgstattuple2, doesn't convince me... maybe you ...
[ { "msg_contents": "On 25 November 2013, Amit Khandekar <amit.khandekar@enterprisedb.com<mailto:amit.khandekar@enterprisedb.com>> wrote:\n>>>Ok. we will then first fix the \\COPY TO issue where it does not revert back the overriden psql output file handle. Once this is solved, fix for both COPY FROM and COPY TO,...
[ { "msg_contents": "Hi,\n\nWhen looking at table 8-1 at \nhttp://www.postgresql.org/docs/9.3/static/datatype.html i noticed that \nall types except for json was in alphabetical order. I have attached a \npatch which fixes this.\n\nBy the way should character and character varying be swapped in that \ntable too?\...
[ { "msg_contents": "Hi all,\n\nWhen I execute query which contains error, the server returns error\nwith line number.\n\nERROR: relation \"hoge\" does not exist\nLINE 35: hoge;\n\nBut when query is long, I was not sure the location where I wrote wrong SQL.\nDoes the psql have option which shows line number?\nIf...
[ { "msg_contents": "Hi,\n\nA customer of ours reported that some columns were missing from\npg_attribute. Investigation showed that they were visible to sequential\nbut not index scans. Looking closer, the page with the missing\nattributes is marked as all-visible, but the xids on the individual rows\nwere xids ...
[ { "msg_contents": "I was looking for ways to reduce the noise in Postgres make output,\nspecifically, I wanted to eliminate the \"Nothing to be done for `all' \"\nmessages, since they don't add much value, and just ad to the clutter.\n\nMost of the solutions I have seen propose grepping out the noisy parts. But...
[ { "msg_contents": "I happened to build in a shell that was still set up for the clang\naddress sanitizer, and got the attached report.  On a rerun it was\nrepeatable.  XLogInsert() seems to read past the end of a variable\nallocated on the stack in doPickSplit(). I haven't tried to analyze\nit past that, since ...
[ { "msg_contents": "Dan Wood sent me off-list the test case mentioned in\n\nhttp://www.postgresql.org/message-id/CAPweHKfExEsbACRXQTBdu_4QxhHk-Cic_iwmbh5XHo_0Z=Q-1g@mail.gmail.com\n\nI've been poking at it, and one of the failure modes I'm seeing is that\nall the backends hang up without crashing. I thought at ...
[ { "msg_contents": "On 26 November 2013, Amit Khandelkar wrote:\n>>Now if \\copy command is called then, we are setting the appropriate value of _psqlSettings->copystream in do_copy and same is being used inside handleCopyIn() and handleCopyOut(). Once the \\copy command execution finishes, we are resetting\n>> ...
[ { "msg_contents": "Hackers,\n\nI've been toying with the idea of a standard for database URIs, mostly inspired by the libpq and JDBC formats Here's a writeup:\n\n http://theory.so/rfc/2013/11/26/toward-a-database-uri-standard/\n\nWhat do you think?\n\nThanks,\n\nDavid\n\n\n\n-- \nSent via pgsql-hackers mailing...
[ { "msg_contents": "hello.\nI want do understand that did can we have name without null-terminator?\nin src/backend/util/adt/name.c in nameout() function is:\nName s = PG_GETARG_NAME(0);\nPG_RETURN_CSTRING(pstrdup(NameStr(*s)));\nwhat do the pstrdup() function?\ndo this function create string from name wi...
[ { "msg_contents": "Hi everyone - The Call for Papers for the 5th annual HITB Security\nConference in Amsterdam is now open. #HITB2014AMS takes place at the\nBeurs van Berlage from the 27th - 30th of May 2014. The official\nconference hotel for the event is the Hilton DoubleTree.\n\nAs always we start with 2-day...