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
227f1103
Commit
227f1103
authored
Feb 25, 2011
by
Michael Widenius
Browse files
Options
Browse Files
Download
Plain Diff
automatic merge
parents
22e1ee5f
52b64be3
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
11 additions
and
13 deletions
+11
-13
client/readline.cc
client/readline.cc
+1
-0
mysql-test/suite/handler/aria.result
mysql-test/suite/handler/aria.result
+1
-1
mysql-test/suite/handler/handler.inc
mysql-test/suite/handler/handler.inc
+1
-1
mysql-test/suite/handler/heap.result
mysql-test/suite/handler/heap.result
+1
-1
mysql-test/suite/handler/innodb.result
mysql-test/suite/handler/innodb.result
+1
-1
mysql-test/suite/handler/myisam.result
mysql-test/suite/handler/myisam.result
+1
-1
plugin/handler_socket/handlersocket/Makefile.am
plugin/handler_socket/handlersocket/Makefile.am
+1
-5
sql/filesort.cc
sql/filesort.cc
+1
-1
sql/log.cc
sql/log.cc
+1
-0
sql/opt_range_mrr.cc
sql/opt_range_mrr.cc
+1
-1
storage/xtradb/fil/fil0fil.c
storage/xtradb/fil/fil0fil.c
+1
-1
No files found.
client/readline.cc
View file @
227f1103
...
...
@@ -47,6 +47,7 @@ char *batch_readline(LINE_BUFFER *line_buff, bool *truncated)
char
*
pos
;
ulong
out_length
;
DBUG_ASSERT
(
truncated
!=
NULL
);
LINT_INIT
(
out_length
);
if
(
!
(
pos
=
intern_read_line
(
line_buff
,
&
out_length
,
truncated
)))
return
0
;
...
...
mysql-test/suite/handler/aria.result
View file @
227f1103
...
...
@@ -329,7 +329,7 @@ a b
16 ccc
16 xxx
deallocate prepare stmt;
prepare stmt from 'handler t1 read
a
>=(?) where a < ? limit 5';
prepare stmt from 'handler t1 read
b
>=(?) where a < ? limit 5';
set @a=17, @b=24;
execute stmt using @a,@b;
a b
...
...
mysql-test/suite/handler/handler.inc
View file @
227f1103
...
...
@@ -195,7 +195,7 @@ execute stmt using @a;
execute
stmt
using
@
a
;
deallocate
prepare
stmt
;
prepare
stmt
from
'handler t1 read
a
>=(?) where a < ? limit 5'
;
prepare
stmt
from
'handler t1 read
b
>=(?) where a < ? limit 5'
;
set
@
a
=
17
,
@
b
=
24
;
execute
stmt
using
@
a
,
@
b
;
execute
stmt
using
@
a
,
@
b
;
...
...
mysql-test/suite/handler/heap.result
View file @
227f1103
...
...
@@ -329,7 +329,7 @@ a b
16 ccc
16 xxx
deallocate prepare stmt;
prepare stmt from 'handler t1 read
a
>=(?) where a < ? limit 5';
prepare stmt from 'handler t1 read
b
>=(?) where a < ? limit 5';
set @a=17, @b=24;
execute stmt using @a,@b;
a b
...
...
mysql-test/suite/handler/innodb.result
View file @
227f1103
...
...
@@ -329,7 +329,7 @@ a b
16 ccc
16 xxx
deallocate prepare stmt;
prepare stmt from 'handler t1 read
a
>=(?) where a < ? limit 5';
prepare stmt from 'handler t1 read
b
>=(?) where a < ? limit 5';
set @a=17, @b=24;
execute stmt using @a,@b;
a b
...
...
mysql-test/suite/handler/myisam.result
View file @
227f1103
...
...
@@ -329,7 +329,7 @@ a b
16 ccc
16 xxx
deallocate prepare stmt;
prepare stmt from 'handler t1 read
a
>=(?) where a < ? limit 5';
prepare stmt from 'handler t1 read
b
>=(?) where a < ? limit 5';
set @a=17, @b=24;
execute stmt using @a,@b;
a b
...
...
plugin/handler_socket/handlersocket/Makefile.am
View file @
227f1103
CXXFLAGS
+=
-fimplicit-templates
pkgplugindir
=
$(PLUGIN_DIR)
noinst_HEADERS
=
database.hpp hstcpsvr.hpp hstcpsvr_worker.hpp mysql_incl.hpp
pkgplugin_LTLIBRARIES
=
handlersocket.la
handlersocket_la_LDFLAGS
=
-module
../libhsclient/libhsclient.la
handlersocket_la_CFLAGS
=
$(MYSQL_INC)
$(MYSQL_CFLAGS)
$(AM_CFLAGS)
\
-I
$(srcdir)
/../libhsclient
handlersocket_la_CXXFLAGS
=
$(MYSQL_INC)
$(MYSQL_CFLAGS)
$(AM_CFLAGS)
\
-I
$(srcdir)
/../libhsclient
handlersocket_la_CXXFLAGS
=
$(MYSQL_INC)
$(MYSQL_CFLAGS)
$(AM_CXXFLAGS)
-fimplicit-templates
-I
$(srcdir)
/../libhsclient
handlersocket_la_SOURCES
=
database.cpp handlersocket.cpp
\
hstcpsvr_worker.cpp hstcpsvr.cpp
sql/filesort.cc
View file @
227f1103
...
...
@@ -1215,7 +1215,7 @@ int merge_buffers(SORTPARAM *param, IO_CACHE *from_file,
QUEUE
queue
;
qsort2_cmp
cmp
;
void
*
first_cmp_arg
;
element_count
dupl_count
;
element_count
dupl_count
=
0
;
uchar
*
src
;
THD
::
killed_state
not_killable
;
uchar
*
unique_buff
=
param
->
unique_buff
;
...
...
sql/log.cc
View file @
227f1103
...
...
@@ -1899,6 +1899,7 @@ static int find_uniq_filename(char *name)
size_t
buf_length
,
length
;
char
*
start
,
*
end
;
DBUG_ENTER
(
"find_uniq_filename"
);
LINT_INIT
(
number
);
length
=
dirname_part
(
buff
,
name
,
&
buf_length
);
start
=
name
+
length
;
...
...
sql/opt_range_mrr.cc
View file @
227f1103
...
...
@@ -225,7 +225,7 @@ walk_up_n_right:
RANGE_SEQ_ENTRY
*
cur
=
&
seq
->
stack
[
seq
->
i
];
uint
min_key_length
=
cur
->
min_key
-
seq
->
param
->
min_key
;
range
->
ptr
=
(
char
*
)(
int
)(
key_tree
->
part
);
range
->
ptr
=
(
char
*
)(
int
ptr
)(
key_tree
->
part
);
if
(
cur
->
min_key_flag
&
GEOM_FLAG
)
{
range
->
range_flag
=
cur
->
min_key_flag
;
...
...
storage/xtradb/fil/fil0fil.c
View file @
227f1103
...
...
@@ -3313,7 +3313,7 @@ skip_info:
}
if
(
page_is_corrupt
)
{
fprintf
(
stderr
,
" [errp:%lld]"
,
offset
/
UNIV_PAGE_SIZE
);
fprintf
(
stderr
,
" [errp:%lld]"
,
(
longlong
)
(
offset
/
UNIV_PAGE_SIZE
)
);
/* cannot treat corrupt page */
goto
skip_write
;
...
...
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