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
b188b1bf
Commit
b188b1bf
authored
Dec 23, 2009
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed "engine not found" error in open_binary_frm
corrected rotten test
parent
3bfb8797
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
19 deletions
+20
-19
mysql-test/r/not_partition.result
mysql-test/r/not_partition.result
+17
-17
sql/sql_yacc.yy
sql/sql_yacc.yy
+2
-2
sql/table.cc
sql/table.cc
+1
-0
No files found.
mysql-test/r/not_partition.result
View file @
b188b1bf
DROP TABLE IF EXISTS t1;
DROP TABLE IF EXISTS t1;
FLUSH TABLES;
FLUSH TABLES;
SELECT * FROM t1;
SELECT * FROM t1;
ERROR 42000: Unknown storage engine 'partition
'
ERROR 42000: Unknown storage engine 'partition'
TRUNCATE TABLE t1;
TRUNCATE TABLE t1;
ERROR 42000: Unknown storage engine 'partition
'
ERROR 42000: Unknown storage engine 'partition'
ANALYZE TABLE t1;
ANALYZE TABLE t1;
Table Op Msg_type Msg_text
Table Op Msg_type Msg_text
test.t1 analyze Error Unknown storage engine 'partition
'
test.t1 analyze Error Unknown storage engine 'partition'
test.t1 analyze error Corrupt
test.t1 analyze error Corrupt
CHECK TABLE t1;
CHECK TABLE t1;
Table Op Msg_type Msg_text
Table Op Msg_type Msg_text
test.t1 check Error Unknown storage engine 'partition
'
test.t1 check Error Unknown storage engine 'partition'
test.t1 check error Corrupt
test.t1 check error Corrupt
OPTIMIZE TABLE t1;
OPTIMIZE TABLE t1;
Table Op Msg_type Msg_text
Table Op Msg_type Msg_text
test.t1 optimize Error Unknown storage engine 'partition
'
test.t1 optimize Error Unknown storage engine 'partition'
test.t1 optimize error Corrupt
test.t1 optimize error Corrupt
REPAIR TABLE t1;
REPAIR TABLE t1;
Table Op Msg_type Msg_text
Table Op Msg_type Msg_text
test.t1 repair Error Unknown storage engine 'partition
'
test.t1 repair Error Unknown storage engine 'partition'
test.t1 repair error Corrupt
test.t1 repair error Corrupt
ALTER TABLE t1 REPAIR PARTITION ALL;
ALTER TABLE t1 REPAIR PARTITION ALL;
Table Op Msg_type Msg_text
Table Op Msg_type Msg_text
test.t1 repair Error Unknown storage engine 'partition
'
test.t1 repair Error Unknown storage engine 'partition'
test.t1 repair error Corrupt
test.t1 repair error Corrupt
ALTER TABLE t1 CHECK PARTITION ALL;
ALTER TABLE t1 CHECK PARTITION ALL;
Table Op Msg_type Msg_text
Table Op Msg_type Msg_text
test.t1 check Error Unknown storage engine 'partition
'
test.t1 check Error Unknown storage engine 'partition'
test.t1 check error Corrupt
test.t1 check error Corrupt
ALTER TABLE t1 OPTIMIZE PARTITION ALL;
ALTER TABLE t1 OPTIMIZE PARTITION ALL;
Table Op Msg_type Msg_text
Table Op Msg_type Msg_text
test.t1 optimize Error Unknown storage engine 'partition
'
test.t1 optimize Error Unknown storage engine 'partition'
test.t1 optimize error Corrupt
test.t1 optimize error Corrupt
ALTER TABLE t1 ANALYZE PARTITION ALL;
ALTER TABLE t1 ANALYZE PARTITION ALL;
Table Op Msg_type Msg_text
Table Op Msg_type Msg_text
test.t1 analyze Error Unknown storage engine 'partition
'
test.t1 analyze Error Unknown storage engine 'partition'
test.t1 analyze error Corrupt
test.t1 analyze error Corrupt
ALTER TABLE t1 REBUILD PARTITION ALL;
ALTER TABLE t1 REBUILD PARTITION ALL;
ERROR 42000: Unknown storage engine 'partition
'
ERROR 42000: Unknown storage engine 'partition'
ALTER TABLE t1 ENGINE Memory;
ALTER TABLE t1 ENGINE Memory;
ERROR 42000: Unknown storage engine 'partition
'
ERROR 42000: Unknown storage engine 'partition'
ALTER TABLE t1 ADD (new INT);
ALTER TABLE t1 ADD (new INT);
ERROR 42000: Unknown storage engine 'partition
'
ERROR 42000: Unknown storage engine 'partition'
DROP TABLE t1;
DROP TABLE t1;
CREATE TABLE t1 (
CREATE TABLE t1 (
firstname VARCHAR(25) NOT NULL,
firstname VARCHAR(25) NOT NULL,
...
@@ -52,9 +52,9 @@ joined DATE NOT NULL
...
@@ -52,9 +52,9 @@ joined DATE NOT NULL
)
)
PARTITION BY KEY(joined)
PARTITION BY KEY(joined)
PARTITIONS 6;
PARTITIONS 6;
ERROR HY000: The 'partitioning' feature is disabled; you need MySQL built with '--with-partition' to have it working
ERROR HY000: The 'partitioning' feature is disabled; you need MySQL built with '--with-p
lugin-p
artition' to have it working
ALTER TABLE t1 PARTITION BY KEY(joined) PARTITIONS 2;
ALTER TABLE t1 PARTITION BY KEY(joined) PARTITIONS 2;
ERROR HY000: The 'partitioning' feature is disabled; you need MySQL built with '--with-partition' to have it working
ERROR HY000: The 'partitioning' feature is disabled; you need MySQL built with '--with-p
lugin-p
artition' to have it working
drop table t1;
drop table t1;
ERROR 42S02: Unknown table 't1'
ERROR 42S02: Unknown table 't1'
CREATE TABLE t1 (
CREATE TABLE t1 (
...
@@ -71,7 +71,7 @@ PARTITION p2 VALUES LESS THAN (1980),
...
@@ -71,7 +71,7 @@ PARTITION p2 VALUES LESS THAN (1980),
PARTITION p3 VALUES LESS THAN (1990),
PARTITION p3 VALUES LESS THAN (1990),
PARTITION p4 VALUES LESS THAN MAXVALUE
PARTITION p4 VALUES LESS THAN MAXVALUE
);
);
ERROR HY000: The 'partitioning' feature is disabled; you need MySQL built with '--with-partition' to have it working
ERROR HY000: The 'partitioning' feature is disabled; you need MySQL built with '--with-p
lugin-p
artition' to have it working
drop table t1;
drop table t1;
ERROR 42S02: Unknown table 't1'
ERROR 42S02: Unknown table 't1'
CREATE TABLE t1 (id INT, purchased DATE)
CREATE TABLE t1 (id INT, purchased DATE)
...
@@ -82,7 +82,7 @@ PARTITION p0 VALUES LESS THAN (1990),
...
@@ -82,7 +82,7 @@ PARTITION p0 VALUES LESS THAN (1990),
PARTITION p1 VALUES LESS THAN (2000),
PARTITION p1 VALUES LESS THAN (2000),
PARTITION p2 VALUES LESS THAN MAXVALUE
PARTITION p2 VALUES LESS THAN MAXVALUE
);
);
ERROR HY000: The 'partitioning' feature is disabled; you need MySQL built with '--with-partition' to have it working
ERROR HY000: The 'partitioning' feature is disabled; you need MySQL built with '--with-p
lugin-p
artition' to have it working
drop table t1;
drop table t1;
ERROR 42S02: Unknown table 't1'
ERROR 42S02: Unknown table 't1'
create table t1 (a varchar(10) charset latin1 collate latin1_bin);
create table t1 (a varchar(10) charset latin1 collate latin1_bin);
...
...
sql/sql_yacc.yy
View file @
b188b1bf
...
@@ -4297,8 +4297,8 @@ have_partitioning:
...
@@ -4297,8 +4297,8 @@ have_partitioning:
MYSQL_YYABORT;
MYSQL_YYABORT;
}
}
#else
#else
my_error(ER_
OPTION_PREVENTS_STATEMENT, MYF(0)
,
my_error(ER_
FEATURE_DISABLED, MYF(0), "partitioning"
,
"--
skip
-partition");
"--
with-plugin
-partition");
MYSQL_YYABORT;
MYSQL_YYABORT;
#endif
#endif
}
}
...
...
sql/table.cc
View file @
b188b1bf
...
@@ -934,6 +934,7 @@ static int open_binary_frm(THD *thd, TABLE_SHARE *share, uchar *head,
...
@@ -934,6 +934,7 @@ static int open_binary_frm(THD *thd, TABLE_SHARE *share, uchar *head,
{
{
/* purecov: begin inspected */
/* purecov: begin inspected */
error
=
8
;
error
=
8
;
name
.
str
[
name
.
length
]
=
0
;
my_error
(
ER_UNKNOWN_STORAGE_ENGINE
,
MYF
(
0
),
name
.
str
);
my_error
(
ER_UNKNOWN_STORAGE_ENGINE
,
MYF
(
0
),
name
.
str
);
my_free
(
buff
,
MYF
(
0
));
my_free
(
buff
,
MYF
(
0
));
goto
err
;
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