I see there is a nice option how to enable log slow queries and queries without indexes:
SET GLOBAL log_queries_not_using_indexes=1;
SET GLOBAL log_slow_queries=1;
OK, OK, but it seems both write in the same log file I have specified at my.cnf configuration file:
[mysqld]
long_query_time = 1
log-slow-queries = /var/log/mysql/mysql-slow.log
I use mysqldumpslow to see the slowest queries, but what I need to do to see separately that queries without indexes?