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
1ab3b31f
Commit
1ab3b31f
authored
Feb 04, 2009
by
Sergey Vojtovich
Browse files
Options
Browse Files
Download
Plain Diff
Merge 5.0-bugteam -> 5.1-bugteam.
parents
9da593de
8745e368
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
42 additions
and
9 deletions
+42
-9
mysql-test/r/merge.result
mysql-test/r/merge.result
+11
-0
mysql-test/t/merge.test
mysql-test/t/merge.test
+13
-0
storage/myisammrg/myrg_open.c
storage/myisammrg/myrg_open.c
+18
-9
No files found.
mysql-test/r/merge.result
View file @
1ab3b31f
...
...
@@ -988,6 +988,17 @@ m1 CREATE TABLE `m1` (
`a` int(11) DEFAULT NULL
) ENGINE=MRG_MyISAM DEFAULT CHARSET=latin1
DROP TABLE t1, m1;
CREATE TABLE t1(a INT);
CREATE TABLE t2(a VARCHAR(10));
CREATE TABLE m1(a INT) ENGINE=MERGE UNION=(t1, t2);
CREATE TABLE m2(a INT) ENGINE=MERGE UNION=(t1);
SELECT * FROM t1;
a
SELECT * FROM m1;
ERROR HY000: Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
SELECT * FROM m2;
a
DROP TABLE t1, t2, m1, m2;
End of 5.0 tests
create table t1 (c1 int, index(c1));
create table t2 (c1 int, index(c1)) engine=merge union=(t1);
...
...
mysql-test/t/merge.test
View file @
1ab3b31f
...
...
@@ -613,6 +613,19 @@ ALTER TABLE m1 UNION=();
SHOW
CREATE
TABLE
m1
;
DROP
TABLE
t1
,
m1
;
#
# BUG#32047 - 'Spurious' errors while opening MERGE tables
#
CREATE
TABLE
t1
(
a
INT
);
CREATE
TABLE
t2
(
a
VARCHAR
(
10
));
CREATE
TABLE
m1
(
a
INT
)
ENGINE
=
MERGE
UNION
=
(
t1
,
t2
);
CREATE
TABLE
m2
(
a
INT
)
ENGINE
=
MERGE
UNION
=
(
t1
);
SELECT
*
FROM
t1
;
--
error
ER_WRONG_MRG_TABLE
SELECT
*
FROM
m1
;
SELECT
*
FROM
m2
;
DROP
TABLE
t1
,
t2
,
m1
,
m2
;
--
echo
End
of
5.0
tests
#
...
...
storage/myisammrg/myrg_open.c
View file @
1ab3b31f
...
...
@@ -47,6 +47,7 @@ MYRG_INFO *myrg_open(const char *name, int mode, int handle_locking)
MI_INFO
*
isam
=
0
;
uint
found_merge_insert_method
=
0
;
size_t
name_buff_length
;
my_bool
bad_children
=
FALSE
;
DBUG_ENTER
(
"myrg_open"
);
LINT_INIT
(
key_parts
);
...
...
@@ -97,13 +98,13 @@ MYRG_INFO *myrg_open(const char *name, int mode, int handle_locking)
fn_format
(
buff
,
buff
,
""
,
""
,
0
);
if
(
!
(
isam
=
mi_open
(
buff
,
mode
,(
handle_locking
?
HA_OPEN_WAIT_IF_LOCKED
:
0
))))
{
my_errno
=
HA_ERR_WRONG_MRG_TABLE_DEF
;
if
(
handle_locking
&
HA_OPEN_FOR_REPAIR
)
{
myrg_print_wrong_table
(
buff
);
bad_children
=
TRUE
;
continue
;
}
goto
err
;
goto
bad_children
;
}
if
(
!
m_info
)
/* First file */
{
...
...
@@ -128,13 +129,13 @@ MYRG_INFO *myrg_open(const char *name, int mode, int handle_locking)
files
++
;
if
(
m_info
->
reclength
!=
isam
->
s
->
base
.
reclength
)
{
my_errno
=
HA_ERR_WRONG_MRG_TABLE_DEF
;
if
(
handle_locking
&
HA_OPEN_FOR_REPAIR
)
{
myrg_print_wrong_table
(
buff
);
bad_children
=
TRUE
;
continue
;
}
goto
err
;
goto
bad_children
;
}
m_info
->
options
|=
isam
->
s
->
options
;
m_info
->
records
+=
isam
->
state
->
records
;
...
...
@@ -147,8 +148,8 @@ MYRG_INFO *myrg_open(const char *name, int mode, int handle_locking)
m_info
->
tables
);
}
if
(
my_errno
==
HA_ERR_WRONG_MRG_TABLE_DEF
)
goto
err
;
if
(
bad_children
)
goto
bad_children
;
if
(
!
m_info
&&
!
(
m_info
=
(
MYRG_INFO
*
)
my_malloc
(
sizeof
(
MYRG_INFO
),
MYF
(
MY_WME
|
MY_ZEROFILL
))))
goto
err
;
...
...
@@ -178,12 +179,14 @@ MYRG_INFO *myrg_open(const char *name, int mode, int handle_locking)
pthread_mutex_unlock
(
&
THR_LOCK_open
);
DBUG_RETURN
(
m_info
);
bad_children:
my_errno
=
HA_ERR_WRONG_MRG_TABLE_DEF
;
err:
save_errno
=
my_errno
;
switch
(
errpos
)
{
case
3
:
while
(
files
)
mi_close
(
m_info
->
open_tables
[
--
files
].
table
);
(
void
)
mi_close
(
m_info
->
open_tables
[
--
files
].
table
);
my_free
((
char
*
)
m_info
,
MYF
(
0
));
/* Fall through */
case
2
:
...
...
@@ -392,6 +395,7 @@ int myrg_attach_children(MYRG_INFO *m_info, int handle_locking,
uint
child_nr
;
uint
key_parts
;
uint
min_keys
;
my_bool
bad_children
=
FALSE
;
DBUG_ENTER
(
"myrg_attach_children"
);
DBUG_PRINT
(
"myrg"
,
(
"handle_locking: %d"
,
handle_locking
));
...
...
@@ -441,13 +445,13 @@ int myrg_attach_children(MYRG_INFO *m_info, int handle_locking,
DBUG_PRINT
(
"error"
,
(
"definition mismatch table: '%s' repair: %d"
,
myisam
->
filename
,
(
handle_locking
&
HA_OPEN_FOR_REPAIR
)));
my_errno
=
HA_ERR_WRONG_MRG_TABLE_DEF
;
if
(
handle_locking
&
HA_OPEN_FOR_REPAIR
)
{
myrg_print_wrong_table
(
myisam
->
filename
);
bad_children
=
TRUE
;
continue
;
}
goto
err
;
goto
bad_children
;
}
m_info
->
options
|=
myisam
->
s
->
options
;
...
...
@@ -462,6 +466,9 @@ int myrg_attach_children(MYRG_INFO *m_info, int handle_locking,
child_nr
++
;
}
if
(
bad_children
)
goto
bad_children
;
/* Note: callback() resets my_errno, so it is safe to check it here */
if
(
my_errno
==
HA_ERR_WRONG_MRG_TABLE_DEF
)
goto
err
;
if
(
sizeof
(
my_off_t
)
==
4
&&
file_offset
>
(
ulonglong
)
(
ulong
)
~
0L
)
...
...
@@ -477,6 +484,8 @@ int myrg_attach_children(MYRG_INFO *m_info, int handle_locking,
pthread_mutex_unlock
(
&
m_info
->
mutex
);
DBUG_RETURN
(
0
);
bad_children:
my_errno
=
HA_ERR_WRONG_MRG_TABLE_DEF
;
err:
save_errno
=
my_errno
;
switch
(
errpos
)
{
...
...
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