MySQL "no" has no configuration set by default to limit SELECT queries.
You're probably using MySQL Workbench that automatically places LIMIT 0,1000 on all your SELECTs.
To disregard this setting, simply use a LIMIT greater than 1000 in your query so workbench will read your query and you will see that you already have a defined limit and will not put any LIMIT in your query.
The other option is to remove the Workbench configuration ("SQL queries > Limit rows").
MySQL has a setting called sql_select_limit that is used to limit the SELECTs result even without using LIMIT, the default value of this setting is (2 ^ 32) -1 or (2 ^ 64) -1 , surely no one will display a report with a value greater than those. :)
MySQL Workbench does not change this setting, the program literally concatenates LIMIT 0,1000 in SELECTs if LIMIT is not defined.