Guest User

Untitled

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