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
536b8405
Commit
536b8405
authored
Sep 08, 2003
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal:/home/bk/mysql-4.1/
into serg.mylan:/usr/home/serg/Abk/mysql-4.1
parents
90bd948e
503e7c93
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
17 deletions
+16
-17
innobase/row/row0sel.c
innobase/row/row0sel.c
+16
-17
No files found.
innobase/row/row0sel.c
View file @
536b8405
...
@@ -2178,9 +2178,9 @@ row_sel_store_mysql_rec(
...
@@ -2178,9 +2178,9 @@ row_sel_store_mysql_rec(
prebuilt
->
blob_heap
=
NULL
;
prebuilt
->
blob_heap
=
NULL
;
}
}
/* Mark all columns as
not
SQL NULL */
/* Mark all columns as SQL NULL */
memset
(
mysql_rec
,
'\0'
,
prebuilt
->
null_bitmap_len
);
memset
(
mysql_rec
,
255
,
prebuilt
->
null_bitmap_len
);
for
(
i
=
0
;
i
<
prebuilt
->
n_template
;
i
++
)
{
for
(
i
=
0
;
i
<
prebuilt
->
n_template
;
i
++
)
{
...
@@ -2245,6 +2245,11 @@ row_sel_store_mysql_rec(
...
@@ -2245,6 +2245,11 @@ row_sel_store_mysql_rec(
mem_heap_free
(
extern_field_heap
);
mem_heap_free
(
extern_field_heap
);
extern_field_heap
=
NULL
;
extern_field_heap
=
NULL
;
}
}
if
(
templ
->
mysql_null_bit_mask
)
{
mysql_rec
[
templ
->
mysql_null_byte_offset
]
&=
~
(
byte
)
(
templ
->
mysql_null_bit_mask
);
}
}
else
{
}
else
{
/* MySQL seems to assume the field for an SQL NULL
/* MySQL seems to assume the field for an SQL NULL
value is set to zero. Not taking this into account
value is set to zero. Not taking this into account
...
@@ -2252,17 +2257,11 @@ row_sel_store_mysql_rec(
...
@@ -2252,17 +2257,11 @@ row_sel_store_mysql_rec(
bug number 154 in the MySQL bug database: GROUP BY
bug number 154 in the MySQL bug database: GROUP BY
and DISTINCT could treat NULL values inequal. */
and DISTINCT could treat NULL values inequal. */
memset
(
mysql_rec
+
templ
->
mysql_col_offset
,
'\0'
,
memset
(
mysql_rec
+
templ
->
mysql_col_offset
,
((
templ
->
type
==
DATA_VARCHAR
||
templ
->
type
==
DATA_VARMYSQL
||
templ
->
type
==
DATA_BINARY
)
?
' '
:
'\0'
),
templ
->
mysql_col_len
);
templ
->
mysql_col_len
);
if
(
!
templ
->
mysql_null_bit_mask
)
{
fprintf
(
stderr
,
"InnoDB: Error: trying to return an SQL NULL field in a non-null
\n
"
"innoDB: column! Table name %s
\n
"
,
prebuilt
->
table
->
name
);
}
else
{
mysql_rec
[
templ
->
mysql_null_byte_offset
]
|=
(
byte
)
(
templ
->
mysql_null_bit_mask
);
}
}
}
}
}
...
...
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