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
5b29c6ea
Commit
5b29c6ea
authored
Jan 26, 2005
by
joreland@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/jonas/src/mysql-5.0
into mysql.com:/home/jonas/src/mysql-5.0-ndb
parents
08a90661
04bffe10
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
innobase/include/rem0rec.h
innobase/include/rem0rec.h
+2
-2
innobase/include/rem0rec.ic
innobase/include/rem0rec.ic
+1
-1
libmysqld/examples/Makefile.am
libmysqld/examples/Makefile.am
+1
-1
mysql-test/t/ndb_index_unique.test
mysql-test/t/ndb_index_unique.test
+1
-1
No files found.
innobase/include/rem0rec.h
View file @
5b29c6ea
...
...
@@ -139,7 +139,7 @@ bits of a record. (Only compact records have status bits.) */
UNIV_INLINE
ulint
rec_get_info_and_status_bits
(
/*==============*/
/*==============
===========
*/
/* out: info bits */
rec_t
*
rec
,
/* in: physical record */
ibool
comp
);
/* in: TRUE=compact page format */
...
...
@@ -149,7 +149,7 @@ bits of a record. (Only compact records have status bits.) */
UNIV_INLINE
void
rec_set_info_and_status_bits
(
/*==============*/
/*==============
===========
*/
rec_t
*
rec
,
/* in: physical record */
ibool
comp
,
/* in: TRUE=compact page format */
ulint
bits
);
/* in: info bits */
...
...
innobase/include/rem0rec.ic
View file @
5b29c6ea
...
...
@@ -564,7 +564,7 @@ rec_set_info_and_status_bits(
} else {
ut_ad(!(bits & ~(REC_INFO_BITS_MASK >> REC_INFO_BITS_SHIFT)));
}
rec_set_info_bits(rec,
bits & ~REC_NEW_STATUS_MASK, comp
);
rec_set_info_bits(rec,
comp, bits & ~REC_NEW_STATUS_MASK
);
}
/**********************************************************
...
...
libmysqld/examples/Makefile.am
View file @
5b29c6ea
...
...
@@ -29,7 +29,7 @@ mysql_SOURCES = mysql.cc readline.cc completion_hash.cc \
mysql_LDADD
=
@readline_link@ @TERMCAP_LIB@
$(LDADD)
mysql_client_test_embedded_LINK
=
$(CXXLINK)
mysql_client_test_embedded_SOURCES
=
$(top_srcdir)
/tests/
mysql_client_test.c
mysql_client_test_embedded_SOURCES
=
mysql_client_test.c
clean
:
rm
-f
$(client_sources)
...
...
mysql-test/t/ndb_index_unique.test
View file @
5b29c6ea
--
source
include
/
have_ndb
.
inc
--
disable_warnings
drop
table
if
exists
t1
,
t2
,
t3
,
t4
,
t5
,
t6
,
t7
;
drop
table
if
exists
t1
,
t2
,
t3
,
t4
,
t5
,
t6
,
t7
,
t8
;
--
enable_warnings
#
...
...
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