Re: [BUGS] BUG #8512: Can't use columns I can't read in the where clause of a select

2013-10-08 Thread Stephen Frost
be improved, but the second sentence ("This privilege is also needed..") is intended to cover the case where the column is being referred to *anywhere* in the query, basically, and that applies to SELECT as much as UPDATE or DELETE. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] Memory-leak in BackgroundWriter(and Checkpointer)

2013-06-11 Thread Stephen Frost
* Pawel Kozik (pawel.ko...@alcatel-lucent.com) wrote: > Any idea when it will be available in official PostgreSQL release 9.1.x or > 9.2.x ? Yes, the next set of point releases should include Tom's patch to fix this leak. Thanks, Stephen signature.asc

Re: [BUGS] Memory-leak in BackgroundWriter(and Checkpointer)

2013-06-04 Thread Stephen Frost
* Tom Lane (t...@sss.pgh.pa.us) wrote: > I'm already working on back-patching the attached. Works for me, Thanks! Stephen signature.asc Description: Digital signature

Re: [BUGS] Memory-leak in BackgroundWriter(and Checkpointer)

2013-06-04 Thread Stephen Frost
dbySnapshot? Certainly good questions and better comments would have helped here. I can go back and rework the patch either way. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] Memory-leak in BackgroundWriter(and Checkpointer)

2013-06-04 Thread Stephen Frost
uses a static variable to keep track of memory allocated for the data being returned to the caller. Looks like this will need to be back-patched to 9.0. Barring objections or better ideas, I'll do that in a few hours. Thanks, Stephen colordiff --git a/src/backend/s

Re: [BUGS] Memory-leak in BackgroundWriter(and Checkpointer)

2013-06-04 Thread Stephen Frost
ne with fixing it either way. And this is really the other point- having LogStandbySnapshot() need to clean up after GetRunningTransactionLocks() but not GetRunningTransactionData() would strike me as very odd. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] Memory-leak in BackgroundWriter(and Checkpointer)

2013-06-04 Thread Stephen Frost
reuse the same memory, ala what GetRunningTransactionData() does, and avoid having to do allocation while holding all the locks (or at least, not very often). Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #8193: A few cosmetic misspell fixes.

2013-06-01 Thread Stephen Frost
t; changing the structure name to Extension does not look to be appropriate as > it is a generic name... Took a simpler approach and just renamed it to CoverExt, that should also avoid any confusion with actual extensions. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #8176: problem with the "ALTER TYPE name RENAME TO new_name [ CASCADE | RESTRICT ]" syntax

2013-05-27 Thread Stephen Frost
R TYPE .. RENAME ATTRIBUTE and that it isn't supported for ALTER TYPE .. RENAME TO. This update will be pushed out with the next releases. Thanks! Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #8176: problem with the "ALTER TYPE name RENAME TO new_name [ CASCADE | RESTRICT ]" syntax

2013-05-27 Thread Stephen Frost
ly. I agree that it's a documentation issue. Of course, that makes it easier to fix. :) Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #8176: problem with the "ALTER TYPE name RENAME TO new_name [ CASCADE | RESTRICT ]" syntax

2013-05-27 Thread Stephen Frost
Maxim, * Stephen Frost (sfr...@snowman.net) wrote: > * maxim.bo...@gmail.com (maxim.bo...@gmail.com) wrote: > > It seems that documentation wrong or [ CASCADE | RESTRICT ] feature of ALTER > > TYPE ... RENAME TO isn't implemented. > > Actually, I'm pretty sure i

Re: [BUGS] BUG #8176: problem with the "ALTER TYPE name RENAME TO new_name [ CASCADE | RESTRICT ]" syntax

2013-05-27 Thread Stephen Frost
oring to have all the ALTER .. RENAME operations go through the same code paths. > Test case: Thanks for this. I'm working on fixing this and will also add regression tests to, hopefully, avoid this getting broken in the future. Thanks again, Stephen signa

Re: [BUGS] BUG #7808: unnest doesn't handle nulls in array of composite types correctly

