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
5d853f5f
Commit
5d853f5f
authored
Dec 21, 2005
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge kboortz@bk-internal.mysql.com:/home/bk/mysql-5.1-new
into mysql.com:/Users/kent/mysql/bk/mysql-5.1-new
parents
e0d9f5bd
3bf3304c
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
5 deletions
+21
-5
client/mysqlslap.c
client/mysqlslap.c
+0
-3
mysql-test/t/disabled.def
mysql-test/t/disabled.def
+0
-1
sql/ha_ndbcluster.cc
sql/ha_ndbcluster.cc
+20
-0
sql/share/errmsg.txt
sql/share/errmsg.txt
+1
-1
No files found.
client/mysqlslap.c
View file @
5d853f5f
...
...
@@ -91,9 +91,6 @@
#include <signal.h>
#include <stdarg.h>
#include <sslopt-vars.h>
#include <sys/time.h>
#include <sys/ipc.h>
#include <sys/shm.h>
#include <sys/types.h>
#include <sys/wait.h>
...
...
mysql-test/t/disabled.def
View file @
5d853f5f
...
...
@@ -17,6 +17,5 @@ ndb_cache_multi2: Bug#15004
func_group : Bug#15448
func_math : Bug#15448
group_min_max : Bug#15448
mysqlslap : Bug#15483
subselect : Bug#15706
type_time : Bug#15805
sql/ha_ndbcluster.cc
View file @
5d853f5f
...
...
@@ -3014,6 +3014,26 @@ void ha_ndbcluster::position(const byte *record)
}
*
buff
++=
0
;
}
size_t
len
=
key_part
->
length
;
const
byte
*
ptr
=
record
+
key_part
->
offset
;
Field
*
field
=
key_part
->
field
;
if
((
field
->
type
()
==
MYSQL_TYPE_VARCHAR
)
&&
((
Field_varstring
*
)
field
)
->
length_bytes
==
1
)
{
/**
* Keys always use 2 bytes length
*/
buff
[
0
]
=
ptr
[
0
];
buff
[
1
]
=
0
;
memcpy
(
buff
+
2
,
ptr
+
1
,
len
);
len
+=
2
;
}
else
{
memcpy
(
buff
,
ptr
,
len
);
}
buff
+=
len
;
}
}
else
...
...
sql/share/errmsg.txt
View file @
5d853f5f
...
...
@@ -5726,4 +5726,4 @@ ER_PLUGIN_IS_NOT_LOADED
ER_WRONG_VALUE
eng "Incorrect %-.32s value: '%-.128s'"
ER_NO_PARTITION_FOR_GIVEN_VALUE
eng "Table has no partition for value %d"
eng "Table has no partition for value %
l
d"
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