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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
904b5304
Commit
904b5304
authored
Feb 14, 2006
by
jmiller@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge jmiller@bk-internal.mysql.com:/home/bk/mysql-5.1-new
into mysql.com:/home/ndbdev/jmiller/clones/mysql-5.1-new
parents
a918b121
7e8b145b
Changes
14
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
47 additions
and
14 deletions
+47
-14
include/Makefile.am
include/Makefile.am
+1
-1
include/myisam.h
include/myisam.h
+1
-1
include/mysql/plugin.h
include/mysql/plugin.h
+0
-0
mysql-test/r/binlog_stm_binlog.result
mysql-test/r/binlog_stm_binlog.result
+1
-1
mysql-test/r/variables.result
mysql-test/r/variables.result
+18
-0
mysql-test/t/binlog_stm_binlog.test
mysql-test/t/binlog_stm_binlog.test
+1
-1
mysql-test/t/disabled.def
mysql-test/t/disabled.def
+1
-0
mysql-test/t/variables.test
mysql-test/t/variables.test
+14
-0
plugin/fulltext/plugin_example.c
plugin/fulltext/plugin_example.c
+1
-1
sql/sql_plugin.h
sql/sql_plugin.h
+1
-1
sql/sql_show.cc
sql/sql_show.cc
+5
-5
storage/csv/ha_tina.cc
storage/csv/ha_tina.cc
+1
-1
storage/example/ha_example.cc
storage/example/ha_example.cc
+1
-1
storage/myisam/ftdefs.h
storage/myisam/ftdefs.h
+1
-1
No files found.
include/Makefile.am
View file @
904b5304
...
@@ -22,7 +22,7 @@ pkginclude_HEADERS = my_dbug.h m_string.h my_sys.h my_list.h my_xml.h \
...
@@ -22,7 +22,7 @@ pkginclude_HEADERS = my_dbug.h m_string.h my_sys.h my_list.h my_xml.h \
errmsg.h my_global.h my_net.h my_alloc.h
\
errmsg.h my_global.h my_net.h my_alloc.h
\
my_getopt.h sslopt-longopts.h my_dir.h typelib.h
\
my_getopt.h sslopt-longopts.h my_dir.h typelib.h
\
sslopt-vars.h sslopt-case.h sql_common.h keycache.h
\
sslopt-vars.h sslopt-case.h sql_common.h keycache.h
\
mysql_time.h plugin.h
$(BUILT_SOURCES)
mysql_time.h
mysql/
plugin.h
$(BUILT_SOURCES)
noinst_HEADERS
=
config-win.h config-os2.h config-netware.h
\
noinst_HEADERS
=
config-win.h config-os2.h config-netware.h
\
heap.h my_bitmap.h my_uctype.h
\
heap.h my_bitmap.h my_uctype.h
\
myisam.h myisampack.h myisammrg.h ft_global.h
\
myisam.h myisampack.h myisammrg.h ft_global.h
\
...
...
include/myisam.h
View file @
904b5304
...
@@ -32,7 +32,7 @@ extern "C" {
...
@@ -32,7 +32,7 @@ extern "C" {
#include "keycache.h"
#include "keycache.h"
#endif
#endif
#include "my_handler.h"
#include "my_handler.h"
#include <plugin.h>
#include <
mysql/
plugin.h>
/*
/*
There is a hard limit for the maximum number of keys as there are only
There is a hard limit for the maximum number of keys as there are only
...
...
include/plugin.h
→
include/
mysql/
plugin.h
View file @
904b5304
File moved
mysql-test/r/binlog_stm_binlog.result
View file @
904b5304
...
@@ -4,7 +4,7 @@ insert into t1 values (1,2);
...
@@ -4,7 +4,7 @@ insert into t1 values (1,2);
commit;
commit;
show binlog events;
show binlog events;
Log_name Pos Event_type Server_id End_log_pos Info
Log_name Pos Event_type Server_id End_log_pos Info
master-bin.000001 4 Format_desc 1 102 Server ver:
5.1.7-beta-debug-log, Binlog ver: 4
master-bin.000001 4 Format_desc 1 102 Server ver:
#, Binlog ver: #
master-bin.000001 102 Query 1 209 use `test`; create table t1 (a int, b int) engine=innodb
master-bin.000001 102 Query 1 209 use `test`; create table t1 (a int, b int) engine=innodb
master-bin.000001 209 Query 1 277 use `test`; BEGIN
master-bin.000001 209 Query 1 277 use `test`; BEGIN
master-bin.000001 277 Query 1 90 use `test`; insert into t1 values (1,2)
master-bin.000001 277 Query 1 90 use `test`; insert into t1 values (1,2)
...
...
mysql-test/r/variables.result
View file @
904b5304
...
@@ -566,3 +566,21 @@ set global character_set_system = latin1;
...
@@ -566,3 +566,21 @@ set global character_set_system = latin1;
ERROR HY000: Variable 'character_set_system' is a read only variable
ERROR HY000: Variable 'character_set_system' is a read only variable
set @@global.version_compile_os='234';
set @@global.version_compile_os='234';
ERROR HY000: Variable 'version_compile_os' is a read only variable
ERROR HY000: Variable 'version_compile_os' is a read only variable
set character_set_filesystem=latin1;
select @@character_set_filesystem;
@@character_set_filesystem
latin1
set @@global.character_set_filesystem=latin2;
set character_set_filesystem=latin1;
select @@character_set_filesystem;
@@character_set_filesystem
latin1
set @@global.character_set_filesystem=latin2;
set character_set_filesystem=default;
select @@character_set_filesystem;
@@character_set_filesystem
latin2
set @@global.character_set_filesystem=default;
select @@global.character_set_filesystem;
@@global.character_set_filesystem
binary
mysql-test/t/binlog_stm_binlog.test
View file @
904b5304
...
@@ -5,7 +5,7 @@ create table t1 (a int, b int) engine=innodb;
...
@@ -5,7 +5,7 @@ create table t1 (a int, b int) engine=innodb;
begin
;
begin
;
insert
into
t1
values
(
1
,
2
);
insert
into
t1
values
(
1
,
2
);
commit
;
commit
;
--
replace_regex
/
\
/
\
*
xid
=.*
\
*
\
//\/* XID *\//
--
replace_regex
/
\
/
\
*
xid
=.*
\
*
\
//\/* XID *\//
/Server ver: .*, Binlog ver: .*/Server ver: #, Binlog ver: #/
show
binlog
events
;
show
binlog
events
;
drop
table
t1
;
drop
table
t1
;
...
...
mysql-test/t/disabled.def
View file @
904b5304
...
@@ -32,3 +32,4 @@ rpl_sp : Bug#16456
...
@@ -32,3 +32,4 @@ rpl_sp : Bug#16456
rpl_until : Unstable test case, bug#15886
rpl_until : Unstable test case, bug#15886
sp-goto : GOTO is currently is disabled - will be fixed in the future
sp-goto : GOTO is currently is disabled - will be fixed in the future
subselect : Bug#15706 (ps mode) [PATCH PENDING]
subselect : Bug#15706 (ps mode) [PATCH PENDING]
rpl_ndb_log : result not deterministic
mysql-test/t/variables.test
View file @
904b5304
...
@@ -456,4 +456,18 @@ set global character_set_system = latin1;
...
@@ -456,4 +456,18 @@ set global character_set_system = latin1;
--
error
1238
--
error
1238
set
@@
global
.
version_compile_os
=
'234'
;
set
@@
global
.
version_compile_os
=
'234'
;
#
# Check character_set_filesystem variable
#
set
character_set_filesystem
=
latin1
;
select
@@
character_set_filesystem
;
set
@@
global
.
character_set_filesystem
=
latin2
;
set
character_set_filesystem
=
latin1
;
select
@@
character_set_filesystem
;
set
@@
global
.
character_set_filesystem
=
latin2
;
set
character_set_filesystem
=
default
;
select
@@
character_set_filesystem
;
set
@@
global
.
character_set_filesystem
=
default
;
select
@@
global
.
character_set_filesystem
;
# End of 5.0 tests
# End of 5.0 tests
plugin/fulltext/plugin_example.c
View file @
904b5304
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
#include <stdlib.h>
#include <stdlib.h>
#include <ctype.h>
#include <ctype.h>
#include <plugin.h>
#include <
mysql/
plugin.h>
long
number_of_calls
=
0
;
/* for SHOW STATUS, see below */
long
number_of_calls
=
0
;
/* for SHOW STATUS, see below */
...
...
sql/sql_plugin.h
View file @
904b5304
...
@@ -24,7 +24,7 @@
...
@@ -24,7 +24,7 @@
#define SHOW_FUNC SHOW_FUNC, SHOW_KEY_CACHE_LONG, SHOW_KEY_CACHE_LONGLONG, \
#define SHOW_FUNC SHOW_FUNC, SHOW_KEY_CACHE_LONG, SHOW_KEY_CACHE_LONGLONG, \
SHOW_LONG_STATUS, SHOW_DOUBLE_STATUS, SHOW_HAVE, \
SHOW_LONG_STATUS, SHOW_DOUBLE_STATUS, SHOW_HAVE, \
SHOW_HA_ROWS, SHOW_SYS, SHOW_LONG_NOFLUSH
SHOW_HA_ROWS, SHOW_SYS, SHOW_LONG_NOFLUSH
#include <plugin.h>
#include <
mysql/
plugin.h>
#undef SHOW_FUNC
#undef SHOW_FUNC
typedef
enum
enum_mysql_show_type
SHOW_TYPE
;
typedef
enum
enum_mysql_show_type
SHOW_TYPE
;
typedef
struct
st_mysql_show_var
SHOW_VAR
;
typedef
struct
st_mysql_show_var
SHOW_VAR
;
...
...
sql/sql_show.cc
View file @
904b5304
...
@@ -3583,23 +3583,23 @@ static int get_schema_partitions_record(THD *thd, struct st_table_list *tables,
...
@@ -3583,23 +3583,23 @@ static int get_schema_partitions_record(THD *thd, struct st_table_list *tables,
String
tmp_str
;
String
tmp_str
;
TIME
time
;
TIME
time
;
TABLE
*
show_table
=
tables
->
table
;
TABLE
*
show_table
=
tables
->
table
;
handler
*
file
=
show_table
->
file
;
handler
*
file
;
#ifdef WITH_PARTITION_STORAGE_ENGINE
#ifdef WITH_PARTITION_STORAGE_ENGINE
partition_info
*
part_info
=
show_table
->
part_info
;
partition_info
*
part_info
;
#endif
#endif
DBUG_ENTER
(
"get_schema_partitions_record"
);
DBUG_ENTER
(
"get_schema_partitions_record"
);
if
(
res
)
if
(
res
)
{
{
#ifdef WITH_PARTITION_STORAGE_ENGINE
if
(
!
tables
->
view
)
if
(
part_info
)
push_warning
(
thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
push_warning
(
thd
,
MYSQL_ERROR
::
WARN_LEVEL_WARN
,
thd
->
net
.
last_errno
,
thd
->
net
.
last_error
);
thd
->
net
.
last_errno
,
thd
->
net
.
last_error
);
#endif
thd
->
clear_error
();
thd
->
clear_error
();
DBUG_RETURN
(
0
);
DBUG_RETURN
(
0
);
}
}
file
=
show_table
->
file
;
#ifdef WITH_PARTITION_STORAGE_ENGINE
#ifdef WITH_PARTITION_STORAGE_ENGINE
part_info
=
show_table
->
part_info
;
if
(
part_info
)
if
(
part_info
)
{
{
partition_element
*
part_elem
;
partition_element
*
part_elem
;
...
...
storage/csv/ha_tina.cc
View file @
904b5304
...
@@ -51,7 +51,7 @@
...
@@ -51,7 +51,7 @@
#include "ha_tina.h"
#include "ha_tina.h"
#include <sys/mman.h>
#include <sys/mman.h>
#include <plugin.h>
#include <
mysql/
plugin.h>
/* Stuff for shares */
/* Stuff for shares */
pthread_mutex_t
tina_mutex
;
pthread_mutex_t
tina_mutex
;
...
...
storage/example/ha_example.cc
View file @
904b5304
...
@@ -70,7 +70,7 @@
...
@@ -70,7 +70,7 @@
#include "mysql_priv.h"
#include "mysql_priv.h"
#include "ha_example.h"
#include "ha_example.h"
#include <plugin.h>
#include <
mysql/
plugin.h>
static
handler
*
example_create_handler
(
TABLE_SHARE
*
table
);
static
handler
*
example_create_handler
(
TABLE_SHARE
*
table
);
static
int
example_init_func
();
static
int
example_init_func
();
...
...
storage/myisam/ftdefs.h
View file @
904b5304
...
@@ -22,7 +22,7 @@
...
@@ -22,7 +22,7 @@
#include <m_ctype.h>
#include <m_ctype.h>
#include <my_tree.h>
#include <my_tree.h>
#include <queues.h>
#include <queues.h>
#include <plugin.h>
#include <
mysql/
plugin.h>
#define true_word_char(s,X) (my_isalnum(s,X) || (X)=='_')
#define true_word_char(s,X) (my_isalnum(s,X) || (X)=='_')
#define misc_word_char(X) 0
#define misc_word_char(X) 0
...
...
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