Re: [HACKERS] Psql command-line completion bug

2008-03-06 Thread Bruce Momjian
Added to TODO: o Prevent escape string warnings when object names have backslashes http://archives.postgresql.org/pgsql-hackers/2008-01/msg00227.php --- Gregory Stark wrote: If you hit tab

Re: [HACKERS] Psql command-line completion bug

2008-01-11 Thread Tom Lane
[ catching up on email... ] Gregory Stark [EMAIL PROTECTED] writes: If you hit tab on a table name containing a \ you get spammed with a series of WARNINGS and HINTS about nonstandard use of \\ in a string literal: Yeah. This is actually a generic problem for *all* applications using

[HACKERS] Psql command-line completion bug

2008-01-08 Thread Gregory Stark
If you hit tab on a table name containing a \ you get spammed with a series of WARNINGS and HINTS about nonstandard use of \\ in a string literal: postgres=# select * from bar\bazTAB WARNING: nonstandard use of \\ in a string literal LINE 1: ...

Re: [HACKERS] Psql command-line completion bug

2008-01-08 Thread Roberts, Jon
Option 5 would be to deprecate the ability to use a \ in an object name. Jon -Original Message- From: Gregory Stark [mailto:[EMAIL PROTECTED] Sent: Tuesday, January 08, 2008 8:14 AM To: pgsql-hackers list Subject: [HACKERS] Psql command-line completion bug If you hit tab