2013-01-14 Thread Stephen Frost
rows cannot return null value => select * from unnest(array[row(null)::xt]); a --- (1 row) Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] Prepared Statement Name Truncation

2012-11-19 Thread Stephen Frost
ich adhere to it, if there's someone willing to do the work to fix it. I'm not volunteering (yet), but I wouldn't say "no, we're never going to fix this" either. Perhaps a TODO item to investigate the value of making relname variable length? Or to investigate the actual impact of increasing the length? Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] Prepared Statement Name Truncation

2012-11-17 Thread Stephen Frost
his to be an ERROR in 9.3. I don't see the value in the truncation and feel it's actually dangerous, particularly if ORMs are doing things like this. Thanks, Stephen signature.asc Description: Digital signature

[BUGS] i cannot able to delete the sql function permenently

2012-05-29 Thread Fijil Stephen
Hi I am created a function CREATE FUNCTION one(float,float) RETURNS float AS $$ select $1+$2 AS result; $$ LANGUAGE SQL; Its worked Then I droped the function Drop function one(float,float) Its also worked Then I typed Select one(18.5,12.4) Ho… the result appers as 31.9

[BUGS] BUG #6255: Unable to Install (Binary, One Click Installer

2011-10-15 Thread stephen
The following bug has been logged online: Bug reference: 6255 Logged by: stephen Email address: snpmons...@gmail.com PostgreSQL version: 9.1.1 Operating system: Windows 7 Description:Unable to Install (Binary, One Click Installer Details: Hi, I tried installing

Re: [BUGS] BUG #6231: weird to_timestamp behaviour with out of range values

2011-10-01 Thread Stephen Frost
tion, I don't see any reason why we should be allowing it in to_timestamp(). If the values at the 'MM' location are outside of the valid range, we should be throwing an error. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5990: 100% CPU reached

2011-04-20 Thread Stephen Frost
RAM...). Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5626: Parallel pg_restore fails with "tuple concurrently updated"

2010-08-20 Thread Stephen Frost
's a whole lot of rather complex work though. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5559: Full SSL verification fails when hostaddr provided

2010-07-15 Thread Stephen Frost
x it to use hostaddr if host is null. That's fine with me. I'd rather have it not broken anyway. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5559: Full SSL verification fails when hostaddr provided

2010-07-15 Thread Stephen Frost
* Tom Lane (t...@sss.pgh.pa.us) wrote: > Stephen Frost writes: > > Perhaps I was being a bit overzealous in my last response, sorry about > > that. If the point here is that people who are using hostaddr are in an > > environment where DNS is non-functional or actively broke

Re: [BUGS] BUG #5559: Full SSL verification fails when hostaddr provided

2010-07-14 Thread Stephen Frost
blis.org I always get a postgres/beren.tsf.noblis@tsf.noblis.org ticket, for that server, since that's what the rDNS is, and that's what's in the KDC (it hasn't got entries for any of the others). In any case, let's please make sure not to break that. :) Thanks! Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5559: Full SSL verification fails when hostaddr provided

2010-07-14 Thread Stephen Frost
7;t break without a real reason. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5559: Full SSL verification fails when hostaddr provided

2010-07-14 Thread Stephen Frost
* Tom Lane (t...@sss.pgh.pa.us) wrote: > Stephen Frost writes: > > krb5_sname_to_principal() will use the passed hostname for the second > > component. If type is KRB5_NT_SRV_HST this name will be looked up with > > gethostbyname(). If hostname is NULL, the l

Re: [BUGS] BUG #5559: Full SSL verification fails when hostaddr provided

2010-07-14 Thread Stephen Frost
* Tom Lane (t...@sss.pgh.pa.us) wrote: > Stephen Frost writes: > > I've never found a reason to use hostaddr, so I don't particularly care, > > but it doesn't seem right to break Kerberos auth if you were only given > > an IP address unless hostaddr'

Re: [BUGS] BUG #5559: Full SSL verification fails when hostaddr provided

2010-07-14 Thread Stephen Frost
m right to break Kerberos auth if you were only given an IP address unless hostaddr's entire point is that it will prevent a DNS lookup from happening, ever. If that's the case, it should probably be made more clear in the docs that you can't use hostaddr w/ Kerberos but

