Önceki bir soruya verilen bu cevaba benzer ve kısıtlamalarınıpg_read_file()
istemiyorsanız (kısaca: pg_read_file
veritabanı dizininin dışındaki dosyaları okuyamaz ve geçerli oturumun karakter kodlamasındaki metni okur).
Bu işlev herhangi bir yol için çalışır, ancak süper kullanıcı olarak oluşturulması gerekir:
create or replace function stack.bytea_import(p_path text, p_result out bytea)
language plpgsql as $$
declare
l_oid oid;
begin
select lo_import(p_path) into l_oid;
select lo_get(l_oid) INTO p_result;
perform lo_unlink(l_oid);
end;$$;
lo_get
9.4 sürümünde tanıtıldı, böylece eski sürümler için ihtiyacınız olacak:
create or replace function stack.bytea_import(p_path text, p_result out bytea)
language plpgsql as $$
declare
l_oid oid;
r record;
begin
p_result := '';
select lo_import(p_path) into l_oid;
for r in ( select data
from pg_largeobject
where loid = l_oid
order by pageno ) loop
p_result = p_result || r.data;
end loop;
perform lo_unlink(l_oid);
end;$$;
sonra:
select convert_from(stack.bytea_import('/tmp/test.xml'), 'utf8')::xml;