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
c2a868b1
Commit
c2a868b1
authored
Nov 03, 2017
by
Igor Babaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Another adjustment after the merge of mdev-12172.
parent
9333431e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
mysql-test/suite/innodb/r/innodb_bug54044.result
mysql-test/suite/innodb/r/innodb_bug54044.result
+1
-1
mysql-test/suite/innodb/t/innodb_bug54044.test
mysql-test/suite/innodb/t/innodb_bug54044.test
+1
-1
No files found.
mysql-test/suite/innodb/r/innodb_bug54044.result
View file @
c2a868b1
...
@@ -19,6 +19,6 @@ DROP TABLE tmp;
...
@@ -19,6 +19,6 @@ DROP TABLE tmp;
CREATE TABLE t1 (a VARCHAR(3)) ENGINE=InnoDB;
CREATE TABLE t1 (a VARCHAR(3)) ENGINE=InnoDB;
INSERT INTO t1 VALUES ('foo'),('bar');
INSERT INTO t1 VALUES ('foo'),('bar');
FLUSH TABLES;
FLUSH TABLES;
CREATE TEMPORARY TABLE tmp ENGINE=InnoDB AS SELECT VALUE
S
(a) FROM t1;
CREATE TEMPORARY TABLE tmp ENGINE=InnoDB AS SELECT VALUE(a) FROM t1;
ERROR HY000: Can't create table `test`.`tmp` (errno: 168 "Unknown (generic) error from engine")
ERROR HY000: Can't create table `test`.`tmp` (errno: 168 "Unknown (generic) error from engine")
DROP TABLE t1;
DROP TABLE t1;
mysql-test/suite/innodb/t/innodb_bug54044.test
View file @
c2a868b1
...
@@ -24,5 +24,5 @@ CREATE TABLE t1 (a VARCHAR(3)) ENGINE=InnoDB;
...
@@ -24,5 +24,5 @@ CREATE TABLE t1 (a VARCHAR(3)) ENGINE=InnoDB;
INSERT
INTO
t1
VALUES
(
'foo'
),(
'bar'
);
INSERT
INTO
t1
VALUES
(
'foo'
),(
'bar'
);
FLUSH
TABLES
;
FLUSH
TABLES
;
--
error
1005
--
error
1005
CREATE
TEMPORARY
TABLE
tmp
ENGINE
=
InnoDB
AS
SELECT
VALUE
S
(
a
)
FROM
t1
;
CREATE
TEMPORARY
TABLE
tmp
ENGINE
=
InnoDB
AS
SELECT
VALUE
(
a
)
FROM
t1
;
DROP
TABLE
t1
;
DROP
TABLE
t1
;
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