I'm suspecting our Postgres DB has performance issue so I'm troubleshooting.
First I'm running a query below from my local laptop like below;
"select * from table1"
And this table has 7 rows and it taks around 506 ms, seems slow.
So after then I run the query below;
EXPLAIN ANALYZE select * from table1;
Output is below;
So if I'm correct, output says query took 0.008 second?
So how can I understand these values? Are these values ok?
Ps : Postgresql ver is 10.4 but I couldn't found the tag!
Thanks!

