threads listlengths 1 2.99k |
|---|
[
{
"msg_contents": "I suppose there isn't any good reason that elog.c and exc.c refer to\nsys_nerr and sys_errlist directly rather than using strerror() (probably\nan artifact from before port/strerror.c was added?) and given that it is\nprovably unportable to do so (Cygwin) I'm inclined to make the obvious\nfix... |
[
{
"msg_contents": "anybody knows to use pqaccess ?\n\nI would like ->\n\ntable : ___________\nf1 : ___________\n\nexecute the query : SELECT f1, f2, f3,f4 FROM 'name_table' WHERE f1 LIKE\n'name_f1' ORDER BY f1 ;\n\n|--------------|----------|---------|-------|\n| f1 | f2 | f3 | f4 ... |
[
{
"msg_contents": "I just noticed the following peculiar behavior.\n\nBy default, a table's owner has all access rights for it:\n\n\tplay=> create table foo(f1 int);\n\tCREATE\n\tplay=> insert into foo values(1);\n\tINSERT 328713 1\n\nBut let him grant some rights to someone else:\n\n\tplay=> grant select on fo... |
[
{
"msg_contents": "Hi,\n\n we've suddenly started getting this error message out of postgres\n(7.0.2). Does anybody know where it comes from?\n\nERROR: UNLockBuffer: buffer 0 is not locked\n\nAny help appreciated,\n\nAdriaan\n\n",
"msg_date": "Fri, 29 Sep 2000 17:46:44 +0300",
"msg_from": "Adriaan J... |
[
{
"msg_contents": "Hi,\n\nwe tried to switch the log on by lauching the postmaster\nwith -d 5 redirected to a file but this file is deseperatly empty,\nwhat it's wrong ? is the process writing to an other file or\ndo we made a mistake with the arguments ?\n\nthanks in advance\n\nregards,\n\njc",
"msg_date":... |
[
{
"msg_contents": "\n> What I'm thinking about doing is eliminating the \"skipAcl\" RTE field\n> and instead adding an Oid field named something like \"checkAclAs\".\n> The semantics of this field would be \"if zero, check access \n> permissions\n> for this table using the current effective userID; but if not z... |
[
{
"msg_contents": "I've committed the announced unified regression test driver. (See Sep.20\nmessage for list of features.) You can invoke it via `make check', either\nin the top level directory, or directly in src/test/regress. To test\nagainst a running installation, use `make installcheck'.\n\nThe existin... |
[
{
"msg_contents": "\nI have a very serious need for replication for my Postgres\napplication. Rather than deciding to spend $40k on a commercial DBMS\nwith replication (minimum cost) I decided I would invest my money in\nhiring a contractor to add support for the feature I need into\nPostgres. The patch that ... |
[
{
"msg_contents": "Scrappy's late victory ... The documentation needs to know about the\ncorrect version number as well, but that doesn't work currently, without\ncreating a dependency on some file generated by config.status. So I'm\ninclined to make it a separate file that only contains the number.\n\n-- \nPe... |
[
{
"msg_contents": "The \"rule\" regression test gets stuck in an infinite loop in\noptimizer/prep/prepunion.c:find_inheritable_rt_entry. It seems to be a\ncoding mistake; from what I can tell the loop can't ever exit if there are\nno inherited tables.\n\nI also get failures in sanity_check and misc, which migh... |
[
{
"msg_contents": "This seems to be a bug:\n\n Create Table tab1 (f1 integer);\n Create Function tot_of_tab1() returns integer \n as 'select cast(sum(f1) as int4) from tab1' language 'sql';\n Alter Table tab1 add check(tot_of_tab1() > 0);\n \n zzz=# insert into tab1 values(1);\n INSERT 142380 1\n zzz=# ins... |
[
{
"msg_contents": "I have been away from the mailing lists for perhaps six weeks. I am\ndone my backlog of work from the book, and will start going through the\n5k messages I have accumulated. Please don't be upset with me for\nreplying to messages over one month old.\n\n-- \n Bruce Momjian ... |
[
{
"msg_contents": "The core group has decided to delay 7.1 beta until November 1. We have\ndone this to enable the write-ahead log code (WAL) to be shipped with\n7.1.\n\nOf course, it also gives me time to catch up on my e-mail, which I am\ndoing now. :-)\n\n-- \n Bruce Momjian | http... |
[
{
"msg_contents": "This brings up some good issues for the 7.2 release. Will large objects\nbecome just an API on top of toast, or should they remain as a separate\nphysical storage format?\n\n\n> At 08:30 PM 3/15/00 -0500, Bruce Momjian wrote:\n> \n> >Yes, we should keep it. I see now it is for purely binary... |
[
{
"msg_contents": "Do other people have a comment on this. I am inclined to leave it\nalong. This is the first complaint I have heard, and elog(PGDEBUG) just\nlooks funny. We don't prefix NOTICE or ERROR.\n\n\n> In the file\n> \n> include/utils/elog.h\n> \n> there is a macro named\n> \n> DEBUG\n> \n> t... |
[
{
"msg_contents": "If you do decide to prefix DEBUG, please consider prefixing at least ERROR\nas well. It produces a lot of warnings when compiling on Win32 (ERROR is\nalready defined as part of the standard windows headers). It's just\nwarnings, though.\n\n//Magnus\n\n\n> Do other people have a comment on thi... |
[
{
"msg_contents": "Hi,\n\nThere seems to be a problem in the configure script for solaris.\n(Recent CVS copy)\n\n ./configure\n <snip>\n checking for POSIX signal interface... (cached) yes\n ./configure: syntax error at line 6907: `;' unexpected\n\n\nA \"for\" construct, traced back to config/tcl.m4, is ups... |
[
{
"msg_contents": "I have a table. When I vacuum verbose it...\n\nmail=# vacuum verbose tblemaildomain ;\nNOTICE: --Relation tblemaildomain--\nNOTICE: Pages 199: Changed 0, reaped 0, Empty 0, New 0; Tup 27494: Vac 0,\nKeep/VTL 1/0, Crash 0, UnUsed 0, MinLen 40, MaxLen 80; Re-using:\nFree/Avail. Space 0/0; En... |
[
{
"msg_contents": "Just for fun I changed the extension of my SPI function and trigger\nsource file from .c to .C and tried to compile it:\n\n> g++ -g -Wall -I /usr/include/postgresql -fPIC -pedantic -c -o bid_control.o bid_control.C\n> In file included from /usr/include/postgresql/nodes/relation.h:18,\n> ... |
[
{
"msg_contents": "Hi,\n\nThe subject says it all.\n\nI want to mess up the backend so...\n\nDo I need lex or flex?\nDo I need autoconf (does it even exist for Windows)?\nDo I need Cygnus?\nDo I need any other aditional packages?\n\nDoes it compile with VC6?\nDoes nmake do or do I need gnu make?\n\nOr is it eas... |
[
{
"msg_contents": "\nIt recently came to my attention that, when dumping a single table and\nusing the --blobs option, pg_dump will dump all BLOBs (not just those\nreferenced by the table). Similarly, restoring a single table from a backup\nwill restore all the BLOBs.\n\nThis is (at least) non-intuitive. \n\nUn... |
[
{
"msg_contents": "\nTrying to compile PostgreSQL latest-CVS on SuSE 6.4 produces the following\nerror (was talked about on the list this past week, IIRC):\n\nmake[3]: Entering directory `/tmp/pgsql/src/backend/parser'\nyacc -d gram.y\nyacc: f - maximum table size exceeded\nmake[3]: *** [parse.h] Error 2\n\nro... |
[
{
"msg_contents": "> Yes. You could maybe do it in a Cygwin environment, but I think\n> it'd be an exercise in frustration.\nIt depends on your skills. Cygwin is a UNIX environment on NT under\ndevelopment. \n \n> > What do I need in Linux (Cygnus, lex, flex...)?\nCygwin 1.1.4 , CygIPC 1.05 or higher, the patc... |
[
{
"msg_contents": "Sorry,\n\nPostgres is 6.5.3 on Linux 2.2.10\n\nRalf\n\n\n",
"msg_date": "Mon, 2 Oct 2000 00:59:48 +0200 (MET DST)",
"msg_from": "Ralf Tschiersch <ralf@net-service.de>",
"msg_from_op": true,
"msg_subject": "pg_log deleted, still help needed (2)"
}
] |
[
{
"msg_contents": "A couple glitches to work out in pg_regress:\n\n1. 'make installcheck' fails if PGPORT isn't set in environment. Should\nomit '-p $PGPORT' options from program invocations unless PGPORT is set.\nActually, I think you should omit -p period; the programs are perfectly\ncapable of reading PGPOR... |
[
{
"msg_contents": "\n\n What happen with www.postgresql.org? My browser is always redirected \nto http://www.cz.postgresql.org/.\n\n But I haven't some terrible mirror (with last change \"July 1999\"), \nI want nice and native PG's web! :-)\n\n\t\t\t\tKarel\n\nPS. Exist some check what happen at PostgreSQL mirr... |
[
{
"msg_contents": "The file \"postgres.h\" (or \"c.h\" or \"config.h\", whatever is used) needs to\nbe the very *first* file included by each source file. Next time you\ntouch a source file, please check that this is the case.\n\nThe obvious failure mode is that if config.h redefines const, volatile, or\ninlin... |
[
{
"msg_contents": "The current behaviour of libpq is to use Unix sockets whenever the host\nparameter (PGHOST or setdbLogin argument) is NULL/unset.\n\nCould we extend that to also use Unix sockets if the parameter is set but\nempty? That could avoid a bunch of shell contortions; e.g., you can't\nportably un-e... |
[
{
"msg_contents": "Hi,\n\nI would like to know if postgres comes with some kind of backup application? \nI mean something that would do database backup and restore, something like \ninformix's ontape and logical logs.\n\nThanks\n\n-- \n\"And I'm happy, because you make me feel good, about me.\" - Melvin Udall\n... |
[
{
"msg_contents": "This may seem a little silly, but I'd like to request a feature to\nimplement timed triggers.\n\nWith the number of cron jobs that run a perl script which runs a simple\nSELECT function(); that does various nightly cleanup or maintenance\n(billing run) it would be much nicer to have an actual... |
[
{
"msg_contents": "Fresh from /var/log/postgres.log:\n\npostgres localhost www-data auction SELECT: ../iconv/skeleton.c:297: gconv: Asse\nrtion `outbufstart == ((void *)0)' failed.\nServer process (pid 27393) exited with status 6 at Mon Oct 2 09:01:43 2000\n\nStarting a new postmaster seems to cure the problem... |
[
{
"msg_contents": "Hi,\n\nWhen two tables (table2 and table3) have foreign keys\nreferring to a common table(table1), I am unable to\nhave 2 concurrent transactions - one performing insert\non table1 and the other on table2, when the records\nbeing inserted have the same foreign key. \n\nIf I use JDBC, one of t... |
[
{
"msg_contents": "I've been looking at UNION/INTERSECT/EXCEPT with an eye to making them\nwork in views and subselect-in-FROM (same thing really ;-)). I had first\nthought that some marginal hacking on the parsetree representation might\nbe enough, but after study I am realizing just how broken this code real... |
[
{
"msg_contents": "Has anybody been getting pgsql-committers messages the last few days?\n\n-- \nPeter Eisentraut peter_e@gmx.net http://yi.org/peter-e/\n\n",
"msg_date": "Mon, 2 Oct 2000 21:39:46 +0200 (CEST)",
"msg_from": "Peter Eisentraut <peter_e@gmx.net>",
"msg_from_op": true,
"m... |
[
{
"msg_contents": "\ni need to query some oracle tables from a freebsd system.\n\nis there a lightweight method to do this, or do i have no choice but to\nput in the Oracle Linux stuff and use their API's?\n\n-- \n[ Jim Mercer jim@reptiles.org +1 416 410-5633 ]\n[ Reptilian... |
[
{
"msg_contents": "I have noticed that some operating system distributors ship custom-patched\nversions of Autoconf. That is pretty brain-dead because some of the\nchanges make things work worse on other systems.\n\nTherefore I would recommend that everybody install the original\nautoconf-2.13.tar.gz from GNU ... |
[
{
"msg_contents": "This time I'm pretty sure I caught the initial crash during an update:\n\nI disabled the vacuum analyze and still got table corruption with a crash:\n\ntwo crashdumps of 7.0.2+somepatches\n\n * $Header: /home/pgcvs/pgsql/src/backend/access/common/heaptuple.c,v 1.6\n2 2000/04/12 17:14:3... |
[
{
"msg_contents": "Can someone comment on this?\n\n> Bruce Momjian wrote:\n> > \n> > Seems this was already done in 7.1, right?\n> [thread on puts() and fprintf(stderr and printf instead of tprintf or\n> replacement truncated]\n> \n> There are still scads of fprintf(stderr, \"some error message from\n> postmast... |
[
{
"msg_contents": "I think that pg_dump should not quote identifiers that only contain\nlower-case letters and underscores. That will make it easier to move\ndumps to other database products, because PostgreSQL is off the spec in\nmatters case folding in identifiers. But it's just an idea; if the\nperformance... |
[
{
"msg_contents": "\nHi,\n\nI was wondering if anyone could offer me some pointers in extending the\nC++ classes used for client applications? I'm interested in developing a\nset of C++ classes which will interact directly with the postgres back-end\nwith the following enhancements to the current implementatio... |
[
{
"msg_contents": "If you are looking for programs which tend to hold longstanding\ntransactions, this micro patch might be handy.\nWhether it is of general use is debatable. It will replace 'idle' by\n'trans' if the backend is idle but a transaction is pending.\n\nSimply use ps to view the backend's status.\n\... |
[
{
"msg_contents": "\nI am trying to compile an app (compiles on *BSD, Linux) but for some\nreason I cant get it to compile on AIX 4.3.3.3. It seems not to like the\n\nlibcrypt ??\n\nusing:\ngcc version 2.95.2 19991024 (release)\nPostgreSQL 7.02\nGNU Make version 3.79.1\nld ??\nFlags: -I/usr/include/pgsql/ -lrts... |
[
{
"msg_contents": ">> If anyone has suggestions/additions to this list it would be greatly\n>> appreciated!\n\n>\tI'm very interested in helping with this (it is on my list of\nprojects\n>\tand I've managed to stop adding new ones to the list for now).\nShould\n>\twe take this off-list, or keep it here?\n\nWe c... |
[
{
"msg_contents": "\nHmm, no response on pgsql-general. Anyone up on\noracle's implementation?\n\nelein\n==================\nElein Mustain\nelein@nextbus.com\n(510)420-3120 \n\n-----Original Message-----\nFrom: elein [mailto:elein@nextbus.com]\nSent: Wednesday, September 27, 2000 6:41 PM\nTo: pgsql-general@hub... |
[
{
"msg_contents": "Hi all,\n\nJust wondering if anyone has already created a version data type where\n1.100 > 1.10 > 1.9 > 1.01 etc...\n\nI don't want to reinvent the wheel...\n\nI was thinking that an array with a '.' as the delimeter would work\nbest, but I don't know how ORDER BY 's work on arrays....\n\nTh... |
[
{
"msg_contents": ">I was wondering if anyone could offer me some pointers in extending the\n>C++ classes used for client applications? I'm interested in developing a\n>set of C++ classes which will interact directly with the postgres\n>back-end with the following enhancements to the current implementation:\n\... |
[
{
"msg_contents": "Hi,\n\nI'm in a situation where I urgently need to debug PostgreSQL 7.0.2 \nfor deadlocks that it does not notice/timeout\n\nWhere can I find info about running several concurrent backends \nunder a debugger ?\n\n-----------\nHannu\n",
"msg_date": "Wed, 04 Oct 2000 08:42:05 +0300",
"m... |
[
{
"msg_contents": "I just wanted to repost this one more time in case developers didn't\ncatch it. I have a reliable way to make postgresql crash after a\ncouple of hours over here and a backtrace that looks like a good\ncatch.\n\nMy apologies if this one time to many, I won't be posting it again.\n\nthanks fo... |
[
{
"msg_contents": "Hello all,\n\nPlease help me with\ncreate function days_in_month(int4, int4, int4) returns int4\nas '/tmp/days.so' language 'c';\n\nCan I write this function days_in_month in C++ ?\nI've did the following:\n\nextern \"C\" {\nint days_in_month(int year, int mo, int day); \n} \n\nextern \"C\" {... |
[
{
"msg_contents": "Hey,\n\nI got this error when attempting to setup a table with a trigger that ran a\nplpgsql program upon insert:\n\n\"DBD::Pg::st execute failed: ERROR: Load of file\n/usr/local/pgsql/lib/plpgsql.so failed: ld.so.1:\n/usr/local/pgsql/bin/postmaster: fatal: relocation error: file\n/usr/local... |
[
{
"msg_contents": "I would like to allow variables in ECPG at all positions the backend allows\nconstants. But I wonder how to get this done in the parser. \n\n1) I need to allow :variable:indicator in AexprConst since this is the only\nposition where NULL is a possible constant.\n2) :variable should be allowed... |
[
{
"msg_contents": "A client just got this error. Anyone know why I suddenly get this?\nThe program has been working flawlessly for months before this.\n\nWaitOnLock: error on wakeup - Aborting this transaction\n\n-- \nD'Arcy J.M. Cain <darcy@{druid|vex}.net> | Democracy is three wolves\nhttp://www.druid.net... |
[
{
"msg_contents": "Just a little question :\nWhen I drop a database \"xxx\", and create another with the same name\n\"xxx\", old database sequences are always.\nWhy ?\n\nOlivier\n\n",
"msg_date": "Wed, 04 Oct 2000 18:35:40 +0200",
"msg_from": "Olivier Detour <detour@pimentech.net>",
"msg_from_op": t... |
[
{
"msg_contents": "I have a problem with inheritance and references.\n\nTABLE parent_table (\nid_parent SERIAL PRIMARY KEY,\n....\n)\n\nNo primary key in child\nTABLE child_parent (\n.....\n) INHERITS (parent_table);\n\nAnd another table :\nTABLE other_table (\nref_child_table INTEGER REFERENCES parent_table\n)... |
[
{
"msg_contents": "Greetings,\n\nI'm not sure if this is a bug, but I thought someone might like to know \nabout it. If you create a numeric field with the precision and scale set \nthe same, you can't insert anything into the field... pg-7.0.2 on \nFreeBSD-4.0-Rel.\n\nMatthew\n\n\nequinox=# create table test... |
[
{
"msg_contents": "Announce: First public release of PgSQL Version 1.0\n===================================================\n\nPgSQL v1.0 has been released. This is the first public release of PgSQL.\nIt is available at http://sourceforge.net/projects/pgsql.\n\nPgSQL is a package of two (2) modules that provid... |
[
{
"msg_contents": "Greetings,\n\nWell, it seems that the numeric issue I was having has nothing to do with \nthe precision and scale being set the same, it has to do with the input \ndata. The precision has to be at least 2 greater than the biggest number \nyou need to enter, i.e.\n\nequinox=# create table tes... |
[
{
"msg_contents": "\nProbably pgsql-general@postgresql.org isnt work from my network :(\n\n--------------------------------------------------------------\nThe reboots are for hardware upgrades!\n\"http://www.nmmm.nu\"; < nmmm@nmmm.nu >\n\n\n\n-----Original Message-----\nFrom: Nikolay Mijaylov [mailto:pg@nmmm.nu... |
[
{
"msg_contents": "Hi there\n\nI have been developing a web application using an Oracle database on the backend, and Java beans and JSP for the frontend.\n \nAt a late stage in the project I have been asked to look into the viability of\nhosting the application with postgreSQL as the backend database.\n\nNow my... |
[
{
"msg_contents": "Hi,\n\nIm still trying to figure out how postgre does things. And Im clueless.\n\nSomewhere inside the backend there must occur a compare between \"column\" and\n'string'. But where (and how)?\n\nIve been messing around with the source code in Linux, but with no success.\n\n// Jarmo\n\nPS. db... |
[
{
"msg_contents": "\nI sent an email on this the other day, but didn't see it pop up in the list\nand there have been no responses, so I don't know if it got through. Sorry\nif this is a dup.\n\nI'm getting the following error when I add a row to a table that has a\ntrigger set for a plpgsql function. I did a... |
[
{
"msg_contents": "Hello,\n\nI've run into a really strange problem that's taken a while for \nme to track down, but I think I have enough information here\nfor people to verify what I'm saying and hopefully enough information\nto point someone in the right direction for fixing.\n\nMy basic problem is that seve... |
[
{
"msg_contents": "I got a message in my syslog stating:\n\nServer process (pid 26969) exited with status 139 at Thu Oct 5 03:02:21\n2000\n\nIt disconnected all other active processes, etc.\n\nAnyone have any idea what status 139 is?\n\n- K\n\nKristofer Munn * KMI * 732-254-9305 * AIM KrMunn * http://www.munn.... |
[
{
"msg_contents": "Hi,\n\n\nWell, I discovered a strange behavior (ie 85/0.0085 <> 10000 )\nIs my SQL wrong or is it postgres ?\nWe are running 7.02 (but also 6.x) on a alpha (alphaev6) box.\n\n\nThanks in advance.\n\njc\n\nHere is a snapshot \n\njctest=> create table eigthyfive ( cs float4, csbytenthousand fl... |
[
{
"msg_contents": "Ned Lilly of Great Bridge is finishing up the third day of an on-line\ninterview accessible through\n<URL:http://forums.itworld.com/webx?230@17.6qRNaOqhdeb^3@.ee6d080>.\n\nI'm the moderator of the interview, and have a professional stake in\nseeing it attract plenty of readers. More than tha... |
[
{
"msg_contents": "Here's some news for you:\nwww.royal.com, website for Royal Corp (you know, the cash\nregister/typewriter people) is being backed by OpenACS, which runs on\ntop of AOLserver + PostgreSQL. See the results as www.royal.com.\n\n--\nLamar Owen\nWGCR Internet Radio\n1 Peter 4:11\n",
"msg_date... |
[
{
"msg_contents": "Thanks for the tip. The site is indeed impressive, fast.\nNice product lineup, too.\n\nLooked at AOLserver, but found something missing at OpenACS. Guess I better \nlook again.\n\n>===== Original Message From Lamar Owen <lamar.owen@wgcr.org> =====\n>Here's some news for you:\n>www.royal.com... |
[
{
"msg_contents": "Applied. Thanks.\n\n[ Charset ISO-8859-1 unsupported, converting... ]\n> \n> \tThe beos port in the source tree doesn't even compile. and even \n> after that dynamic loading isn't working and shared memory handling is \n> broken.\n> \n> \tAttached with this message, there is a Zip file which... |
[
{
"msg_contents": "There is a nice article about optimization on Freshmeat:\n\n\thttp://freshmeat.net/news/2000/10/07/970977599.html\n\n-- \n Bruce Momjian | http://candle.pha.pa.us\n pgman@candle.pha.pa.us | (610) 853-3000\n + If your life is a hard drive, | 830 ... |
[
{
"msg_contents": "I'm evaluating a couple of different databases for use as\nthe back-end to a web-based publishing system that's currently\nbeing developed in Java and Perl.\n\nI want to keep _all_ of the data in the database, to\nsimplify future replication and data management. That\nincludes such data as G... |
[
{
"msg_contents": "Suppose I have table a and b (b inherits a).\n\nThen I do select * from a*;\n\nNow, I'd like to know which table this particular row came from (a or b).\nIs this possible? Or do I have to have a column where I'd store what kind\nof object this is?\n\n-alex\n\n",
"msg_date": "Sat, 7 Oct 20... |
[
{
"msg_contents": "Can I do following?\n\ncreate table foo (\nx int4 references bar*\n)\n\nOr, since 7.1 will have bar* as default for bar, will using 'references\nbar' do what I want?\n\n-alex\n\n",
"msg_date": "Sat, 7 Oct 2000 19:55:06 -0400 (EDT)",
"msg_from": "Alex Pilosov <alex@pilosoft.com>",
... |
[
{
"msg_contents": "When I execute the following two queries, the results differ -- with the\nonly change being that another table is joined (a 1-1 join that should not\naffect the results -- I reduced down a much larger query that was\nexhibiting the behavior to what appears to be the cause). I know that\nview... |
[
{
"msg_contents": "Savepoints will be implemented after WAL.\n\nVadim\n\n> I was wondering, is it a possibility/projected to have nested \n> transactions in postgres? Would MVCC support that?\n> \n> What I would like is following:\n> begin tran a;\n> do some work;\n> begin tran b;\n> do some other work\... |
[
{
"msg_contents": "Hi,\n\nI was wondering, is it a possibility/projected to have nested transactions\nin postgres? Would MVCC support that?\n\nWhat I would like is following:\nbegin tran a;\n do some work;\n begin tran b;\n do some other work\n rollback b;\n<at this point, only changes by transaction b ar... |
[
{
"msg_contents": "I have compiled and tested PostgreSQL 7.1devel on UnixWare 7.1. During the \nprocess, the need for changes to the FAQ_SCO document was uncovered. The \nattach patch file implements thost changes.\n\n\n\n____ | Billy G. Allie | Domain....: Bill.Allie@mug.org\n| /| | 7436 Hartw... |
[
{
"msg_contents": "Hello,\n\nI have found this problem running Postgre 7.0.2. I am running pg as DB\nserver\non one internet portal, so I need to solve this problem really fast. I\nintend to find\nproblem in Linux kernel (because of reported problems with VMM allocating\nshared\nmemory), but I would like to ask... |
[
{
"msg_contents": "Yes, this is true. The API is not isolated for SPI, so you see\neverything, including C pollution into the C++ namespace. Not sure\nabout a solution, except renaming some of the identifiers in the\nbackend. We have discussed that, and are waiting for more reports of\nproblems before taking... |
[
{
"msg_contents": "Try this for both FK tables:\n\ncreate table tmp2(idx2 int4, col2 int4, constraint\ntmpcon2 foreign key(col2) references tmp1(idx) INITIALLY DEFERRED);\n\nThis will defer constraint checks till transaction commit...\nthough constraint triggers should use SnapshotDirty instead of\nSELECT FOR U... |
[
{
"msg_contents": "Would it be possible to implement \"generic triggers\", that is a trigger function for a whole data base and not only for a single table? \n\nAny elegant way to implement this with existing facilities (other than writing a trigger function for each of my 250+ tables) ?\n\nHorst\n\n",
"msg... |
[
{
"msg_contents": "\naltho I'm still investigating, does anyone have an idea why the following\n'CREATE TABLE' will cause this erro:\n\nNOTICE: CREATE TABLE/PRIMARY KEY will create implicit index 'playlist_info_pkey\n' for table 'playlist_info'\nFindExec: found \"/pgsql/bin/postgres\" using argv[0]\nTRAP: Fail... |
[
{
"msg_contents": "My guess is that FRONTEND is not getting defined anymore, and libpq is\npicking up the asserts from dllist.c. Now how did that change. Let me\nCc hackers.\n\n> > ../../../src/interfaces/libpq/libpq.so: undefined reference to `assert_enabled'\n> \n> Offhand it looks like someone put an Asser... |
[
{
"msg_contents": "As many of you know, several businesses are involved in providing\nPostgreSQL support.\n\nAfter careful consideration, I have decided to accept a job with Great\nBridge. There will be a press announcement tomorrow (Tuesday) with more\ndetails. I will post a URL here when I have it.\n\nInter... |
[
{
"msg_contents": "*Sigh*, still not having much fun over here:\n\n# gdb /usr/local/pgsql/bin/postgres postgres.36561.core \n#0 0x8063b0f in nocachegetattr (tuple=0xbfbfe928, attnum=2, \n tupleDesc=0x84ca368, isnull=0xbfbfe7af \"\") at heaptuple.c:494\n494 off = att_addlength(off... |
[
{
"msg_contents": "Hello,\n\nI have quite strange behavior of the following SQL:\n\ninsert into address (cid,email) select distinct '49'::int,member.email from \nmember imit 1 ;\n\nIt should insert just 1 record.\nBut it insert all recodrs which will be selected by subselect...\nWhat's wrong with this SQL? Or t... |
[
{
"msg_contents": "\n\nPhilip Warner wrote:\n\n> I get the following when I build from CVS:\n>\n> gcc -I../../../src/include -I../../../src/interfaces/libpq -O2 -g -Wall\n> -Wmissing-prototypes -Wmissing-declarations -o pg_dump pg_dump.o common.o\n> pg_backup_archiver.o pg_backup_db.o pg_backup_custom.o pg_bac... |
[
{
"msg_contents": "As a long time (and mostly silent) PostgreSQL user, I\nwould like to say that I agree with Alfred. The more\ntime core members can spend working on PostgreSQL the\nbetter, and if you can finagle it so that you get paid\nactual money for doing it, then more power to you. \nYou certainly deser... |
[
{
"msg_contents": "Actually with version 3.0 of PyGreSQL there is a\nDB-API v2.0 compliant wrapper pgdb.py.\n\n--- Peter Eisentraut <peter_e@gmx.net> wrote:\n> Bruce Momjian writes:\n> \n> > I need to know how this is different than our\n> current python interface,\n> > PyGreSQL.\n> \n> > > PgSQL is a package o... |
[
{
"msg_contents": "> > create table t1\n> > (\n> > f1 integer,\n> > f2 integer\n> > );\n> > \n> > create table t2\n> > (\n> > f1 integer references t1(f1),\n> > f2 integer\n> > );\n> \n> > begin transaction;\n> > insert into t1(f1,f2) values(1,1);\n> > delete from t1 where f1=1;\... |
[
{
"msg_contents": "Maybe I'm just overlooking something really simple but this has me a bit\nconfused.\n\nWhat I'm trying to do is get the amount of time from A to B -- I thought\nage() would do just that but it seems to be about a day off sometimes.\n\nhhs=# SELECT age('Sun Dec 03 08:00:00 2000 EST','Tue Oct 1... |
[
{
"msg_contents": "Would it be politically incorrect to combine named templates (including\nport makefiles, etc.) into one, since they all do the same thing anyway?\n\n-- \nPeter Eisentraut peter_e@gmx.net http://yi.org/peter-e/\n\n",
"msg_date": "Tue, 10 Oct 2000 23:40:17 +0200 (CEST)",
"msg... |
[
{
"msg_contents": "> The project name on SourceForge is \"Python Interface to PostgreSQL\".\n\nHow about PIPgSQL or piPgSQL?\n\nRegards,\n//Dave\n",
"msg_date": "Tue, 10 Oct 2000 15:15:50 -0700",
"msg_from": "Dnesbitt@encryptix.com",
"msg_from_op": true,
"msg_subject": "RE: Announcing PgSQL - a ... |
[
{
"msg_contents": "If anyone was following my request to have a large object api for TOAST,\nthis is of interest.\n\n-- \n Bruce Momjian | http://candle.pha.pa.us\n pgman@candle.pha.pa.us | (610) 853-3000\n + If your life is a hard drive, | 830 Blythe Avenue\n + ... |
[
{
"msg_contents": "This relates to large objects too.\n\n-- \n Bruce Momjian | http://candle.pha.pa.us\n pgman@candle.pha.pa.us | (610) 853-3000\n + If your life is a hard drive, | 830 Blythe Avenue\n + Christ can be your backup. | Drexel Hill, Pennsylva... |
[
{
"msg_contents": "At times I need to call PQendcopy, how to I determine that it won't\nblock me waiting for output from the backend?\n\n-- \n-Alfred Perlstein - [bright@wintelcom.net|alfred@freebsd.org]\n\"I have the heart of a child; I keep it in a jar on my desk.\"\n",
"msg_date": "Tue, 10 Oct 2000 19:23... |
[
{
"msg_contents": "I just got this question in my mailbox. Anyone with more knowledge than I\ncan probably answer it. :-)\n\n> I need \"generic\" trigger functions, that is trigger functions that have to know\n> about the table they have been triggerd from.\n> \n> Example: \n> a trigger function that generates ... |
[
{
"msg_contents": "Does anyone know what backend/tioga is for? It's not Spanish for TOAST,\nis it? :-) It looks like it wasn't compilable for quite a while.\n\n-- \nPeter Eisentraut peter_e@gmx.net http://yi.org/peter-e/\n\n",
"msg_date": "Wed, 11 Oct 2000 20:01:02 +0200 (CEST)",
"msg_from"... |
[
{
"msg_contents": "How far are we from seeing the version 7.1 out?\n\n-- \n\"And I'm happy, because you make me feel good, about me.\" - Melvin Udall\n-----------------------------------------------------------------\nMart�n Marqu�s\t\t\temail: \tmartin@math.unl.edu.ar\nSanta Fe - Argentina\t\thttp://math.unl.e... |
[
{
"msg_contents": "Added to TODO:\n\n\t* add XML interface capability\n\n> Hello Bruce,\n> I was browsing in your postgres page TODO list and saw no reference\n> at all about XML. Although I am aware of the importance the other tasks\n> in the list have, I strongly believe XML support should be somewhere i... |
[
{
"msg_contents": "I just spent a fruitless half hour rooting around the website for\nour elephant-in-crystal logo. I need a moderately large, clean copy\nfor the title slide of a presentation. Where's the original hiding?\n\n\t\t\tregards, tom lane\n",
"msg_date": "Thu, 12 Oct 2000 01:12:20 -0400",
"... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.