diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2017-03-28 20:15:02 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2017-03-28 20:15:02 +0300 |
commit | 0bded4b541fa6b43026f9ca789dfb603ad366d35 (patch) | |
tree | 8d66dc031056c86cb87c16cacb2ea3973a37a64b | |
parent | 6c8b85f04ca2f287ad4244bc911726739a1a212a (diff) | |
download | nixsap-0bded4b541fa6b43026f9ca789dfb603ad366d35.tar.gz |
mariadb: add some more mysqld options
-rw-r--r-- | modules/apps/mariadb/mysqld.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/apps/mariadb/mysqld.nix b/modules/apps/mariadb/mysqld.nix index e0090c6..b807d96 100644 --- a/modules/apps/mariadb/mysqld.nix +++ b/modules/apps/mariadb/mysqld.nix @@ -226,7 +226,11 @@ in { max_connect_errors = optional int; max_connections = optional int; max_heap_table_size = optional int; + max_length_for_sort_data = optional int; + max_prepared_stmt_count = optional int; max_relay_log_size = optional int; + max_sort_length = optional int; + max_statement_time = optional int; max_user_connections = optional int; net_read_timeout = optional int; net_write_timeout = optional int; |