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
b2b93f0a
Commit
b2b93f0a
authored
Aug 29, 2005
by
ingo@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
After merge fix.
parent
4368e995
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
1 deletion
+5
-1
mysql-test/r/innodb.result
mysql-test/r/innodb.result
+1
-1
mysql-test/r/key.result
mysql-test/r/key.result
+1
-0
mysql-test/t/key.test
mysql-test/t/key.test
+3
-0
No files found.
mysql-test/r/innodb.result
View file @
b2b93f0a
...
...
@@ -1765,7 +1765,7 @@ Variable_name Value
Innodb_rows_deleted 2070
show status like "Innodb_rows_inserted";
Variable_name Value
Innodb_rows_inserted 317
18
Innodb_rows_inserted 317
22
show status like "Innodb_rows_updated";
Variable_name Value
Innodb_rows_updated 29530
...
...
mysql-test/r/key.result
View file @
b2b93f0a
...
...
@@ -345,6 +345,7 @@ c1 c2
2 Test String
3
Test String
drop table t1;
create table t1 (a varchar(10), b varchar(10), key(a(10),b(10)));
show create table t1;
Table Create Table
...
...
mysql-test/t/key.test
View file @
b2b93f0a
...
...
@@ -340,6 +340,9 @@ insert into t1 values (2,' \t\tTest String');
insert
into
t1
values
(
3
,
' \n\tTest String'
);
update
t1
set
c2
=
'New Test String'
where
c1
=
1
;
select
*
from
t1
;
drop
table
t1
;
#
# If we use a partial field for a key that is actually the length of the
# field, and we extend the field, we end up with a key that includes the
# whole new length of the field.
...
...
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