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
4e60227f
Commit
4e60227f
authored
Nov 04, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into mysql.com:/home/my/mysql-5.0 sql/mysqld.cc: Auto merged
parents
71898b3e
5dcd44e3
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
3 deletions
+7
-3
mysql-test/r/mysqldump.result
mysql-test/r/mysqldump.result
+1
-0
mysql-test/t/mysqldump.test
mysql-test/t/mysqldump.test
+1
-0
sql/ha_berkeley.h
sql/ha_berkeley.h
+2
-2
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+2
-1
sql/mysqld.cc
sql/mysqld.cc
+1
-0
No files found.
mysql-test/r/mysqldump.result
View file @
4e60227f
...
@@ -2236,6 +2236,7 @@ DROP FUNCTION bug9056_func1;
...
@@ -2236,6 +2236,7 @@ DROP FUNCTION bug9056_func1;
DROP FUNCTION bug9056_func2;
DROP FUNCTION bug9056_func2;
DROP PROCEDURE bug9056_proc1;
DROP PROCEDURE bug9056_proc1;
DROP PROCEDURE bug9056_proc2;
DROP PROCEDURE bug9056_proc2;
DROP PROCEDURE `a'b`;
drop table t1;
drop table t1;
drop table if exists t1;
drop table if exists t1;
create table t1 (`d` timestamp, unique (`d`));
create table t1 (`d` timestamp, unique (`d`));
...
...
mysql-test/t/mysqldump.test
View file @
4e60227f
...
@@ -917,6 +917,7 @@ DROP FUNCTION bug9056_func1;
...
@@ -917,6 +917,7 @@ DROP FUNCTION bug9056_func1;
DROP
FUNCTION
bug9056_func2
;
DROP
FUNCTION
bug9056_func2
;
DROP
PROCEDURE
bug9056_proc1
;
DROP
PROCEDURE
bug9056_proc1
;
DROP
PROCEDURE
bug9056_proc2
;
DROP
PROCEDURE
bug9056_proc2
;
DROP
PROCEDURE
`a'b`
;
drop
table
t1
;
drop
table
t1
;
#
#
...
...
sql/ha_berkeley.h
View file @
4e60227f
...
@@ -94,8 +94,8 @@ class ha_berkeley: public handler
...
@@ -94,8 +94,8 @@ class ha_berkeley: public handler
uint
max_supported_keys
()
const
{
return
MAX_KEY
-
1
;
}
uint
max_supported_keys
()
const
{
return
MAX_KEY
-
1
;
}
uint
extra_rec_buf_length
()
{
return
BDB_HIDDEN_PRIMARY_KEY_LENGTH
;
}
uint
extra_rec_buf_length
()
{
return
BDB_HIDDEN_PRIMARY_KEY_LENGTH
;
}
ha_rows
estimate_rows_upper_bound
();
ha_rows
estimate_rows_upper_bound
();
uint
max_supported_key_length
()
const
{
return
4294967295L
;
}
uint
max_supported_key_length
()
const
{
return
UINT_MAX32
;
}
uint
max_supported_key_part_length
()
const
{
return
4294967295L
;
}
uint
max_supported_key_part_length
()
const
{
return
UINT_MAX32
;
}
const
key_map
*
keys_to_use_for_scanning
()
{
return
&
key_map_full
;
}
const
key_map
*
keys_to_use_for_scanning
()
{
return
&
key_map_full
;
}
bool
has_transactions
()
{
return
1
;}
bool
has_transactions
()
{
return
1
;}
...
...
sql/ha_ndbcluster.cc
View file @
4e60227f
...
@@ -3861,7 +3861,8 @@ int ha_ndbcluster::create(const char *name,
...
@@ -3861,7 +3861,8 @@ int ha_ndbcluster::create(const char *name,
uint
pack_length
,
length
,
i
,
pk_length
=
0
;
uint
pack_length
,
length
,
i
,
pk_length
=
0
;
const
void
*
data
,
*
pack_data
;
const
void
*
data
,
*
pack_data
;
char
name2
[
FN_HEADLEN
];
char
name2
[
FN_HEADLEN
];
bool
create_from_engine
=
(
info
->
table_options
&
HA_OPTION_CREATE_FROM_ENGINE
);
bool
create_from_engine
=
test
(
info
->
table_options
&
HA_OPTION_CREATE_FROM_ENGINE
);
DBUG_ENTER
(
"ha_ndbcluster::create"
);
DBUG_ENTER
(
"ha_ndbcluster::create"
);
DBUG_PRINT
(
"enter"
,
(
"name: %s"
,
name
));
DBUG_PRINT
(
"enter"
,
(
"name: %s"
,
name
));
...
...
sql/mysqld.cc
View file @
4e60227f
...
@@ -1194,6 +1194,7 @@ static void clean_up_mutexes()
...
@@ -1194,6 +1194,7 @@ static void clean_up_mutexes()
(
void
)
rwlock_destroy
(
&
LOCK_sys_init_slave
);
(
void
)
rwlock_destroy
(
&
LOCK_sys_init_slave
);
(
void
)
pthread_mutex_destroy
(
&
LOCK_global_system_variables
);
(
void
)
pthread_mutex_destroy
(
&
LOCK_global_system_variables
);
(
void
)
pthread_mutex_destroy
(
&
LOCK_global_read_lock
);
(
void
)
pthread_mutex_destroy
(
&
LOCK_global_read_lock
);
(
void
)
pthread_mutex_destroy
(
&
LOCK_uuid_generator
);
(
void
)
pthread_cond_destroy
(
&
COND_thread_count
);
(
void
)
pthread_cond_destroy
(
&
COND_thread_count
);
(
void
)
pthread_cond_destroy
(
&
COND_refresh
);
(
void
)
pthread_cond_destroy
(
&
COND_refresh
);
(
void
)
pthread_cond_destroy
(
&
COND_thread_cache
);
(
void
)
pthread_cond_destroy
(
&
COND_thread_cache
);
...
...
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