threads listlengths 1 2.99k |
|---|
[
{
"msg_contents": "So Sun has pulled another one on us. Not sure which versions of Solaris\nthis affects, but some have libncurses and libtermcap with overlapping\nsymbols of different sizes. This leads to a bunch of complaints every\ntime 'ld' is run; perhaps it could also lead to busted executables.\n\n(Via... |
[
{
"msg_contents": "Which one of these should we use?\n\nint4 is a data type, int32 isn't. c.h has DatumGetInt8, but no\nDatumGetInt64; it also has DatumGetInt32 but no DatumGetInt4. fmgr has\nPG_GETARG_INT32 et al. Inconsistency everywhere.\n\nThe C standard has things like int32_t, but technically there's n... |
[
{
"msg_contents": "\nAWARD WINNING - SPECIAL NOTICE!!!!\n\nPostgreSQL has earned the Linux Journal Third Annual Editor's Choice\nAwards recognition as the Best Database, to be presented at\nCOMDEX/LinuxBusinessExpo in Las Vegas this afternoon !\n\nI have just learned of this award and want to make sure that *ev... |
[
{
"msg_contents": "One question:\nwill Postgres 7.1 be able to do offline backups?\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\... |
[
{
"msg_contents": "\n> > Earlier, Vadim was talking about arranging to share fsyncs of the WAL\n> > log file across transactions (after writing your commit record to the\n> > log, sleep a few milliseconds to see if anyone else fsyncs before you\n> > do; if not, issue the fsync yourself). That would offer less-... |
[
{
"msg_contents": "\n> > To answer another misconception that I saw in this thread:\n> > \n> > : The old language names \"internal\" and \"C\" will continue to refer to\n> > : functions with the old calling convention. We should deprecate\n> > : old-style functions because of their portability problems, but th... |
[
{
"msg_contents": "\n> > My solution would be to use INT_MIN for all ports, which has the advantage \n> > that the above problematic comparison can be converted to !=,\n> > since no integer will be smaller than INT_MIN.\n> \n> I agree. When I was looking at this code this morning, I was wondering\n> what INT_M... |
[
{
"msg_contents": "\nSituation:\n 7.1 has a new backend interface for loadable modules. (but it\n supports old 7.0 interface too)\n\nNow the problem:\n How do you tell the backend with what interface to use for\n particular function? At the moment 7.1-cvs uses 'newC' instead\n of 'C' in the LANGUAGE part.... |
[
{
"msg_contents": "Is there any guidelines on the formatting of the C code in\nPG? As I was working on guc-file.l yesterday, I noticed\nsome things with LONG lines (I broke some of them up).\n\nI was wondering if there were formal standards? \n\nAlso, do we care about extraneous #include's? \n(src/backend/pars... |
[
{
"msg_contents": "\n> > Actually my proposal would be to not advertise \"newC\" in 7.1 and do\n> > some more research in that area until we have a solid and \n> maybe compatible\n> > interface that also makes the missing features possible \n> > (multiple columns and rows for return, enter the function \n> more... |
[
{
"msg_contents": "\n> But we have very few Informix functions moving to PostgreSQL.\n\nI do not understand this comment.\nWhat you imho forget here is that a definition for an interface will eventually be\nincluded in the SQL standard. \nAnd it will be what Oracle or DB/2 (maybe even Informix) does.\n\nI concl... |
[
{
"msg_contents": "Currently, CHAR is correctly interpreted as CHAR(1), but VARCHAR is\nincorrectly interpreted as VARCHAR(<infinity>). Any reason for that,\nbesides the fact that it of course makes much more sense than VARCHAR(1)?\n\nAdditionally, neither CHAR nor VARCHAR seem to bark on too long input,\nthey... |
[
{
"msg_contents": "\n\tThere's a message on -general about a possible\nproblem in the deferred RI constraints. He was doing a\nsequence like:\nbegin\n delete \n insert\nend\nand having it fail even though the deleted key was back in\nplace at the end.\n\n\tMy understanding of the spec is that that sequence sho... |
[
{
"msg_contents": "Guys, hello.\n\nHere is a problem.\n\n--\n-- Creating 2 new functions and new type\n--\nBEGIN;\n\nCREATE FUNCTION enum_week_in (opaque)\n\tRETURNS int2\n\tAS '\n\tDECLARE\n\t invalue ALIAS for $1;\n\tBEGIN\n\t\tIF invalue='''' OR invalue=''0'' THEN RETURN 0; END IF;\n\t\tIF invalue=''Monda... |
[
{
"msg_contents": "> > BUT, do we know for sure that sleep(0) is not optimized in \n> > the library to just return? \n> \n> We can only do our best here. I think guessing whether other backends\n> are _about_ to commit is pretty shaky, and sleeping every time is a\n> waste. This seems the cleanest.\n\nA long a... |
[
{
"msg_contents": "> > You are going to kernel call/yield anyway to fsync, so why \n> > not try and if someone does the fsync, we don't need to do it.\n> > I am suggesting re-checking the need for fsync after the return\n> > from sleep(0).\n> \n> It might make more sense to keep a private copy of the last time\... |
[
{
"msg_contents": "> > > > No. Checkpoints are to speedup after crash recovery and\n> > > > to remove/archive log files. With WAL server doesn't write\n> > > > any datafiles on commit, only commit record goes to log\n> > > > (and log fsync-ed). Dirty buffers remains in memory long\n> \n> Ok, so with CHECKPOINTS... |
[
{
"msg_contents": "Hi:\nI have a MS Access database with tables containing TEXT fields.\nI need import that info in a postgres 7 table. \nHow to do it? \nIf I use copy from, dont work. \n\ntia\n\nCarlos Jacobs\n",
"msg_date": "Thu, 16 Nov 2000 18:56:08 -0300",
"msg_from": "\"Carlos Jacobs\" <carlosjac... |
[
{
"msg_contents": "I have committed changes to keep reference counts for system cache entries.\nThis should eliminate the issues we've had with cache entries sometimes\ngetting dropped while still in use. Some notes:\n\n1. The routine formerly called SearchSysCacheTuple is now SearchSysCache().\nIt increments ... |
[
{
"msg_contents": "Hi,\nI'm new to PostgreSQL and have been asked to determine the cause of what\nappear to be hung processes on FreeBSD after one or more frontend apps\ncrash. I did alot of searching through the msg lists and found a few\ndiscussions that seem related, but I was unable to find a resolution in ... |
[
{
"msg_contents": "I did a CVS checkout today, and the following database creation fails.\n\nIn psql:-\n\nYou are now connected to database template1 as user postgres.\ntemplate1=# select version();\n version\n-----------------------------------------------------------------------... |
[
{
"msg_contents": "\n> > >> Ewe, so we have this 1/200 second delay for every transaction. Seems\n> > >> bad to me.\n> > >\n> > >I think as long as it becomes a tunable this isn't a bad idea at\n> > >all. Fixing it at 1/200 isn't so great because people not wrapping\n> > >large amounts of inserts/updates with... |
[
{
"msg_contents": "\n> Also, the grammar clause \"LANGUAGE C\" is actually part of the standard, so\n> naming it \"LANGUAGE stdC\" will make it *less* standard. (Not that I buy\n> Informix as being a \"standard\".)\n\nI only quoted Informix, because it is the only one where I know how it works.\nIt might even ... |
[
{
"msg_contents": "At 10:39 16/11/00 +0100, Zeugswetter Andreas SB wrote:\n>\n>Has anybody had time to look at how this is done in DB/2, Oracle ? Philip ?\n>\n\nDon't know about Oracle or DB2, but Dec/RDB has:\n\n Create Function <name1> [Stored Name Is <name2>] (...) Returns <type>;\n [ External Name... |
[
{
"msg_contents": "\nSince I see, that Tom has implemented the \"keep a AccessShareLock lock until \ntransaction end\" philisophy I would like to state a protest.\n\nThis is a fundamental change in behavior and I would like to see \na vote on this.\n\nThe one example we already know is:\n\nsession1\t\t\t\tsessi... |
[
{
"msg_contents": "I missed the proposal, discussion, implementation, and announcement of\nthe recent changes to make dump/reload more robust (it seems that I was\nunsubscribed from -hackers for a few days, then out of town for a few\nmore :/ Amazing what a single week can bring!\n\nAnyway, there were a couple ... |
[
{
"msg_contents": "\n> > More to the point, I think we have to assume old-style interface if we\n> > see ... LANGUAGE 'C' with no other decoration, because any other\n> > assumption is guaranteed to break all existing user-defined functions.\n> \n> Just successfully loading an old-style C function doesn... |
[
{
"msg_contents": "\n> > Just successfully loading an old-style C function doesn't\n> > guarantee that it works anyway. I pointed out before that the\n> > changes due to TOAST require each function that takes\n> > arguments of varlen types to expect toasted values.\n> \n> Couldn't... |
[
{
"msg_contents": "I backed up my database from Postgres 6.5.3 and migrated to 7.0.2\nseveral a few months ago. For some reason, data was lost in the\ntransition. I've finally pinned it down to the attached file (abridged\nto point out the problem).\n\nIt looks like two things happened in the backup. First, whe... |
[
{
"msg_contents": "Hey Guys,\n\ndo you know of any intermediate to advanced Postgres Courses in the UK prefereably in London and if not would anyone with advanced knowledge be interested in setting some up.\n\nThanks,\nAbe\n\n\n\n\n\n\n\nHey Guys,\n \ndo you know of any intermediate to advanced \nPostgres Cours... |
[
{
"msg_contents": "At present the Unix socket's location is hard-coded as /tmp.\n\nAs a result of a bug report, I have moved it in the Debian package to \n/var/run/postgresql/. (The bug was that tmpreaper was deleting it and\nthus blocking new connections.)\n\nI suppose that we cannot assume that /var/run exis... |
[
{
"msg_contents": " Date: Friday, November 17, 2000 @ 22:55:51\nAuthor: tgl\n\nUpdate of /home/projects/pgsql/cvsroot/pgsql/src/backend/utils/adt\n from hub.org:/home/projects/pgsql/tmp/cvs-serv20150\n\nModified Files:\n\tcash.c \n\n----------------------------- Log Message -----------------------------\... |
[
{
"msg_contents": "\n$ psql -U\npsql: option requires an argument -- U\nTry -? for help.\n$ psql -?\npsql: No match.\n$\n\nVince.\n-- \n==========================================================================\nVince Vielhaber -- KA8CSH email: vev@michvhf.com http://www.pop4.net\n 128K ISDN from $22.00/m... |
[
{
"msg_contents": "If you care about the nitty-gritty details, see\nhttp://www.postgresql.org/cgi/cvsweb.cgi/pgsql/src/backend/utils/fmgr/README\nparticularly the final section \"Telling the difference between old- and\nnew-style functions\".\n\n\t\t\tregards, tom lane\n",
"msg_date": "Sun, 19 Nov 2000 17:1... |
[
{
"msg_contents": "I decided that perhaps it was time to toss the current OpenACS datamodel\nat PG 7.1 to see what would happen (it's a bit shy of 10K lines, including\ncomments and white space).\n\nAll went well except for a handful of occurances of the following error:\n\nERROR: SS_finalize_plan: plan should... |
[
{
"msg_contents": "Is there a good reason why the attribute name limit is 31 chars? It would\nbe nice to extend it to 255 characters or so...\n\nChris\n\n--\nChristopher Kings-Lynne\nFamily Health Network (ACN 089 639 243)\n\n",
"msg_date": "Mon, 20 Nov 2000 11:36:39 +0800",
"msg_from": "\"Christopher ... |
[
{
"msg_contents": "Hi,\n\nI was looking at the ALTER TABLE DROP CONSTRAINT bit of PostgreSQL, and I\nstarted thinking about trying to implement it (as a bit of mental exercise).\n(And because it's highly annoying not being able to remove the damn things!\n\nPlease comment on all of this, and tell me if it's goi... |
[
{
"msg_contents": "\nI get the following when doing a fresh build:\n\nmake[4]: Entering directory\n`/home/pjw/work/postgresql-cvs/pgsql/src/interfaces/ecpg/preproc'\nbison -y -d preproc.y\n(\"preproc.y\", line 2256) error: $5 of `CreatedbStmt' has no declared type\n(\"preproc.y\", line 2256) error: invalid $ v... |
[
{
"msg_contents": "\nDear Hackers,\n\nWhile working on a postgres-based fulltext searching system \nwe encountered the following problem:\n\n There is a table \n create table t (\n x int []\n ) \n and a given integer constant y.\n The task is to find those records of this table, which contain the\n value... |
[
{
"msg_contents": "Is it normal that a query that takes <1 sec when executed from psql\nprompt \ntakes >15 sek when executed from a function (and takes >95% of cpu for\nall that time ?\n\nexample (on 7.0.2)\n\n>UPDATE item SET id_path = '';\n\nreturns immediately (on 2000 item table)\n\nthen I create a function... |
[
{
"msg_contents": "Configured as: \n\nCC=cc CXX=CC ./configure --prefix=/home/ler/pg-test --enable-syslog --with-CXX --with-perl --enable-multibyte --with-includes=/usr/local/include --with-libs=/usr/local/lib\n\nI get:\n\ngmake -C doc all\ngmake[1]: Entering directory `/home/ler/pg-dev/pgsql/doc'\ngmake[1]: N... |
[
{
"msg_contents": "After reading Vadim's note stating the WAL is enabled by default,\nI downloaded sources from CVS to rebuild the latest version.\n\nThere are errors in ecpg's preproc.y grammar that weren't there \nin the CVS sources I built yesterday.\n\nThe two rules \"createdb_opt_item\" and \"createdb_opt_... |
[
{
"msg_contents": "I'm organising an open source developers meeting (that will be supported by VA Linux) in february and would like some pgsql developers to be present. Would you be so kind as to spread the word?\nPeople interested in attending or make a slide presentation can contact me at rb@raphinou.com, reg... |
[
{
"msg_contents": "Hi: \n \nWonder if any of you know how to setup a postgreSQL server as a windows 2000 service or have a URL or document on how to do it. \n \nThank you \n\n--\nLuis Maga�a\nGnovus Networks & Software\nwww.gnovus.com\nTel. +52 (7) 4422425\njoe666@gnovus.com\n\n\n",
"msg_date": "Mon, 20 N... |
[
{
"msg_contents": "> more info. It seems to not like the following from\n> src/include/buffer/bufpage.h (line 305):\n> #define PageSetLSN(page, lsn) \\\n> (((PageHeader) (page))->pd_lsn = (XLogRecPtr) (lsn))\n> \n> I'm not sure what it's trying to do... \n\nJust assign values to 8 bytes structure in pa... |
[
{
"msg_contents": "I sent this e-mail last week but hadn't received any response. Given\nThomas' last message about seeing responses to threads he never recalled\nseeing in the first place, I'm wondering whether the original message\nmade it to the server.\n\n\n-Tony\n\np.s. I still can't seem to get the \"DIGE... |
[
{
"msg_contents": "ISTM that\n\n SET SESSION CHARACTERISTICS AS parameter value\n\nis really a more SQL'ish form of the current\n\n SET parameter =/TO value\n\nPerhaps they should be made equivalent, in order to avoid too many subtly\ndifferent subversions of the 'SET' command.\n\n-- \nPeter Eisentraut ... |
[
{
"msg_contents": "> > > more info. It seems to not like the following from\n> > > src/include/buffer/bufpage.h (line 305):\n> > > #define PageSetLSN(page, lsn) \\\n> > > (((PageHeader) (page))->pd_lsn = (XLogRecPtr) (lsn))\n> > > \n> > > I'm not sure what it's trying to do... \n> > \n> > Just assign v... |
[
{
"msg_contents": "> > It's because XLogRecPtr is a struct. You can't assign structs with\n> > '='. Gotta use memcpy, etc.\n> \n> Correction: It's because the compiler won't let you cast to a\n> struct. Assigning seems to compile okay.\n\nOh, ok - seems we can just get rid of casting there.\n\nVadim\n",
... |
[
{
"msg_contents": "Is it okay now to disable the old regression test drivers and make use of\nthe new one throughout? It would be advantageous if we all ran the same\nthing in beta.\n\n-- \nPeter Eisentraut peter_e@gmx.net http://yi.org/peter-e/\n\n",
"msg_date": "Mon, 20 Nov 2000 23:03:20 +0100... |
[
{
"msg_contents": "After TGL's batch of commits, and Vadim's fix: (we still fail geometry\nnbd).\n\n*** ./expected/opr_sanity.out\tTue Nov 14 13:32:58 2000\n--- ./results/opr_sanity.out\tMon Nov 20 16:34:26 2000\n***************\n*** 481,489 ****\n NOT ((p2.pronargs = 2 AND p1.aggbasetype = p2.proargtypes... |
[
{
"msg_contents": "Current sources pass regress test except for\n\n*** ./expected/opr_sanity.out\tMon Nov 13 22:59:14 2000\n--- ./results/opr_sanity.out\tMon Nov 20 17:12:50 2000\n***************\n*** 481,489 ****\n NOT ((p2.pronargs = 2 AND p1.aggbasetype = p2.proargtypes[1]) OR\n (p2.pronargs... |
[
{
"msg_contents": "> Further investigation shows\n> \n> template1=# select min(oid),max(oid) from pg_aggregate;\n> min | max\n> ------+------\n> 2503 | 2558\n> (1 row)\n> \n> This is bogus. The pg_aggregate entries should have OIDs above\n> 16384, not down in the reserved-OID range. It looks to me like\n> ... |
[
{
"msg_contents": " Date: Monday, November 20, 2000 @ 21:11:06\nAuthor: vadim\n\nUpdate of /home/projects/pgsql/cvsroot/pgsql/src/backend/access/transam\n from hub.org:/home/projects/pgsql/tmp/cvs-serv62721/src/backend/access/transam\n\nModified Files:\n\txlog.c \n\n----------------------------- Log Messa... |
[
{
"msg_contents": "\nGot the following errors when using very recent CVS build:\n\nOn client (psql):\n\n1: psql:./indexes_1.sql:12: pqReadData() -- backend closed the channel\nunexpectedly.\n2: This probably means the backend terminated abnormally\n3: before or while processing the request.\n4: psql:.... |
[
{
"msg_contents": " Date: Monday, November 20, 2000 @ 22:23:19\nAuthor: tgl\n\nUpdate of /home/projects/pgsql/cvsroot/pgsql/src/backend/utils/adt\n from hub.org:/home/projects/pgsql/tmp/cvs-serv86997/src/backend/utils/adt\n\nModified Files:\n\toid.c \n\n----------------------------- Log Message ---------... |
[
{
"msg_contents": " Date: Monday, November 20, 2000 @ 23:01:10\nAuthor: inoue\n\nUpdate of /home/projects/pgsql/cvsroot/pgsql/src/backend/utils/adt\n from hub.org:/tmp/cvs-serv1659/utils/adt\n\nModified Files:\n\tri_triggers.c \n\n----------------------------- Log Message -----------------------------\n\... |
[
{
"msg_contents": "I sent this to the general list and got no response so I figure I can take\nit to the people who actually make the decisions.\n\nIs this a security bug or is it by design?\n\n----- Original Message -----\nFrom: \"Dan Wilson\" <phpPgAdmin@acucore.com>\nTo: \"pgsql general\" <pgsql-general@post... |
[
{
"msg_contents": "> > >>>> Nope. Still fails...\n> > \n> > You should've said that the OIDs are now just off-by-one from where they\n> > were before, instead of off by several thousand. That I'm willing to\n> > accept as an implementation change ;-) I've updated the expected file.\n ^^^^^^^^^^^^^^^^^^^^^... |
[
{
"msg_contents": "> > >>>> Nope. Still fails...\n> > \n> > You should've said that the OIDs are now just off-by-one from where they\n> > were before, instead of off by several thousand. That I'm willing to\n> > accept as an implementation change ;-) I've updated the expected file.\n ^^^^^^^^^^^^^^^^^^^^^... |
[
{
"msg_contents": "\nFix some english issues...\nI also note some \"interesting\" (from an English perspective) #define \nnames that mayhaps need to be looked at. \n\n\nIndex: xlog.c\n===================================================================\nRCS file: /home/projects/pgsql/cvsroot/pgsql/src/backend/ac... |
[
{
"msg_contents": "I've subscribed and un-subscribed to the HACKERS-DIGEST list several\ntimes now. Each time I seem to be getting EVERY message sent to the list\nrather than a DIGEST.\n\nCan someone tell me if it is still possible to get a DIGEST of the list?\nIs the list administrator aware of the problem?\n\... |
[
{
"msg_contents": "> This snippet in xlog.c makes we wonder...\n> \n> \telse if (ControlFile->state == DB_IN_RECOVERY)\n> \t{\n> \t\telog(LOG, \"Data Base System was interrupted \n> being in recovery at %s\\n\"\n> \t\t\t \"\\tThis propably means that some data \n> blocks are corrupted\\n\"\n> \t\t\t \"\\tAnd yo... |
[
{
"msg_contents": "This snippet in xlog.c makes we wonder...\n\n\telse if (ControlFile->state == DB_IN_RECOVERY)\n\t{\n\t\telog(LOG, \"Data Base System was interrupted being in recovery at %s\\n\"\n\t\t\t \"\\tThis propably means that some data blocks are corrupted\\n\"\n\t\t\t \"\\tAnd you will have to use las... |
[
{
"msg_contents": "At 02:01 PM 11/21/00 -0800, Mikheev, Vadim wrote:\n>> This snippet in xlog.c makes we wonder...\n>> \n>> \telse if (ControlFile->state == DB_IN_RECOVERY)\n>> \t{\n>> \t\telog(LOG, \"Data Base System was interrupted \n>> being in recovery at %s\\n\"\n>> \t\t\t \"\\tThis propably means that som... |
[
{
"msg_contents": " Date: Tuesday, November 21, 2000 @ 19:00:55\nAuthor: tgl\n\nUpdate of /home/projects/pgsql/cvsroot/pgsql/contrib/pg_dumplo\n from hub.org:/home/projects/pgsql/tmp/cvs-serv39905\n\nModified Files:\n\tREADME.pg_dumplo lo_export.c lo_import.c main.c pg_dumplo.h \n\tutils.c \n\n------------... |
[
{
"msg_contents": "> >Is there any particular reason the spelling and punctuation \n> in the code\n> >snippet below is so bad?\n> \n> Vadim's Russian. This impacts his english but not his \n> ability to implement complex features like MVCC and WAL :)\n\nYes, sorry guys. C lang is much easier -:))\n\nVadim\n",
... |
[
{
"msg_contents": "Hi,\n\nit's obviously there is a query plan optimizer bug, if int2 type used in fields,\nthe plan generator just use sequence scan, it's stupid, i am using PG7.03,\nthis is my log file:\n---------\nstock# drop table a;\nDROP\nstock# create table a(i int2, j int);\nCREATE\nstock# create uniqu... |
[
{
"msg_contents": "I've been examining the pg_dump source and output, and I've come to the\nconclusion that I can modify it so that UNIQUE constraints appear as part of\nthe CREATE TABLE statement, rather than as a separate CREATE INDEX. I know\nit is possible because phpPgAdmin does it!\n\nThis change should ... |
[
{
"msg_contents": "I ran the src/test/regressplans.sh script, which runs the regression tests\nunder exclusion of various join and scan types. Without merge joins (-fm)\nI get an assertion failure in opr_sanity.\n\nThe query is:\n\n SELECT p1.oid, p1.aggname\n FROM pg_aggregate as p1\n WHERE p1.aggfinalfn =... |
[
{
"msg_contents": "Hi,\n\n I'd like make some changes on the 7.1 (to be) libpgtcl.\n\n 1. Make the large object access null-byte safe, when\n libpgtcl is compiled against a 8.0 or higher version of\n Tcl.\n\n This would cause that a libpgtcl.so built on a system\n ... |
[
{
"msg_contents": "Hi,\n\nI have a question about the performance of the planner in 7.1. I've been\ntesting the 11/21 snapshot of the database just to get an idea of how it\nwill work for me when I upgrade from 7.02 I've noticed that some queries \nare taking much longer and I've narrowed it down (i think) t... |
[
{
"msg_contents": "> Peter Eisentraut <peter_e@gmx.net> writes:\n> > #3 0x8149b98 in ExceptionalCondition (\n> > conditionName=0x81988a0 \"!(((file) > 0 && (file) < \n> (int) SizeVfdCache\n> > && VfdCache[file].fileName != ((void *)0)))\", exceptionP=0x81b93c8,\n> > detail=0x0,\n> > fileName=0x8198787 ... |
[
{
"msg_contents": "Just playing with the syslog functionality on 7.1devel, and the\nexplain output looks weird to me:\n\nNov 22 14:58:44 lerami pg-test[4005]: [2] DEBUG: MoveOfflineLogs:\nskip 0000000000000006\nNov 22 14:58:44 lerami pg-test[4005]: [3] DEBUG: MoveOfflineLogs:\nskip 0000000000000005\nNov 22 14... |
[
{
"msg_contents": "> I assume you're talking about this DEBUG stuff:\n> \n> ...\n> Creating directory /home/postgres/testversion/data/pg_xlog\n> Creating template1 database in /home/postgres/testversion/data/base/1\n> DEBUG: starting up\n> DEBUG: database system was shut down at 2000-11-22 14:38:01\n\nI had t... |
[
{
"msg_contents": "> \n> On Tue, 21 Nov 2000, Christopher Kings-Lynne wrote:\n> \n> > > > Problem is that there are 5 difference types of constraints,\n> > > implemented in\n> > > > 5 different ways. Do you want a unifed, central catalog of\n> > > constraints, or\n> > > > just for some of them, or what?\n> > >... |
[
{
"msg_contents": "> >> I'm guessing this is a variant of the problem Philip \n> >> Warner reported yesterday. Probably WAL-related. Vadim?\n> \n> > Probably, though I don't understand how WAL is related to \n> > execution plans. Ok, it's easy to reproduce - I'll take a look.\n> \n> Could just be a question o... |
[
{
"msg_contents": ">\n>Fixed - fdstate was not properly setted in fd.c:fileNameOpenFile\n>with WAL enabled, sorry.\n>\n>Philip, please try to reproduce crash.\n>\n\nSeems to have fixed the crash for me as well. Thanks.\n\n\n----------------------------------------------------------------\nPhilip Warner ... |
[
{
"msg_contents": "After Tom's bug fix, I can now load the data model with no\nproblem.\n\nVery cool, I'm pumped!\n\n\n\n- Don Baccus, Portland OR <dhogaza@pacifier.com>\n Nature photos, on-line guides, Pacific Northwest\n Rare Bird Alert Service and other goodies at\n http://donb.photo.net.\n",
"msg_dat... |
[
{
"msg_contents": "Hello, pgsql-hackers\n\nCan I change postgresql's source to make the following plpgsql works ?\nIf could, would you please tell me where can i change the source?\nI want to try it.\n\n-------------------------------------------------------\nCREATE FUNCTION users_select_by_id(@id int4)\nRETURN... |
[
{
"msg_contents": "\nThere is a minor breakage of existing apps that occurs with current CVS.\n\nIn 7.0 doing the following:\n\n create table tsc(f1 int4 , f2 int4);\n insert into tsc values(1,4);\n select sum(f1)/sum(f2) from tsc;\n\nwould actually result in zero, since it worked with integers through... |
[
{
"msg_contents": "Hello,\nI've looked at the resources available through the web page to CVS and other\nstuff,\nhowever I cant find a statement of whats likely to be in 7.1 and what is planned\nfor later.\n\nReason: I want to know if any of these features are scheduled.\n\n1. Calculated fields in table definit... |
[
{
"msg_contents": "\nxuyifeng (<jamexu@telekbird.com.cn>) wrote:\n\n> it's obviously there is a query plan optimizer bug, if int2 type used\n> in fields, the plan generator just use sequence scan, it's stupid, i\n> am using PG7.03, this is my log file:\n> \n> ---------\n> stock# drop table a;\n> DROP\n> stock# ... |
[
{
"msg_contents": "\n> Reason: I want to know if any of these features are scheduled.\n> \n> 1. Calculated fields in table definitions . eg.\n> \n> Create table test (\n> A Integer,\n> B integer,\n> the_sum As (A+B),\n> );\n\nThis is currently easily done with a procedur... |
[
{
"msg_contents": "\nWe lack a syntax that would enable us to write an on update/delete do instead rule\nthat would efficiently map an update/delete to a table that is referenced by a view.\n\nCurrently the only rule you can implement is one that uses a primary key.\nThis has the disadvantage of needing a self ... |
[
{
"msg_contents": "At 13:22 23/11/00 +0100, Zeugswetter Andreas SB wrote:\n>\n>We lack a syntax that would enable us to write an on update/delete do\ninstead rule\n>that would efficiently map an update/delete to a table that is referenced\nby a view.\n>\n>Currently the only rule you can implement is one that us... |
[
{
"msg_contents": "\n> >We lack a syntax that would enable us to write an on update/delete do instead rule\n> >that would efficiently map an update/delete to a table that is referenced by a view.\n> >\n> >Currently the only rule you can implement is one that uses a primary key.\n> >This has the disadvantage of... |
[
{
"msg_contents": "At 12:28 PM 11/23/00 +0100, Zeugswetter Andreas SB wrote:\n>\n>> Reason: I want to know if any of these features are scheduled.\n>> \n>> 1. Calculated fields in table definitions . eg.\n>> \n>> Create table test (\n>> A Integer,\n>> B integer,\n>> the_sum... |
[
{
"msg_contents": "\nI've been reading with interest the comments about the transaction log\nmanagement.\n\nFirst, I'm pretty new to PostgreSQL so please forgive any blatant\nerrors or misunderstanding on my part.\n\nWe want access to the log to be serialized and similarly we don't want\nfsync()s to happen in p... |
[
{
"msg_contents": "Hi,\n\nWhat is the current way of getting the last built-in oid?\n\nI looked at the source of pg_dump, and it does this:\n\nSELECT datlastsysoid from pg_database where datname = 'dbname'\n\nBut as far as I can tell, the datlastsysoid field does not exist in\npg_database.\n\nWhat gives?\n\n--\... |
[
{
"msg_contents": "Howdy,\n\n> It turns out that the number of max_persistent \n> is linked to the httpd processes in some \n> difficult-to-describe way.\n\nIt's not that hard to describe. The max_persistent/max_links values are\nper Apache process.\n\nThus if you have:\n\npgsql.max_persistent = 2\n\nand \n\nMa... |
[
{
"msg_contents": "There's bound to be a better way, but in the NT resource kit there was a\ntool you can use to make any .exe a service.\n\nI have a bash script running under Cygwin as a service here using it.\n\nPeter\n\n-- \nPeter Mount\nEnterprise Support Officer, Maidstone Borough Council\nEmail: petermoun... |
[
{
"msg_contents": "At 07:49 24/11/00 -0000, Peter Mount wrote:\n>There's bound to be a better way, but in the NT resource kit there was a\n>tool you can use to make any .exe a service.\n\nWithout modifying the postmaster, this is probably the best solution. An NT\nservice has to handle and respond to various ev... |
[
{
"msg_contents": "Hi,\n\nI had a problem porting applications from mySQL.\nI can't find info on this in the docs... so mailed the list, sorry for \nmy english.\n\nI create the fileds name with first letter uppercase, I need this way, \nbecause the result set must have the fileds name with the correct case \nin... |
[
{
"msg_contents": "<pejac@altern.org> writes:\n> Strnage isn't it????\n\nNo. That's the intended and documented behavior. See the manual, eg,\nhttp://www.postgresql.org/users-lounge/docs/7.0/postgres/syntax525.htm\n\n\t\t\tregards, tom lane\n",
"msg_date": "Fri, 24 Nov 2000 12:05:04 -0500",
"msg_from"... |
[
{
"msg_contents": "... and I am not going to allow 7.1 to go out without a fix for this\nclass of problems. I'm fed up ;-)\n\nAs near as I can tell from the setlocale() man page, the only locale\ncategories that are really hazardous for us are LC_COLLATE and LC_CTYPE;\nthe other categories like LC_MONETARY aff... |
[
{
"msg_contents": "This code in psql/command.c allows *any* system user to place a\npredictably named symbolic link in /tmp and use it to alter/destroy\nfiles owned by the user running psql. (tested - postgresql 7.0.2).\n\nAll the information a potential attacker would need are available via a\nsimple 'ps'.\n\n... |
[
{
"msg_contents": "Vadim,\n\nIn xlog.c, the declaration of struct ControlFileData says:\n\n /*\n * MORE DATA FOLLOWS AT THE END OF THIS STRUCTURE - locations of data\n * dirs\n */\n\nIs this comment accurate? I don't see any sign in the code of placing\nextra data after the declared structure. ... |
[
{
"msg_contents": "Hello, Francisco Figueiredo Jr.\n\nplpgsql did not support @id as parameter(need double-quote), somebody suggest me to use vid\nfor parameter. When use vid as parameter for plpgsql, in C# program we use @vid, Npgql\nwill delete @, then pass vid to plpgsql. So I want to change Npgsql not to de... |
[
{
"msg_contents": "This is part question, part short, sad tale.\n\nWorking on my database, I had a view that would lock up the \nmachine (eats all available memory, soon goes belly-up.) Turned out \nto be a recursive view: view A asked a question of view B that \nasked view A. [is it possible for pgsql to detec... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.