Re: using vars in ddl in procedure call

Поиск
Список
Период
Сортировка
От salah jubeh
Тема Re: using vars in ddl in procedure call
Дата
Msg-id 1346253143.28160.YahooMailNeo@web122205.mail.ne1.yahoo.com
обсуждение исходный текст
Ответ на using vars in ddl in procedure call  ("Gauthier, Dave" <dave.gauthier@intel.com>)
Список pgsql-general
Hello,
you need to use execute command 

i.e.
execute 'alter table ........ ' || newcol || ';'

Regards



From: "Gauthier, Dave" <dave.gauthier@intel.com>
To: "pgsql-general@postgresql.org" <pgsql-general@postgresql.org>
Sent: Wednesday, August 29, 2012 4:56 PM
Subject: [GENERAL] using vars in ddl in procedure call

Hi:
 
v9.0.1 on linux.
 
Trying (failing) a test to see if I can run ddl in a procedure where elements of the ddl are vars.  Consider...
 
create or replace function newcol (text) returns integer as $$
declare
  newcol alias for $1;
begin
 
  alter table target add column newcol text;
 
return(0);
 
end;
$$ language plpgsql;
 
This successfully adds a column called "newcol" instead of what I passed it as an arg.
 
Any suggestions on how to make this work?
 
Thanks !
 


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

Предыдущее
От: Merlin Moncure
Дата:
Сообщение: Re: String comparision in PostgreSQL
Следующее
От: Tom Lane
Дата:
Сообщение: Re: using vars in ddl in procedure call