I would expect the performance of SQLite for queries against an index to outperform MySQL and PostgreSQL in all cases - because SQLite eliminates the need for network overhead by essentially executing those queries directly as a C function call.
So no matter how optimized MySQL and PostgreSQL are, SQLite will run rings around them for basic SELECT queries.