Re: [BUGS] BUG #5559: Full SSL verification fails when hostaddr provided

2010-07-14 Thread Stephen Frost
works in the libpq documentation or what the context is for the above, but I'm pretty sure that's where the original wording came from. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5488: pg_dump does not quote column names -> pg_restore may fail when upgrading

2010-06-10 Thread Stephen Frost
ional switch > "--data-file=filename", with the schema output still going where it > goes now (ie, -f or stdout). +1 from me, excellent solution. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5488: pg_dump does not quote column names -> pg_restore may fail when upgrading

2010-06-10 Thread Stephen Frost
hings. Easier to find than searching the archive, ime. Of course, that'll probably change as more things get added to the wiki. :) Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5488: pg_dump does not quote column names -> pg_restore may fail when upgrading

2010-06-10 Thread Stephen Frost
' option with a 'base-file-name' parameter which then generates: pre-data DDL data post-data DDL psql script to run them in order (\i-style) ? Just my 2c. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5488: pg_dump does not quote column names -> pg_restore may fail when upgrading

2010-06-10 Thread Stephen Frost
* Tom Lane (t...@sss.pgh.pa.us) wrote: > Stephen Frost writes: > > Erm, I don't know that we deal with function-body problems today, even > > when using the newer version of pg_dump, do we? > > Right, any forward-compatibility problems arising inside functions > ar

Re: [BUGS] BUG #5488: pg_dump does not quote column names -> pg_restore may fail when upgrading

2010-06-10 Thread Stephen Frost
to run the function? We use $ quoting for the function bodies entirely otherwise... Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5488: pg_dump does not quote column names -> pg_restore may fail when upgrading

2010-06-10 Thread Stephen Frost
what has to be *quoted* inside a quoted identifier terribly often... Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5488: pg_dump does not quote column names -> pg_restore may fail when upgrading

2010-06-10 Thread Stephen Frost
to it w/o code duplication, that'd be great, but it just doesn't feel like a hard problem to solve or one that requires a huge amount of code.. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5488: pg_dump does not quote column names -> pg_restore may fail when upgrading

2010-06-10 Thread Stephen Frost
are and fix them". Obviously, we should caveat our response that this will only fix the pg_dump/restore problem and that their applications may need to be fixed. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5488: pg_dump does not quote column names -> pg_restore may fail when upgrading

2010-06-10 Thread Stephen Frost
realize there's an issue, but then have a way to actually *fix* the restore without having to hack up multi-gigabyte files using vi. If you'd like, you're welcome to consider the default of "off" as a feature. +1 from me for adding the option. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5488: pg_dump does not quote column names -> pg_restore may fail when upgrading

2010-06-04 Thread Stephen Frost
* Hartmut Goebel (h.goe...@goebel-consult.de) wrote: > Am 04.06.2010 13:56, schrieb Stephen Frost: > > Quoting all column names makes the dump script much more difficult for > > human consumption, which is important. > > I don't agree with you here. But this may be

Re: [BUGS] BUG #5488: pg_dump does not quote column names -> pg_restore may fail when upgrading

2010-06-04 Thread Stephen Frost
eadability for humans is important. > So if readability is not important, what speaks against always quoting > the column names? Quoting all column names makes the dump script much more difficult for human consumption, which is important. Thanks, Stephen -- Sent

Re: [BUGS] PostgreSQL 9.0b1 - Error when checking table sizes

2010-05-27 Thread Stephen Frost
how I did it the other > day (hence why I've only just got the error today). public is in your search_path by default- that's why it works. Still, it's not really a *good* approach. Use the one that Tom showed. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5468: Pg doesn't send accepted root CA list to client during SSL client cert request

2010-05-25 Thread Stephen Frost
since they can change over time and make things more difficult.). > > In any case I'm thinking that we need to document how to set up > > configurations with chains of CA certs. > > Yes, and patch the server to send the list of trusted CAs to the client > during client certificate negotiaton to fix #5468 . Agreed. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #5468: Pg doesn't send accepted root CA list to client during SSL client cert request

