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
42d549a9
Commit
42d549a9
authored
Jul 06, 2006
by
tomas@poseidon.ndb.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
corrected results
parent
8d82e2c6
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
mysql-test/r/ndb_dd_advance2.result
mysql-test/r/ndb_dd_advance2.result
+3
-2
mysql-test/t/ndb_dd_advance2.test
mysql-test/t/ndb_dd_advance2.test
+3
-2
No files found.
mysql-test/r/ndb_dd_advance2.result
View file @
42d549a9
...
...
@@ -41,12 +41,12 @@ t2 CREATE TABLE `t2` (
) TABLESPACE ts2 STORAGE DISK ENGINE=ndbcluster DEFAULT CHARSET=latin1
INSERT INTO test.t1 VALUES (1,'111111','aaaaaaaa');
INSERT INTO test.t1 VALUES (2,'222222','bbbbbbbb');
SELECT * FROM test.t1;
SELECT * FROM test.t1
ORDER BY a1
;
a1 a2 a3
1 111111 aaaaaaaa
2 222222 bbbbbbbb
INSERT INTO test.t2(a1,a2,a3) SELECT * FROM test.t1;
SELECT * FROM test.t2;
SELECT * FROM test.t2
ORDER BY a1
;
a1 a2 a3
1 111111 aaaaaaaa
2 222222 bbbbbbbb
...
...
@@ -299,6 +299,7 @@ test.fn2(50, 'new BLOB content')
new BLOB content
DELETE FROM test.t1;
DROP FUNCTION test.fn1;
DROP FUNCTION test.fn2;
DROP TABLE test.t1;
ALTER TABLESPACE ts1
DROP DATAFILE './table_space1/datafile.dat'
...
...
mysql-test/t/ndb_dd_advance2.test
View file @
42d549a9
...
...
@@ -58,9 +58,9 @@ DROP TABLE IF EXISTS test.t3;
INSERT
INTO
test
.
t1
VALUES
(
1
,
'111111'
,
'aaaaaaaa'
);
INSERT
INTO
test
.
t1
VALUES
(
2
,
'222222'
,
'bbbbbbbb'
);
SELECT
*
FROM
test
.
t1
;
SELECT
*
FROM
test
.
t1
ORDER
BY
a1
;
INSERT
INTO
test
.
t2
(
a1
,
a2
,
a3
)
SELECT
*
FROM
test
.
t1
;
SELECT
*
FROM
test
.
t2
;
SELECT
*
FROM
test
.
t2
ORDER
BY
a1
;
DROP
TABLE
test
.
t1
,
test
.
t2
;
...
...
@@ -332,6 +332,7 @@ delimiter //;
DELETE
FROM
test
.
t1
;
DROP
FUNCTION
test
.
fn1
;
DROP
FUNCTION
test
.
fn2
;
DROP
TABLE
test
.
t1
;
ALTER
TABLESPACE
ts1
...
...
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