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
7178f247
Commit
7178f247
authored
Feb 23, 2006
by
konstantin@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove 'delayed' to make the test deterministic (already
fixed in 5.0). A post-review fix (Bug#13134)
parent
442c2ba8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
8 deletions
+4
-8
mysql-test/r/heap.result
mysql-test/r/heap.result
+2
-2
mysql-test/r/ps.result
mysql-test/r/ps.result
+0
-3
mysql-test/t/heap.test
mysql-test/t/heap.test
+2
-2
mysql-test/t/ps.test
mysql-test/t/ps.test
+0
-1
No files found.
mysql-test/r/heap.result
View file @
7178f247
...
...
@@ -297,11 +297,11 @@ insert into t1 values ("abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcd
ERROR 23000: Duplicate entry 'abcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijklmnopqrstuvwxyzabcdefghijkl' for key 1
drop table t1;
CREATE TABLE t1 (a int, key(a)) engine=heap;
insert
delayed
into t1 values (0);
insert into t1 values (0);
delete from t1;
select * from t1;
a
insert
delayed
into t1 values (0), (1);
insert into t1 values (0), (1);
select * from t1 where a = 0;
a
0
...
...
mysql-test/r/ps.result
View file @
7178f247
...
...
@@ -733,9 +733,6 @@ count(*)
5
deallocate prepare stmt;
drop table t1;
drop table if exists t1;
Warnings:
Note 1051 Unknown table 't1'
prepare stmt from 'create table t1 (a varchar(10) character set utf8)';
execute stmt;
insert into t1 (a) values (repeat('a', 20));
...
...
mysql-test/t/heap.test
View file @
7178f247
...
...
@@ -238,10 +238,10 @@ drop table t1;
# Bug 12796: Record doesn't show when selecting through index
#
CREATE
TABLE
t1
(
a
int
,
key
(
a
))
engine
=
heap
;
insert
delayed
into
t1
values
(
0
);
insert
into
t1
values
(
0
);
delete
from
t1
;
select
*
from
t1
;
insert
delayed
into
t1
values
(
0
),
(
1
);
insert
into
t1
values
(
0
),
(
1
);
select
*
from
t1
where
a
=
0
;
drop
table
t1
;
...
...
mysql-test/t/ps.test
View file @
7178f247
...
...
@@ -769,7 +769,6 @@ drop table t1;
# recreated with PS/SP"
#
drop
table
if
exists
t1
;
prepare
stmt
from
'create table t1 (a varchar(10) character set utf8)'
;
execute
stmt
;
--
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