2010-05-25 Thread Stephen Frost
confusion about intermediate CAs being accepted as root CAs just because they're in the same file or directory. All that being said- I don't think anyone would really complain if intermediate CAs and root CAs were stored in different directories/files. That's how Windows ha

Re: [BUGS] BUG #5166: readdir() failure on Mac OS-X is HFS "feature"

2009-11-05 Thread Stephen Tyler
utils/2006-09/threads.html#00359 And the first annoucement of the complete rewrite of remove.c is here: http://lists.gnu.org/archive/html/bug-coreutils/2009-08/msg00295.html Stephen Tyler -- Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs

[BUGS] psql -1 -f - busted

2009-10-22 Thread Stephen Frost
-f is set to stdin.. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #4824: KRB5/GSSAPI authentication fails when user != principal

2009-05-27 Thread Stephen Frost
. > I kinda thought we *had* been doing that, but can't claim to have read > that code closely. Magnus? We should certainly either be requiring the princ match the user in the database, or that it is allowed through a username mapping where a mapping table has been supplied, ala ident. Stephen signature.asc Description: Digital signature

Re: [BUGS] libpq 8.4 beta1: $PGHOST complains about missing root.crt

2009-04-14 Thread Stephen Frost
nd ca-certificates and default config the client to use those. Of course, anyone who actually cares about security probably wouldn't install ca-certificates, but it's what the browsers use. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] libpq 8.4 beta1: $PGHOST complains about missing root.crt

2009-04-14 Thread Stephen Frost
uld throw out encryption just because we don't have a root cert available for use. If we don't have a certificate it's not possible to validate *anyone*. That's going to be the case for packagers and I just can't imagine asking them to ship a broken configuration. Thanks

Re: [BUGS] libpq 8.4 beta1: $PGHOST complains about missing root.crt

2009-04-10 Thread Stephen Frost
t worth it. That causes problems for our users when they're going to sites that are about a billion times less likely to have been cracked into than Joe's crab shop out on the internet. Encouraging people to believe that the PKI that's currently being used for the web is actually meani

Re: [BUGS] libpq 8.4 beta1: $PGHOST complains about missing root.crt

2009-04-10 Thread Stephen Frost
* Peter Eisentraut (pete...@gmx.net) wrote: > On Friday 10 April 2009 21:32:29 Stephen Frost wrote: > > A properly configured server could cause a failure too unless the client > > is *also* properly configured. Sure, it's good for people to do. No, I > > don't

Re: [BUGS] libpq 8.4 beta1: $PGHOST complains about missing root.crt

