在B库创建外表指向A库的视图,A库的视图中使用了函数,并且函数中使用了表order_info_t,
在查询外表时报错:
[42P01] ERROR: relation "order_info_t" does not exist 在位置:PL/pgSQL function lims.get_order_type_f(character varying) line 16 at SQL statement remote SQL command: SELECT count(*) FROM lims.sample_order_v
解决方法:
将A库中函数中使用的所有表前面加上schema信息,再次查询外表不再报错。