Class PostgresUtilities
- java.lang.Object
-
- jetbrains.buildServer.serverSide.db.postgress.PostgresUtilities
-
public final class PostgresUtilities extends Object
Utilities specific to PostgreSQL.
- Since:
- 2017.2.3
- Author:
- Andrey Shcheglov <mailto:andrey.shcheglov@jetbrains.com>
-
-
Field Summary
Fields Modifier and Type Field Description static String
TEMP_TABLE_STATISTICS_QUERY
The query used to read the statistics for a temporary table.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static boolean
getVacuumTempTables()
Returns whether temporary tables should beVACUUM
'ed (not onlyANALYZE
'ed) when not inside a transaction block.
-
-
-
Field Detail
-
TEMP_TABLE_STATISTICS_QUERY
@NotNull public static final String TEMP_TABLE_STATISTICS_QUERY
The query used to read the statistics for a temporary table. Parameters:
- the name of the temporary table.
- See Also:
- "pg_stat_user_tables", Constant Field Values
-
-