<p>PostgreSQL uses the search path to resolve object names. When we refer to a table using just its name, PostgreSQL searches for the table by using something called a <em>schema search path</em>, which is a list of schemas to look in. The default is <code>"$user", public</code>: </p>