2009-04-10 Thread Stephen Frost
ix is to have a warning/prompt (as pretty much all web browsers today do) but then continue to connect. Also, the web-browser analogy completely falls apart when you consider that the use case is significantly different (how many times have you connected to a PG server that you didn't know

Re: [BUGS] libpq 8.4 beta1: $PGHOST complains about missing root.crt

2009-04-10 Thread Stephen Frost
definitely not apparent why such strictness should be the > default behavior. I agree with this. Avoiding spoofing is good, but so is on the wire encryption even if you don't have anti-spoofing. This is a reasonable set-up and we shouldn't just fail on it. Stephen signature.asc Description: Digital signature

[BUGS] BUG #4503: failed to run initdb: 1!

2008-10-29 Thread Stephen
The following bug has been logged online: Bug reference: 4503 Logged by: Stephen Email address: [EMAIL PROTECTED] PostgreSQL version: 8.3.4 Operating system: Vista Home Premium Description:failed to run initdb: 1! Details: I get the error: failed to run initdb: 1

Re: [BUGS] BUG #4396: Trigger event fired "UPDATE" when "DELETE" happening via foreign key

2008-09-03 Thread Stephen Cuppett
o look for the other path! Thanks, Steve --- Stephen Cuppett SAS® Certified Advanced Programmer for SAS9® Tel: +1 919 531 0659 ▪ [EMAIL PROTECTED] www.sas.com SAS® … THE POWER TO KNOW® -Original Message

Re: [BUGS] BUG #4396: Trigger event fired "UPDATE" when "DELETE" happening via foreign key

2008-09-03 Thread Stephen Cuppett
e already gone. Steve ------- Stephen Cuppett SAS® Certified Advanced Programmer for SAS9® Tel: +1 919 531 0659 ▪ [EMAIL PROTECTED] www.sas.com SAS® … THE POWER TO KNOW® -Original Message- From: Tom Lane [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 03, 2008 12:24 PM To: Ste

Re: [BUGS] BUG #4396: Trigger event fired "UPDATE" when "DELETE" happening via foreign key

2008-09-03 Thread Stephen Cuppett
I can upload the whole schema someplace, or is attaching a few files here okay? Noticed that if I delete from the feature level, I do not hit the problem. --- Stephen Cuppett SAS® Certified Advanced Programmer

[BUGS] BUG #4396: Trigger event fired "UPDATE" when "DELETE" happening via foreign key

2008-09-03 Thread Stephen Cuppett
The following bug has been logged online: Bug reference: 4396 Logged by: Stephen Cuppett Email address: [EMAIL PROTECTED] PostgreSQL version: 8.3.3 Operating system: RHEL5.2 x86_64 Description:Trigger event fired "UPDATE" when "DELETE" happe

[BUGS] BUG #4001: ecpg produces code that won't compile

2008-02-29 Thread Stephen Clark
The following bug has been logged online: Bug reference: 4001 Logged by: Stephen Clark Email address: [EMAIL PROTECTED] PostgreSQL version: 8.3.0 Operating system: FreeBSD 6.2 Description:ecpg produces code that won't compile Details: Below is a code fragment

[BUGS] BUG #3784: pg_ctl fails to start server when called with -c parameters

2007-11-28 Thread Stephen Bespalko
The following bug has been logged online: Bug reference: 3784 Logged by: Stephen Bespalko Email address: [EMAIL PROTECTED] PostgreSQL version: 8.2.5 Operating system: Mac OS X 10.5 Description:pg_ctl fails to start server when called with -c parameters Details: The

[BUGS] psql \COPY accepts multiple NULL AS

2007-07-26 Thread Stephen Frost
27;NULL AS' strings, but till that's added it'd probably be best if psql error'd on this like the backend does rather than accepting it and then not doing it. Thanks! Stephen signature.asc Description: Digital signature

Re: [BUGS] 'SET LOCAL ROLE blah;' doesn't work?

2007-06-28 Thread Stephen Frost
ly when we say 'transaction', we're meaning the a 'full' one and not a savepoint/release in the documentation. The 'SET LOCAL' documentation even talks explicitly about COMMIT and ROLLBACK being what causes a reset, RELEASE isn't mentioned. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] 'SET LOCAL ROLE blah;' doesn't work?

2007-06-28 Thread Stephen Frost
optionally, reset the role explicitly as well. Of course, alternatively, we could have reset all apply to roles. I don't honestly feel very strongly either way on that one. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] 'SET LOCAL ROLE blah;' doesn't work?

2007-06-28 Thread Stephen Frost
* Tom Lane ([EMAIL PROTECTED]) wrote: > Stephen Frost <[EMAIL PROTECTED]> writes: > > At http://www.postgresql.org/docs/8.2/static/sql-set-role.html, we > > claim that 'SESSION and LOCAL modifiers act the same as for the > > regular SET command', bu

[BUGS] 'SET LOCAL ROLE blah;' doesn't work?

2007-06-28 Thread Stephen Frost
ly mention somehow under 'reset all' that 'reset role' isn't done, and similairly that the documentation under 'set' doesn't apply for 'set role'. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] Removing pg_auth_members.grantor (was Grantor name gets lost when grantor role dropped)

2007-05-04 Thread Stephen Frost
* Tom Lane ([EMAIL PROTECTED]) wrote: > Stephen Frost <[EMAIL PROTECTED]> writes: > > If you're saying we don't currently warn if a revoke leaves the > > priviledges in-tact for the right and target, I'm not sure you can > > currently get in a sta

Re: [BUGS] Removing pg_auth_members.grantor (was Grantor name gets lost when grantor role dropped)

