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
ec6213a7
Commit
ec6213a7
authored
Aug 15, 2006
by
marko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
branches/zip: Merge revisions 713:720 from trunk.
parent
96826e51
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
9 deletions
+6
-9
include/btr0cur.ic
include/btr0cur.ic
+1
-4
mysql-test/innodb.result
mysql-test/innodb.result
+2
-2
row/row0mysql.c
row/row0mysql.c
+2
-2
row/row0vers.c
row/row0vers.c
+1
-1
No files found.
include/btr0cur.ic
View file @
ec6213a7
...
...
@@ -52,10 +52,7 @@ btr_cur_get_page(
/* out: pointer to page */
btr_cur_t* cursor) /* in: tree cursor */
{
page_t* page = buf_frame_align(page_cur_get_rec(&(cursor->page_cur)));
ut_ad(!!page_is_comp(page)
== dict_table_is_comp(cursor->index->table));
return(page);
return(buf_frame_align(page_cur_get_rec(&(cursor->page_cur))));
}
/*************************************************************
...
...
mysql-test/innodb.result
View file @
ec6213a7
...
...
@@ -1778,10 +1778,10 @@ Variable_name Value
Innodb_rows_deleted 2070
show status like "Innodb_rows_inserted";
Variable_name Value
Innodb_rows_inserted 3
1727
Innodb_rows_inserted 3
083
show status like "Innodb_rows_updated";
Variable_name Value
Innodb_rows_updated
29530
Innodb_rows_updated
886
show status like "Innodb_row_lock_waits";
Variable_name Value
Innodb_row_lock_waits 0
...
...
row/row0mysql.c
View file @
ec6213a7
...
...
@@ -3334,8 +3334,8 @@ row_is_mysql_tmp_table_name(
const
char
*
name
)
/* in: table name in the form
'database/tablename' */
{
/*
return
(
strstr
(
name
,
"/#sql"
)
!=
NULL
);
*/
return
(
strstr
(
name
,
"/@0023sql"
)
!=
NULL
);
return
(
strstr
(
name
,
"/#sql"
)
!=
NULL
);
/* return(strstr(name, "/@0023sql") != NULL); */
}
/********************************************************************
...
...
row/row0vers.c
View file @
ec6213a7
...
...
@@ -553,7 +553,7 @@ row_vers_build_for_semi_consistent_read(
mem_heap_t
*
heap
=
NULL
;
byte
*
buf
;
ulint
err
;
dulint
rec_trx_id
;
dulint
rec_trx_id
=
ut_dulint_create
(
0
,
0
)
;
ut_ad
(
dict_index_is_clust
(
index
));
ut_ad
(
mtr_memo_contains
(
mtr
,
buf_block_align
(
rec
),
MTR_MEMO_PAGE_X_FIX
)
...
...
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