external_file icon indicating copy to clipboard operation
external_file copied to clipboard

type "efile" does not exist

Open usmann123706 opened this issue 1 year ago • 1 comments

postgres=# CREATE TABLE external_file.efile_test ( id smallint primary key, the_file efile);

ERROR: type "efile" does not exist

usmann123706 avatar Jul 12 '24 08:07 usmann123706

The external_file schema must be in your search_path. For example you can proceed as follow but it must be adapted to your current search_path.

SET search_path="$user",public,external_file;

darold avatar Jul 15 '24 12:07 darold