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
131eb3b2
Commit
131eb3b2
authored
Jul 21, 2008
by
sunny
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: The test for issue#36 assumed that AUTOCOMMIT=OFF. Add an
explicit BEGIN.
parent
afb44e21
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
mysql-test/innodb-zip.result
mysql-test/innodb-zip.result
+1
-0
mysql-test/innodb-zip.test
mysql-test/innodb-zip.test
+1
-1
No files found.
mysql-test/innodb-zip.result
View file @
131eb3b2
...
...
@@ -134,6 +134,7 @@ drop table t1;
create table t1( c1 int not null, c2 blob, c3 blob, c4 blob,
primary key(c1, c2(22), c3(22)))
engine = innodb row_format = dynamic;
begin;
insert into t1 values(1, repeat('A', 20000), repeat('B', 20000),
repeat('C', 20000));
update t1 set c3 = repeat('D', 20000) where c1 = 1;
...
...
mysql-test/innodb-zip.test
View file @
131eb3b2
...
...
@@ -107,7 +107,7 @@ drop table t1;
create
table
t1
(
c1
int
not
null
,
c2
blob
,
c3
blob
,
c4
blob
,
primary
key
(
c1
,
c2
(
22
),
c3
(
22
)))
engine
=
innodb
row_format
=
dynamic
;
begin
;
insert
into
t1
values
(
1
,
repeat
(
'A'
,
20000
),
repeat
(
'B'
,
20000
),
repeat
(
'C'
,
20000
));
...
...
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