Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
4c239771
Commit
4c239771
authored
Dec 27, 2002
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
merge fixes
parents
2d624d8a
884e3dee
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
8 deletions
+5
-8
sql/mysqld.cc
sql/mysqld.cc
+1
-1
sql/net_serv.cc
sql/net_serv.cc
+1
-1
sql/sql_table.cc
sql/sql_table.cc
+3
-6
No files found.
sql/mysqld.cc
View file @
4c239771
...
...
@@ -2984,7 +2984,7 @@ CHANGEABLE_VAR changeable_vars[] = {
#endif
,
0
,
1
,
0
,
1
},
{
"max_allowed_packet"
,
(
long
*
)
&
max_allowed_packet
,
1024
*
1024L
,
80
,
16
L
*
1024L
*
1024L
-
1
,
MALLOC_OVERHEAD
,
1024
},
1024
*
1024L
,
80
,
16
*
1024
*
1024L
,
MALLOC_OVERHEAD
,
1024
},
{
"max_binlog_cache_size"
,
(
long
*
)
&
max_binlog_cache_size
,
~
0L
,
IO_SIZE
,
~
0L
,
0
,
IO_SIZE
},
{
"max_binlog_size"
,
(
long
*
)
&
max_binlog_size
,
...
...
sql/net_serv.cc
View file @
4c239771
...
...
@@ -40,7 +40,7 @@ ulong max_allowed_packet=65536;
extern
ulong
net_read_timeout
,
net_write_timeout
;
extern
uint
test_flags
;
#else
ulong
max_allowed_packet
=
16
*
1024
*
1024L
;
ulong
max_allowed_packet
=
16
*
1024
*
1024L
-
1
;
ulong
net_read_timeout
=
NET_READ_TIMEOUT
;
ulong
net_write_timeout
=
NET_WRITE_TIMEOUT
;
#endif
...
...
sql/sql_table.cc
View file @
4c239771
...
...
@@ -1529,11 +1529,8 @@ int mysql_alter_table(THD *thd,char *new_db, char *new_name,
if
(
error
)
{
/*
* The following function call will also free a
* new_table pointer.
* Therefore, here new_table pointer is not free'd as it is
* free'd in close_temporary() which is called by by the
* close_temporary_table() function.
The following function call will free the new_table pointer,
in close_temporary_table(), so we can safely directly jump to err
*/
close_temporary_table
(
thd
,
new_db
,
tmp_name
);
goto
err
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment