Guest User

Untitled

a guest
May 25th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. => select 'ex.tt'::regclass::text;
  2. text
  3. -------
  4. ex.tt
  5.  
  6. => select 'public.tt'::regclass::text;
  7. text
  8. ------
  9. tt
  10.  
  11. SET LOCAL search_path = '';
  12. SELECT 'public.tt'::regclass::text;
  13.  
  14. SELECT relnamespace::regnamespace::text
  15. FROM pg_catalog.pg_class
  16. WHERE oid = 'public.tt'::regclass;
Add Comment
Please, Sign In to add comment