Commit 4d0c53a3 authored by Ian Gilfillan's avatar Ian Gilfillan Committed by Daniel Black

MDEV-28701 Update Server HELP

Bootstrap size increase and error fix by Daniel Black.
parent 90ba999e
This diff is collapsed.
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
The longest query in use depends on the documentation content, The longest query in use depends on the documentation content,
see the file fill_help_tables.sql see the file fill_help_tables.sql
*/ */
#define MAX_BOOTSTRAP_QUERY_SIZE 20000 #define MAX_BOOTSTRAP_QUERY_SIZE 60000
/** /**
The maximum size of a bootstrap query, expressed in a single line. The maximum size of a bootstrap query, expressed in a single line.
Do not increase this size, use the multiline syntax instead. Do not increase this size, use the multiline syntax instead.
......
...@@ -1046,9 +1046,9 @@ int bootstrap(MYSQL_FILE *file) ...@@ -1046,9 +1046,9 @@ int bootstrap(MYSQL_FILE *file)
break; break;
case READ_BOOTSTRAP_QUERY_SIZE: case READ_BOOTSTRAP_QUERY_SIZE:
my_printf_error(ER_UNKNOWN_ERROR, "Boostrap file error. Query size " my_printf_error(ER_UNKNOWN_ERROR, "Bootstrap file error. Query size "
"exceeded %d bytes near '%s'.", MYF(0), "exceeded %d bytes near '%s'.", MYF(0),
MAX_BOOTSTRAP_LINE_SIZE, err_ptr); MAX_BOOTSTRAP_QUERY_SIZE, err_ptr);
break; break;
default: default:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment