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
ba2ba454
Commit
ba2ba454
authored
Mar 23, 2008
by
gkodinov/kgeorge@macbook.gmz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
merge bug 26461 to 5.1-opt
parent
f6871c0d
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
sql/handler.h
sql/handler.h
+1
-1
sql/log.cc
sql/log.cc
+1
-1
sql/sql_table.cc
sql/sql_table.cc
+2
-2
No files found.
sql/handler.h
View file @
ba2ba454
...
...
@@ -1883,7 +1883,7 @@ private:
{
return
HA_ADMIN_NOT_IMPLEMENTED
;
}
virtual
int
analyze
(
THD
*
thd
,
HA_CHECK_OPT
*
check_opt
)
{
return
HA_ADMIN_NOT_IMPLEMENTED
;
}
virtual
bool
check_and_repair
(
THD
*
thd
)
{
return
HA_ERR_WRONG_COMMAND
;
}
virtual
bool
check_and_repair
(
THD
*
thd
)
{
return
TRUE
;
}
virtual
int
disable_indexes
(
uint
mode
)
{
return
HA_ERR_WRONG_COMMAND
;
}
virtual
int
enable_indexes
(
uint
mode
)
{
return
HA_ERR_WRONG_COMMAND
;
}
virtual
int
discard_or_import_tablespace
(
my_bool
discard
)
...
...
sql/log.cc
View file @
ba2ba454
...
...
@@ -1005,7 +1005,7 @@ bool LOGGER::general_log_write(THD *thd, enum enum_server_command command,
current_time
=
my_time
(
0
);
while
(
*
current_handler
)
error
+
=
(
*
current_handler
++
)
->
error
|
=
(
*
current_handler
++
)
->
log_general
(
thd
,
current_time
,
user_host_buff
,
user_host_len
,
id
,
command_name
[(
uint
)
command
].
str
,
...
...
sql/sql_table.cc
View file @
ba2ba454
...
...
@@ -42,7 +42,7 @@ static int copy_data_between_tables(TABLE *from,TABLE *to,
static
bool
prepare_blob_field
(
THD
*
thd
,
Create_field
*
sql_field
);
static
bool
check_engine
(
THD
*
,
const
char
*
,
HA_CREATE_INFO
*
);
static
bool
static
int
mysql_prepare_create_table
(
THD
*
thd
,
HA_CREATE_INFO
*
create_info
,
Alter_info
*
alter_info
,
bool
tmp_table
,
...
...
@@ -2173,7 +2173,7 @@ int prepare_create_field(Create_field *sql_field,
TRUE error
*/
static
bool
static
int
mysql_prepare_create_table
(
THD
*
thd
,
HA_CREATE_INFO
*
create_info
,
Alter_info
*
alter_info
,
bool
tmp_table
,
...
...
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