2007-05-04 Thread Stephen Frost
* Tom Lane ([EMAIL PROTECTED]) wrote: > Stephen Frost <[EMAIL PROTECTED]> writes: > > Hmm. I'm not sure, but that may have been a case where it was generally > > decided that the spec was somewhat braindead in this fashion (it seems > > so in my personal view of

Re: [BUGS] Removing pg_auth_members.grantor (was Grantor name gets lost when grantor role dropped)

2007-05-04 Thread Stephen Frost
hich are being revoked, even if through someone else. Perhaps that also implies that tracking the grantor is unnecessary. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] Removing pg_auth_members.grantor (was Grantor name gets lost when grantor role dropped)

2007-05-04 Thread Stephen Frost
omes when I do need it and it's not there. :) Thanks, Stephen signature.asc Description: Digital signature

[BUGS] BUG #2750: information_schema broken with primary and foreign key on the same column

2006-11-09 Thread Stephen haberman
The following bug has been logged online: Bug reference: 2750 Logged by: Stephen haberman Email address: [EMAIL PROTECTED] PostgreSQL version: 8.2 beta 3 Operating system: win32 Description:information_schema broken with primary and foreign key on the same column

Re: [BUGS] BUG #2667: vacuuming a 70GB table causes a "crash"

2006-10-01 Thread Stephen R. van den Berg
On 9/30/06, Tom Lane <[EMAIL PROTECTED]> wrote: "Stephen R. van den Berg" <[EMAIL PROTECTED]> writes: > datalog=# vacuum verbose fnetsense; > INFO: vacuuming "public.fnetsense" > PANIC: right sibling is not next child in "fnetsense_utstamp_ke

[BUGS] BUG #2667: vacuuming a 70GB table causes a "crash"

2006-09-30 Thread Stephen R. van den Berg
The following bug has been logged online: Bug reference: 2667 Logged by: Stephen R. van den Berg Email address: [EMAIL PROTECTED] PostgreSQL version: 8.1.4 Operating system: Linux 2.6.16.20 Debian (pg: 8.1.4-6) Description:vacuuming a 70GB table causes a "

[BUGS] BUG #2461: pg_dump ftell mismatch error

2006-06-02 Thread Stephen
The following bug has been logged online: Bug reference: 2461 Logged by: Stephen Email address: [EMAIL PROTECTED] PostgreSQL version: 8.1.4 Operating system: Windows Server 2003 Description:pg_dump ftell mismatch error Details: HI, I'm using pgadmin to back

[BUGS] BUG #2462: pg_dump ftell mismatch error (cont'd)

2006-06-02 Thread Stephen
The following bug has been logged online: Bug reference: 2462 Logged by: Stephen Email address: [EMAIL PROTECTED] PostgreSQL version: 8.1.4 Operating system: Windows Server 2003 Description:pg_dump ftell mismatch error (cont'd) Details: This is a continuati

[BUGS] BUG #2446: FATAL: Could not write to statistics collector pipe.

2006-05-21 Thread Stephen
The following bug has been logged online: Bug reference: 2446 Logged by: Stephen Email address: [EMAIL PROTECTED] PostgreSQL version: 8.1.3 Operating system: Windows Server 2003 Description:FATAL: Could not write to statistics collector pipe. Details: I'm ge

Re: [BUGS] BUG #2372: dblink_exec doesn't return. NEVER!

2006-04-03 Thread Stephen Frost
t in the process for users to view). Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #2246: Bad malloc interactions: ecpg, openssl

2006-02-14 Thread Stephen Frost
* Tom Lane ([EMAIL PROTECTED]) wrote: > Stephen Frost <[EMAIL PROTECTED]> writes: > > Another approach would be to have PQsetdbLogin build up a conninfo > > string and pass that into connectOptions1 instead of calling > > connectOptions1 with an empty string a

Re: [BUGS] BUG #2246: Bad malloc interactions: ecpg, openssl

2006-02-14 Thread Stephen Frost
* Andrew Klosterman ([EMAIL PROTECTED]) wrote: > On Tue, 14 Feb 2006, Stephen Frost wrote: > > > It's kind of a chicken-and-egg here because the backend decides what > > authentication mechanism to ask for based off the username (at least in > > part) through pg_hb

Re: [BUGS] BUG #2246: Bad malloc interactions: ecpg, openssl

2006-02-14 Thread Stephen Frost
so be interesting to look into the Kerberos libraries to see why they're attempting to malloc(0), perhaps there's a bug there when Kerberos isn't set up on the machine? Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #2246: Bad malloc interactions: ecpg, openssl

2006-02-13 Thread Stephen Frost
strip" dpkg-buildpackage -uc -us -rfakeroot Should produce .debs in the parent directory which have debugging information. Another useful build option is "noopt", ie: export DEB_BUILD_OPTIONS="nostrip noopt", though that could make the error go disappear. It'd be

Re: [BUGS] BUG #2246: Bad malloc interactions: ecpg, openssl

2006-02-13 Thread Stephen Frost
perhaps on the client you had something more recent? Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #2246: Bad malloc interactions: ecpg, openssl

2006-02-13 Thread Stephen Frost
matching your libpq and libkrb5 > RPMs you should be able to get better info. We do have debugging .debs- for some things. We don't have them for everything and unfortunately we don't yet have them for Postgres. I'll talk to Martin about building some though so that in the future it's easier to debug these problems. Thanks, Stephen signature.asc Description: Digital signature

[BUGS] pg_restore error checking

2006-01-20 Thread Stephen Frost
command comes back as an error. If it's not too invasive of a fix, I really think it should be included in the next point release of 8.1. Thanks! Stephen signature.asc Description: Digital signature

Re: [BUGS] horology regression test failure

2005-12-21 Thread Stephen Frost
also, which I hope Martin is doing but honestly havn't gone back and checked on lately. :) Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #2052: Federal Agency Tech Hub Refuses to Accept Postgresql on Network because of Security Vulnerabilities

2005-11-18 Thread Stephen Frost
e you might consider looking at Oracle's track record for fixing security issues. It's rather... poor. There have been a number of articles to this affect on bugtraq recently, you shouldn't have too much trouble finding good examples. Enjoy, Stephen signature.asc Description: Digital signature

Re: [BUGS] Index name different from constraint name

2005-10-27 Thread Stephen Frost
s there much dependency on constraint names? If not, it'd seem like implementing this would be pretty straight-forward. For some reason, I thought there was some dependency on constraint names, but I can't remember what... Thanks,

Re: [BUGS] Index name different from constraint name

