Skip to content

Commit f28d8d8

Browse files
committed
Increase MAX_BOOTSTRAP_QUERY_SIZE to 25000
One query in fill_help_tables.sql has become too big. Increase MAX_BOOTSTRAP_QUERY_SIZE to make sure the PB2 builds go through.
1 parent 421b732 commit f28d8d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/sql_bootstrap.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
1+
/* Copyright (c) 2010, 2015, Oracle and/or its affiliates. All rights reserved.
22
33
This program is free software; you can redistribute it and/or modify
44
it under the terms of the GNU General Public License as published by
@@ -28,7 +28,7 @@
2828
The maximum size of a bootstrap query, expressed in a single line.
2929
Do not increase this size, use the multiline syntax instead.
3030
*/
31-
#define MAX_BOOTSTRAP_LINE_SIZE 20000
31+
#define MAX_BOOTSTRAP_LINE_SIZE 25000
3232
#define MAX_BOOTSTRAP_ERROR_LEN 256
3333

3434
#define READ_BOOTSTRAP_SUCCESS 0

0 commit comments

Comments
 (0)