Commit 790c9a05 authored by konstantin@mysql.com's avatar konstantin@mysql.com

Post merge-fixes.

Apply a patch by Jonas for NDB diskdata.
parent 365404a0
...@@ -155,11 +155,11 @@ Pos Instruction ...@@ -155,11 +155,11 @@ Pos Instruction
0 stmt 9 "drop temporary table if exists sudoku..." 0 stmt 9 "drop temporary table if exists sudoku..."
1 stmt 1 "create temporary table sudoku_work ( ..." 1 stmt 1 "create temporary table sudoku_work ( ..."
2 stmt 1 "create temporary table sudoku_schedul..." 2 stmt 1 "create temporary table sudoku_schedul..."
3 stmt 95 "call sudoku_init(" 3 stmt 94 "call sudoku_init("
4 jump_if_not 7(8) p_naive@0 4 jump_if_not 7(8) p_naive@0
5 stmt 4 "update sudoku_work set cnt = 0 where ..." 5 stmt 4 "update sudoku_work set cnt = 0 where ..."
6 jump 8 6 jump 8
7 stmt 95 "call sudoku_count(" 7 stmt 94 "call sudoku_count("
8 stmt 6 "insert into sudoku_schedule (row,col)..." 8 stmt 6 "insert into sudoku_schedule (row,col)..."
9 set v_scounter@2 0 9 set v_scounter@2 0
10 set v_i@3 1 10 set v_i@3 1
......
...@@ -431,6 +431,7 @@ void AsyncFile::openReq(Request* request) ...@@ -431,6 +431,7 @@ void AsyncFile::openReq(Request* request)
m_fs.EXECUTE_DIRECT(block, GSN_FSWRITEREQ, signal, m_fs.EXECUTE_DIRECT(block, GSN_FSWRITEREQ, signal,
FsReadWriteReq::FixedLength + 1); FsReadWriteReq::FixedLength + 1);
retry:
Uint32 size = request->par.open.page_size; Uint32 size = request->par.open.page_size;
char* buf = (char*)m_page_ptr.p; char* buf = (char*)m_page_ptr.p;
while(size > 0){ while(size > 0){
...@@ -457,7 +458,7 @@ void AsyncFile::openReq(Request* request) ...@@ -457,7 +458,7 @@ void AsyncFile::openReq(Request* request)
close(theFd); close(theFd);
theFd = ::open(theFileName.c_str(), new_flags, mode); theFd = ::open(theFileName.c_str(), new_flags, mode);
if (theFd != -1) if (theFd != -1)
continue; goto retry;
} }
#endif #endif
close(theFd); close(theFd);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment