In postgresql 9.6 (running under Windows 7 64), I attempted to run a script to create tables but it showed this error:
ERROR: table "street_locality_point" does not exist
********** Error **********
ERROR: table "street_locality_point" does not exist
SQL state: 42P01
The problem is that "street_locality_point" does exist in lines 14, and 333 and 334.
What is causing this error?
create_tables_ansi.sql
DROP TABLE IF EXISTS STREET_LOCALITY_POINT;
http://www.postgresqltutorial.com/postgresql-drop-table/