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
ea1e209f
Commit
ea1e209f
authored
Nov 25, 2009
by
Mattias Jonsson
Browse files
Options
Browse Files
Download
Plain Diff
merge
parents
984ded7a
3b00c1f9
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
83 additions
and
19 deletions
+83
-19
mysql-test/r/log_tables.result
mysql-test/r/log_tables.result
+4
-7
mysql-test/r/partition.result
mysql-test/r/partition.result
+36
-0
mysql-test/r/partition_innodb.result
mysql-test/r/partition_innodb.result
+2
-1
mysql-test/t/log_tables.test
mysql-test/t/log_tables.test
+14
-7
mysql-test/t/partition.test
mysql-test/t/partition.test
+23
-0
mysql-test/t/partition_innodb.test
mysql-test/t/partition_innodb.test
+0
-1
sql/protocol.cc
sql/protocol.cc
+2
-2
sql/sql_yacc.yy
sql/sql_yacc.yy
+2
-1
No files found.
mysql-test/r/log_tables.result
View file @
ea1e209f
...
...
@@ -247,13 +247,10 @@ set global general_log='OFF';
set global slow_query_log='OFF';
set @save_storage_engine= @@session.storage_engine;
set storage_engine= MEMORY;
alter table mysql.slow_log engine=ndb;
ERROR HY000: This storage engine cannot be used for log tables"
alter table mysql.slow_log engine=innodb;
ERROR HY000: This storage engine cannot be used for log tables"
alter table mysql.slow_log engine=archive;
ERROR HY000: This storage engine cannot be used for log tables"
alter table mysql.slow_log engine=blackhole;
alter table mysql.slow_log engine=NonExistentEngine;
Warnings:
Warning 1286 Unknown table engine 'NonExistentEngine'
alter table mysql.slow_log engine=memory;
ERROR HY000: This storage engine cannot be used for log tables"
set storage_engine= @save_storage_engine;
drop table mysql.slow_log;
...
...
mysql-test/r/partition.result
View file @
ea1e209f
...
...
@@ -81,6 +81,42 @@ INSERT INTO t1 VALUES (NULL);
SELECT * FROM t1 WHERE pk < 0 ORDER BY pk;
pk
DROP TABLE t1;
CREATE TABLE t1 (a INT)
ENGINE=NonExistentEngine;
Warnings:
Warning 1286 Unknown table engine 'NonExistentEngine'
Warning 1266 Using storage engine MyISAM for table 't1'
DROP TABLE t1;
CREATE TABLE t1 (a INT)
ENGINE=NonExistentEngine
PARTITION BY HASH (a);
Warnings:
Warning 1286 Unknown table engine 'NonExistentEngine'
Warning 1266 Using storage engine MyISAM for table 't1'
DROP TABLE t1;
CREATE TABLE t1 (a INT)
ENGINE=Memory;
ALTER TABLE t1 ENGINE=NonExistentEngine;
Warnings:
Warning 1286 Unknown table engine 'NonExistentEngine'
ALTER TABLE t1
PARTITION BY HASH (a)
(PARTITION p0 ENGINE=Memory,
PARTITION p1 ENGINE=NonExistentEngine);
Warnings:
Warning 1286 Unknown table engine 'NonExistentEngine'
ALTER TABLE t1 ENGINE=NonExistentEngine;
Warnings:
Warning 1286 Unknown table engine 'NonExistentEngine'
SHOW CREATE TABLE t1;
Table Create Table
t1 CREATE TABLE `t1` (
`a` int(11) DEFAULT NULL
) ENGINE=MEMORY DEFAULT CHARSET=latin1
/*!50100 PARTITION BY HASH (a)
(PARTITION p0 ENGINE = MEMORY,
PARTITION p1 ENGINE = MEMORY) */
DROP TABLE t1;
CREATE TABLE t1 (a INT NOT NULL, KEY(a))
PARTITION BY RANGE(a)
(PARTITION p1 VALUES LESS THAN (200), PARTITION pmax VALUES LESS THAN MAXVALUE);
...
...
mysql-test/r/partition_innodb.result
View file @
ea1e209f
...
...
@@ -210,7 +210,8 @@ engine = innodb
partition by list (a)
(partition p0 values in (0));
alter table t1 engine = x;
ERROR HY000: The mix of handlers in the partitions is not allowed in this version of MySQL
Warnings:
Warning 1286 Unknown table engine 'x'
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (
...
...
mysql-test/t/log_tables.test
View file @
ea1e209f
...
...
@@ -258,14 +258,21 @@ set global slow_query_log='OFF';
# check that alter table doesn't work for other engines
set
@
save_storage_engine
=
@@
session
.
storage_engine
;
set
storage_engine
=
MEMORY
;
# After fixing bug#35765 the error behaivor changed:
# If compiled in/enabled ER_UNSUPORTED_LOG_ENGINE
# If not (i.e. not existant) it will show a warning
# and use the current one.
alter
table
mysql
.
slow_log
engine
=
NonExistentEngine
;
--
error
ER_UNSUPORTED_LOG_ENGINE
alter
table
mysql
.
slow_log
engine
=
ndb
;
--
error
ER_UNSUPORTED_LOG_ENGINE
alter
table
mysql
.
slow_log
engine
=
innodb
;
--
error
ER_UNSUPORTED_LOG_ENGINE
alter
table
mysql
.
slow_log
engine
=
archive
;
--
error
ER_UNSUPORTED_LOG_ENGINE
alter
table
mysql
.
slow_log
engine
=
blackhole
;
alter
table
mysql
.
slow_log
engine
=
memory
;
#--error ER_UNSUPORTED_LOG_ENGINE
#alter table mysql.slow_log engine=ndb;
#--error ER_UNSUPORTED_LOG_ENGINE
#alter table mysql.slow_log engine=innodb;
#--error ER_UNSUPORTED_LOG_ENGINE
#alter table mysql.slow_log engine=archive;
#--error ER_UNSUPORTED_LOG_ENGINE
#alter table mysql.slow_log engine=blackhole;
set
storage_engine
=
@
save_storage_engine
;
drop
table
mysql
.
slow_log
;
...
...
mysql-test/t/partition.test
View file @
ea1e209f
...
...
@@ -97,6 +97,29 @@ INSERT INTO t1 VALUES (NULL);
SELECT
*
FROM
t1
WHERE
pk
<
0
ORDER
BY
pk
;
DROP
TABLE
t1
;
#
# Bug#35765: ALTER TABLE produces wrong error when non-existent storage engine
# used
CREATE
TABLE
t1
(
a
INT
)
ENGINE
=
NonExistentEngine
;
DROP
TABLE
t1
;
CREATE
TABLE
t1
(
a
INT
)
ENGINE
=
NonExistentEngine
PARTITION
BY
HASH
(
a
);
DROP
TABLE
t1
;
CREATE
TABLE
t1
(
a
INT
)
ENGINE
=
Memory
;
ALTER
TABLE
t1
ENGINE
=
NonExistentEngine
;
# OK to only specify one partitions engine, since it is already assigned at
# table level (after create, it is specified on all levels and all parts).
ALTER
TABLE
t1
PARTITION
BY
HASH
(
a
)
(
PARTITION
p0
ENGINE
=
Memory
,
PARTITION
p1
ENGINE
=
NonExistentEngine
);
ALTER
TABLE
t1
ENGINE
=
NonExistentEngine
;
SHOW
CREATE
TABLE
t1
;
DROP
TABLE
t1
;
#
# Bug#40494: Crash MYSQL server crashes on range access with partitioning
# and order by
...
...
mysql-test/t/partition_innodb.test
View file @
ea1e209f
...
...
@@ -250,7 +250,6 @@ engine = innodb
partition
by
list
(
a
)
(
partition
p0
values
in
(
0
));
--
error
ER_MIX_HANDLER_ERROR
alter
table
t1
engine
=
x
;
show
create
table
t1
;
drop
table
t1
;
...
...
sql/protocol.cc
View file @
ea1e209f
...
...
@@ -411,8 +411,8 @@ bool net_send_error_packet(THD *thd, uint sql_errno, const char *err,
thd
->
variables
.
character_set_results
,
err
,
strlen
(
err
),
system_charset_info
,
&
error
);
length
=
(
uint
)
(
strmake
((
char
*
)
pos
,
(
char
*
)
converted_err
,
MYSQL_ERRMSG_SIZE
)
-
(
char
*
)
buff
);
length
=
(
uint
)
(
strmake
((
char
*
)
pos
,
(
char
*
)
converted_err
,
MYSQL_ERRMSG_SIZE
-
1
)
-
(
char
*
)
buff
);
err
=
(
char
*
)
buff
;
DBUG_RETURN
(
net_write_command
(
net
,(
uchar
)
255
,
(
uchar
*
)
""
,
0
,
(
uchar
*
)
err
,
length
));
...
...
sql/sql_yacc.yy
View file @
ea1e209f
...
...
@@ -4820,7 +4820,8 @@ create_table_option:
ENGINE_SYM opt_equal storage_engines
{
Lex->create_info.db_type= $3;
Lex->create_info.used_fields|= HA_CREATE_USED_ENGINE;
if ($3)
Lex->create_info.used_fields|= HA_CREATE_USED_ENGINE;
}
| TYPE_SYM opt_equal storage_engines
{
...
...
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