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
1dafac6f
Commit
1dafac6f
authored
Feb 02, 2010
by
Georgi Kodinov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed various pb2 test failures on windows.
parent
9b75c2f2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
mysql-test/r/bug46080.result
mysql-test/r/bug46080.result
+2
-2
mysql-test/t/bug46080.test
mysql-test/t/bug46080.test
+2
-2
sql/event_scheduler.cc
sql/event_scheduler.cc
+2
-1
No files found.
mysql-test/r/bug46080.result
100644 → 100755
View file @
1dafac6f
...
...
@@ -2,8 +2,8 @@
# Bug #46080: group_concat(... order by) crashes server when
# sort_buffer_size cannot allocate
#
call mtr.add_suppression("Out of memory at line .*, 'my_alloc.c'");
call mtr.add_suppression("needed .* byte
.*k., memory in use: .* bytes .*k
");
call mtr.add_suppression("Out of memory at line .*, '
.*
my_alloc.c'");
call mtr.add_suppression("needed .* byte
(.*k)., memory in use: .* bytes (.*k)
");
CREATE TABLE t1(a CHAR(255));
INSERT INTO t1 VALUES ('a');
SET @@SESSION.sort_buffer_size=5*16*1000000;
...
...
mysql-test/t/bug46080.test
View file @
1dafac6f
...
...
@@ -3,8 +3,8 @@
--
echo
# sort_buffer_size cannot allocate
--
echo
#
call
mtr
.
add_suppression
(
"Out of memory at line .*, 'my_alloc.c'"
);
call
mtr
.
add_suppression
(
"needed .* byte
.*k., memory in use: .* bytes .*k
"
);
call
mtr
.
add_suppression
(
"Out of memory at line .*, '
.*
my_alloc.c'"
);
call
mtr
.
add_suppression
(
"needed .* byte
(.*k)., memory in use: .* bytes (.*k)
"
);
CREATE
TABLE
t1
(
a
CHAR
(
255
));
INSERT
INTO
t1
VALUES
(
'a'
);
...
...
sql/event_scheduler.cc
100644 → 100755
View file @
1dafac6f
...
...
@@ -235,8 +235,9 @@ event_scheduler_thread(void *arg)
if
(
!
res
)
scheduler
->
run
(
thd
);
DBUG_LEAVE
;
// Against gcc warnings
my_thread_end
();
DBUG_RETURN
(
0
);
// Against gcc warnings
return
0
;
}
...
...
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