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
27b1f619
Commit
27b1f619
authored
May 08, 2007
by
jonas@perch.ndb.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge perch.ndb.mysql.com:/home/jonas/src/50-work
into perch.ndb.mysql.com:/home/jonas/src/51-telco-gca
parents
34c0b164
e47e6f79
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
0 deletions
+21
-0
mysql-test/r/ndb_basic.result
mysql-test/r/ndb_basic.result
+6
-0
mysql-test/t/ndb_basic.test
mysql-test/t/ndb_basic.test
+15
-0
No files found.
mysql-test/r/ndb_basic.result
View file @
27b1f619
...
...
@@ -667,6 +667,12 @@ counter datavalue
31 newval
32 newval
drop table t1;
create table t1 (a int primary key auto_increment) engine = ndb;
insert into t1() values (),(),(),(),(),(),(),(),(),(),(),();
insert into t1(a) values (20),(28);
insert into t1() values (),(),(),(),(),(),(),(),(),(),(),();
insert into t1() values (21), (22);
drop table t1;
CREATE TABLE t1 ( b INT ) PACK_KEYS = 0 ENGINE = ndb;
select * from t1;
b
...
...
mysql-test/t/ndb_basic.test
View file @
27b1f619
...
...
@@ -620,6 +620,21 @@ select * from t1 order by counter;
drop
table
t1
;
#
# bug#27437
connection
con1
;
create
table
t1
(
a
int
primary
key
auto_increment
)
engine
=
ndb
;
insert
into
t1
()
values
(),(),(),(),(),(),(),(),(),(),(),();
connection
con2
;
insert
into
t1
(
a
)
values
(
20
),(
28
);
connection
con1
;
insert
into
t1
()
values
(),(),(),(),(),(),(),(),(),(),(),();
connection
con2
;
insert
into
t1
()
values
(
21
),
(
22
);
connection
con1
;
drop
table
t1
;
#
# BUG#14514 Creating table with packed key fails silently
#
...
...
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