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
9cc1698f
Commit
9cc1698f
authored
Mar 14, 2008
by
msvensson@pilot.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing DROP TABLE
parent
b933ae23
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
6 additions
and
0 deletions
+6
-0
mysql-test/r/archive.result
mysql-test/r/archive.result
+1
-0
mysql-test/r/create.result
mysql-test/r/create.result
+1
-0
mysql-test/r/group_by.result
mysql-test/r/group_by.result
+1
-0
mysql-test/t/archive.test
mysql-test/t/archive.test
+1
-0
mysql-test/t/create.test
mysql-test/t/create.test
+1
-0
mysql-test/t/group_by.test
mysql-test/t/group_by.test
+1
-0
No files found.
mysql-test/r/archive.result
View file @
9cc1698f
...
...
@@ -12694,3 +12694,4 @@ SELECT * FROM t1 ORDER BY a;
a b
1 NULL
2 NULL
DROP TABLE t1;
mysql-test/r/create.result
View file @
9cc1698f
...
...
@@ -1786,6 +1786,7 @@ t2 CREATE TABLE `t2` (
) ENGINE=MyISAM DEFAULT CHARSET=latin1
DROP TABLE t2;
DROP TABLE t1;
# -- End of test case for Bug#21380.
...
...
mysql-test/r/group_by.result
View file @
9cc1698f
...
...
@@ -1478,6 +1478,7 @@ NULL
1
2
DROP TABLE t1;
DROP TABLE t2;
CREATE TABLE t1 ( a INT, b INT );
SELECT b c, (SELECT a FROM t1 WHERE b = c)
FROM t1;
...
...
mysql-test/t/archive.test
View file @
9cc1698f
...
...
@@ -1598,3 +1598,4 @@ CREATE TABLE t1(a INT NOT NULL AUTO_INCREMENT, b BLOB, KEY(a)) ENGINE=archive;
INSERT
INTO
t1
VALUES
(
NULL
,
NULL
),(
NULL
,
NULL
);
FLUSH
TABLE
t1
;
SELECT
*
FROM
t1
ORDER
BY
a
;
DROP
TABLE
t1
;
mysql-test/t/create.test
View file @
9cc1698f
...
...
@@ -1380,6 +1380,7 @@ SHOW CREATE TABLE t2;
--
echo
DROP
TABLE
t2
;
DROP
TABLE
t1
;
--
echo
--
echo
# -- End of test case for Bug#21380.
...
...
mysql-test/t/group_by.test
View file @
9cc1698f
...
...
@@ -945,6 +945,7 @@ EXPLAIN SELECT b from t2 GROUP BY b;
SELECT
b
from
t2
GROUP
BY
b
;
DROP
TABLE
t1
;
DROP
TABLE
t2
;
#
# Bug #31797: error while parsing subqueries -- WHERE is parsed as HAVING
...
...
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