Postgres Hstore conact не работает из другой схемы - PullRequest
1 голос
/ 16 июня 2020

Работает следующее

select public.hstore('new_users', 'a');

Но это не работает

select public.hstore('new_users', 'a') || public.hstore('a', 'a');

Ошибка

SQL Error [42883]: ERROR: operator does not exist: public.hstore || public.hstore
  Hint: No operator matches the given name and argument type(s). You might need to add explicit type casts.
  Position: 40
  org.postgresql.util.PSQLException: ERROR: operator does not exist: public.hstore || public.hstore
  Hint: No operator matches the given name and argument type(s). You might need to add explicit type casts.
  Position: 40

1 Ответ

0 голосов
/ 16 июня 2020

Согласно предложению из комментариев

это работает нормально

select public.hstore('new_users', 'a') operator(public.||) public.hstore('a', 'a')
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...