CATALOG SCAN USING USER EQUAL CONDITION is a search strategy of the SQL optimizer.
The system can choose this strategy when the schema name was specified exactly.
Example
EXPLAIN
SELECT * FROM TABLES
WHERE schemaname = 'HOTEL'
The system identifies the relevant tables using a key range scan.