2005-10-26 Thread Stephen Frost
* Tom Lane ([EMAIL PROTECTED]) wrote: > Stephen Frost <[EMAIL PROTECTED]> writes: > > test=> create table a ( > > test(> b int primary key > > test(> ); > > NOTICE: CREATE TABLE / PRIMARY KEY will create implicit index "a_pkey" for= >

[BUGS] Index name different from constraint name

2005-10-26 Thread Stephen Frost
would seem to me that \d can use its current format when the names are the same, but if they're different it should display the index and the constraint seperately. Sorry, havn't really got time to write a patch at the moment. Hopefully someone might have a minute to look into it tho. Thanks, Stephen signature.asc Description: Digital signature

Re: [BUGS] BUG #1830: Non-super-user must be able to copy from a

2005-08-19 Thread Stephen Frost
uthentication token, the password isn't actually interesting in that case). Thanks, Stephen signature.asc Description: Digital signature

[BUGS] BUG #1512: Assertion failure (lock.c:1537) with SELECT FOR UPDATE and savepoints

2005-02-28 Thread Stephen Clouse
The following bug has been logged online: Bug reference: 1512 Logged by: Stephen Clouse Email address: [EMAIL PROTECTED] PostgreSQL version: 8.0.1 Operating system: Fedora Core 3 Description:Assertion failure (lock.c:1537) with SELECT FOR UPDATE and savepoints

Re: [BUGS] Grant Update (Possible bug)?

2004-07-02 Thread Stephen Frost
... It would seem reasonable, then, that a grant of update privilege would imply a grant of select privilege. Currently this isn't the case. Stephen signature.asc Description: Digital signature

[BUGS] No error-checking on binary timestamp

2004-04-02 Thread Stephen Frost
e pointers on the proper way to convert from unix time to timestamp binary format either, btw. I was attempting to do basically the same thing 'AbsoluteTimeUsecToTimestampTz', but apparently that's not right. :) Stephen signature.asc Description: Digital signature

[BUGS] Bug in functions returning setof where table has dropped column

2004-01-18 Thread Stephen Quinney
t does not occur for them. I am using postgresql 7.4.1 on Debian sid/unstable (i386). Thanks in advance, Stephen Quinney ---(end of broadcast)--- TIP 6: Have you searched our list archives? http://archives.postgresql.org

Re: [BUGS] pg_dump function dumped after required for table definition

2003-11-08 Thread Stephen Frost
* Tom Lane ([EMAIL PROTECTED]) wrote: > Reece Hart <[EMAIL PROTECTED]> writes: > > I have a hunch about why this happens and is rare. The pftype_id_lookup > > function was created AFTER some of the tables using 'alter table set > > default ...'. Thus, the function's OID is greater than the OID of t

[BUGS] pg_hba.conf changes

2003-08-01 Thread Stephen Frost
#x27; again, at least for that database and possibly overall. Havn't had a chance to play with it yet but it seems pretty straight-forward to repeat. Stephen pgp0.pgp Description: PGP signature

[BUGS] Referential integrity problem postgresql 7.2 ?

2002-06-11 Thread Stephen R. van den Berg
deferred); insert into a values (7); begin; insert into b values (-7); update b set ia=-ia where ia<0; commit; drop table a; drop table b; -- Sincerely, [EMAIL PROTECTED] Stephen R. van den Berg (AKA BuGless). "-- hit

Re: [BUGS] Why does Postgres need the /bin/sh?

2002-05-04 Thread Stephen Amadei
On Sat, 4 May 2002, Tom Lane wrote: > Stephen Amadei <[EMAIL PROTECTED]> writes: > > However, if someone was to know that Postgres needs a /bin/rm, an exploit > > could be created that runs /bin/rm instead of /bin/sh and trashes the > > databases postgres owns.

Re: [BUGS] 7.2.1 segfaults.

2002-05-04 Thread Stephen Amadei
n /usr/local/pgsql/data and then 'cp -aRp'ing it into the chroot. So I had two copies of the same corrupt database. Thanks for the help. Steve Stephen Amadei Dandy.NET! CTO Atlantic City, NJ ---(end of broadcast)--- TIP 4: Don't 'kill -9' the postmaster

Re: [BUGS] Why does Postgres need the /bin/sh?

2002-05-03 Thread Stephen Amadei
bring this idea up mostly because I think others may wish to put Postgres in a chrooted environment, and this small coding change will help them. I also wondered if any odd side effects would occur... Steve Stephen Amadei Dandy.NET! CTO Atlantic City, NJ

Re: [BUGS] 7.2.1 segfaults.

2002-05-03 Thread Stephen Amadei
On Fri, 3 May 2002, Tom Lane wrote: > Stephen Amadei <[EMAIL PROTECTED]> writes: > >> Urgh. Can you provide a stack trace? > > > You mean using strace? Yeah. The strace created quite a bit of logs, but > > the process that segfaulted is included below. > &g

Re: [BUGS] 7.2.1 segfaults.

2002-05-03 Thread Stephen Amadei
On Fri, 3 May 2002, Tom Lane wrote: > Stephen Amadei <[EMAIL PROTECTED]> writes: > > I have been trying to run Postgres 7.2.1 in a chrooted environment, but > > once I try to connect to the server with a "psql -l", it segfaults as it > > tries to read from

[BUGS] Why does Postgres need the /bin/sh?

2002-05-03 Thread Stephen Amadei
and rm programs directly (and placed /bin/cp and /bin/rm in the chroot jail) as a quick fix... I feel it gives a bit more security. Can anyone tell me if there is any inherently bad side effects to this? Or why the "system" call is necessary? S

  1   2   >