Swarm64 DA reference Accelerated sequential scanThe accelerated sequential scan enables the database to perform most of the table scans faster than using the default sequential scan implementation.Automatic analyzeThe automatic analyze is a fallback that executes ANALYZE on a table to update statistics. Columnstore indexThe columnstore index provides a more performant way to retrieve data from large tables in queries that use a subset of all the columns in the table.Query rewritingThe query rewriting subsystem improves the performance of certain queries by rewriting the query into a better performing variant.Planner improvementsA collection of improvements to the PostgreSQL planner.Settings advisorThe settings advisor helps you to identify which configuration settings could improve the performance of your system.Improved parallelism Improvements which enable PostgreSQL to use query parallelism in more situations. Workload managementThe workload manager limits and controls how many queries can run concurrently at a time for a better resource usage.Improved EXPLAINThe EXPLAIN improvements make the EXPLAIN output for FORMAT TEXT more readable and amend each plan node with information about self time and misestimate.Performance analyzer (experimental)The performance analyzer records and displays aggregated performance statistics for queries and utility statements.