]> git.pld-linux.org Git - packages/mysql.git/commitdiff
add more comments about log-output directive
authorElan Ruusamäe <glen@delfi.ee>
Thu, 1 May 2014 11:15:12 +0000 (14:15 +0300)
committerElan Ruusamäe <glen@delfi.ee>
Thu, 1 May 2014 11:15:12 +0000 (14:15 +0300)
mysqld.conf

index 199be5d4aaada90f8355abbb64ab586df79656d2..632ab021bc3a02f917212b7300542fffe7e3e994 100644 (file)
@@ -3,7 +3,6 @@
 #
 # One can use all long options that the mysqld supports.
 # Run mysqld with --help to get a whole list of available options
-# $Id$
 
 # This section must be the first!
 [mysqld]
@@ -106,7 +105,14 @@ skip-networking
 # replication local log
 #max_relay_log_size=256M
 
+# https://dev.mysql.com/doc/refman/5.6/en/log-destinations.html
 # global option where logs be written
+# affects slow-query-log, general-log direcives
+# Possible values: FILE, TABLE
+# NOTE: when using table, you can switch to MyISAM, but the contents is still
+# not replicated, also mysqldump will not dump data, only create table
+# statements
+#log-output = TABLE
 log-output = FILE
 
 # mysqld error log (stderr)
This page took 0.079587 seconds and 4 git commands to generate.