Skip to content

Instantly share code, notes, and snippets.

@drewbanin
Created January 7, 2018 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drewbanin/60b4755043f2958a487a6817ecaad2b4 to your computer and use it in GitHub Desktop.
Save drewbanin/60b4755043f2958a487a6817ecaad2b4 to your computer and use it in GitHub Desktop.
create table public.test as (
select 1 as id
);
create view public.test_view as (
select * from public.test
);
drop table public.test;
ERROR: cannot drop table public.test because other objects depend on it
HINT: Use DROP ... CASCADE to drop the dependent objects too.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment