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
ca47a4a2
Commit
ca47a4a2
authored
Oct 01, 2004
by
mskold@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed test to be independent on scan order
parent
53d77cfc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
17 deletions
+18
-17
mysql-test/r/ndb_alter_table.result
mysql-test/r/ndb_alter_table.result
+14
-13
mysql-test/t/ndb_alter_table.test
mysql-test/t/ndb_alter_table.test
+4
-4
No files found.
mysql-test/r/ndb_alter_table.result
View file @
ca47a4a2
...
...
@@ -134,20 +134,21 @@ a INT NOT NULL PRIMARY KEY,
b INT NOT NULL
) ENGINE=ndbcluster;
INSERT INTO t1 VALUES (0,1),(17,18);
select * from t1;
select * from t1
order by a
;
a b
17 18
0 1
17 18
alter table t1 add c int not null unique auto_increment;
select * from t1 order by a;
a b c
0 1 2
17 18 1
INSERT INTO t1 VALUES (18,19,3),(20,21,0);
select * from t1 order by a;
a b c
0 1 2
17 18 1
18 19 3
20 21 4
select c from t1 order by c;
c
1
2
INSERT INTO t1 VALUES (1,2,0),(18,19,4),(20,21,0);
select c from t1 order by c;
c
1
2
3
4
5
drop table t1;
mysql-test/t/ndb_alter_table.test
View file @
ca47a4a2
...
...
@@ -107,11 +107,11 @@ CREATE TABLE t1 (
)
ENGINE
=
ndbcluster
;
INSERT
INTO
t1
VALUES
(
0
,
1
),(
17
,
18
);
select
*
from
t1
;
alter
table
t1
add
c
int
not
null
unique
auto_increment
;
select
*
from
t1
order
by
a
;
INSERT
INTO
t1
VALUES
(
18
,
19
,
3
),(
20
,
21
,
0
);
select
*
from
t1
order
by
a
;
alter
table
t1
add
c
int
not
null
unique
auto_increment
;
select
c
from
t1
order
by
c
;
INSERT
INTO
t1
VALUES
(
1
,
2
,
0
),(
18
,
19
,
4
),(
20
,
21
,
0
);
select
c
from
t1
order
by
c
;
drop
table
t1
;
#--disable_warnings
...
...
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