mirror of
https://github.com/postgres/postgres.git
synced 2025-07-12 21:01:52 +03:00
Allow per-tablespace effective_io_concurrency
Per discussion, nowadays it is possible to have tablespaces that have wildly different I/O characteristics from others. Setting different effective_io_concurrency parameters for those has been measured to improve performance. Author: Julien Rouhaud Reviewed by: Andres Freund
This commit is contained in:
@ -1885,7 +1885,7 @@ psql_completion(const char *text, int start, int end)
|
||||
pg_strcasecmp(prev_wd, "(") == 0)
|
||||
{
|
||||
static const char *const list_TABLESPACEOPTIONS[] =
|
||||
{"seq_page_cost", "random_page_cost", NULL};
|
||||
{"seq_page_cost", "random_page_cost", "effective_io_concurrency", NULL};
|
||||
|
||||
COMPLETE_WITH_LIST(list_TABLESPACEOPTIONS);
|
||||
}
|
||||
|
Reference in New Issue
Block a user