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
d1c10d64
Commit
d1c10d64
authored
Mar 27, 2001
by
heikki@donna.mysql.fi
Browse files
Options
Browse Files
Download
Plain Diff
Merge heikki@work.mysql.com:/home/bk/mysql
into donna.mysql.fi:/home/heikki/mysqlt
parents
d270ccd7
7a13c25f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
3 additions
and
3 deletions
+3
-3
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
innobase/data/data0data.c
innobase/data/data0data.c
+1
-1
innobase/data/data0type.c
innobase/data/data0type.c
+1
-1
innobase/include/data0type.ic
innobase/include/data0type.ic
+0
-1
No files found.
BitKeeper/etc/logging_ok
View file @
d1c10d64
ccarkner@nslinuxw10.bedford.progress.com
ccarkner@nslinuxw10.bedford.progress.com
heikki@donna.mysql.fi
innobase/data/data0data.c
View file @
d1c10d64
...
@@ -111,7 +111,7 @@ dfield_check_typed(
...
@@ -111,7 +111,7 @@ dfield_check_typed(
/* out: TRUE if ok */
/* out: TRUE if ok */
dfield_t
*
field
)
/* in: data field */
dfield_t
*
field
)
/* in: data field */
{
{
ut_a
(
dfield_get_type
(
field
)
->
mtype
<=
DATA_
SYS
);
ut_a
(
dfield_get_type
(
field
)
->
mtype
<=
DATA_
MYSQL
);
ut_a
(
dfield_get_type
(
field
)
->
mtype
>=
DATA_VARCHAR
);
ut_a
(
dfield_get_type
(
field
)
->
mtype
>=
DATA_VARCHAR
);
return
(
TRUE
);
return
(
TRUE
);
...
...
innobase/data/data0type.c
View file @
d1c10d64
...
@@ -25,7 +25,7 @@ dtype_validate(
...
@@ -25,7 +25,7 @@ dtype_validate(
dtype_t
*
type
)
/* in: type struct to validate */
dtype_t
*
type
)
/* in: type struct to validate */
{
{
ut_a
(
type
);
ut_a
(
type
);
ut_a
((
type
->
mtype
>=
DATA_VARCHAR
)
&&
(
type
->
mtype
<=
DATA_
SYS
));
ut_a
((
type
->
mtype
>=
DATA_VARCHAR
)
&&
(
type
->
mtype
<=
DATA_
MYSQL
));
if
(
type
->
mtype
==
DATA_SYS
)
{
if
(
type
->
mtype
==
DATA_SYS
)
{
ut_a
(
type
->
prtype
>=
DATA_ROW_ID
);
ut_a
(
type
->
prtype
>=
DATA_ROW_ID
);
...
...
innobase/include/data0type.ic
View file @
d1c10d64
...
@@ -149,7 +149,6 @@ dtype_store_for_order_and_null_size(
...
@@ -149,7 +149,6 @@ dtype_store_for_order_and_null_size(
dtype_t* type) /* in: type struct */
dtype_t* type) /* in: type struct */
{
{
ut_ad(4 == DATA_ORDER_NULL_TYPE_BUF_SIZE);
ut_ad(4 == DATA_ORDER_NULL_TYPE_BUF_SIZE);
ut_ad(type->prtype < 256);
buf[0] = (byte)(type->mtype & 0xFF);
buf[0] = (byte)(type->mtype & 0xFF);
buf[1] = (byte)(type->prtype & 0xFF);
buf[1] = (byte)(type->prtype & 0xFF);
...
...
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