[pgAdmin III] #191: Functions returning TABLE lose necessary double quotes for names

Поиск
Список
Период
Сортировка
От pgAdmin Trac
Тема [pgAdmin III] #191: Functions returning TABLE lose necessary double quotes for names
Дата
Msg-id 045.3868a0c3460d94cef803e4c6076e5d8b@code.pgadmin.org
обсуждение исходный текст
Ответы Re: [pgAdmin III] #191: Functions returning TABLE lose necessary double quotes for names  ("pgAdmin Trac" <trac@code.pgadmin.org>)
Re: [pgAdmin III] #191: Functions returning TABLE lose necessary double quotes for names  ("pgAdmin Trac" <trac@code.pgadmin.org>)
Список pgadmin-hackers
#191: Functions returning TABLE lose necessary double quotes for names
---------------------+------------------------------------------------------
 Reporter:  brsa     |       Owner:  dpage 
     Type:  bug      |      Status:  new   
 Priority:  minor    |   Milestone:  1.10.4
Component:  pgadmin  |     Version:        
 Keywords:           |    Platform:  all   
---------------------+------------------------------------------------------
 Yet another hickup in the reverse engineering of functions returning
 TABLE(): necessary double quotes for field names are lost. The resulting
 SQL DDL is not valid.

 Demo:
 ~~~~~
 -- I say:
 CREATE FUNCTION foo()
   RETURNS TABLE("my id" integer, "soMe TeXt" text) AS  -- note the quotes!
 $$
 SELECT 1, 'two'::text
 $$
   LANGUAGE sql;

 -- pgAdmin says:
 CREATE OR REPLACE FUNCTION foo()
   RETURNS TABLE(my id integer, soMe TeXt text) AS
 $BODY$
 SELECT 1, 'two'::text
 $BODY$
   LANGUAGE 'sql' VOLATILE
   COST 100
   ROWS 1000;
 ALTER FUNCTION foo() OWNER TO postgres;

--
Ticket URL: <http://code.pgadmin.org/trac/ticket/191>
pgAdmin III <http://code.pgadmin.org/trac/>
pgAdmin III

В списке pgadmin-hackers по дате отправления:

Предыдущее
От: "pgAdmin Trac"
Дата:
Сообщение: [pgAdmin III] #190: Add an option to Copy so that it all copies the header
Следующее
От: Erwin Brandstetter
Дата:
Сообщение: Reverse engineering of functions ..