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
dc0d2b83
Commit
dc0d2b83
authored
Apr 12, 2004
by
monty@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added function comment
parent
f96c4941
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
sql/field.h
sql/field.h
+1
-0
sql/item.cc
sql/item.cc
+1
-3
sql/item.h
sql/item.h
+1
-0
No files found.
sql/field.h
View file @
dc0d2b83
...
@@ -92,6 +92,7 @@ public:
...
@@ -92,6 +92,7 @@ public:
utype
unireg_check_arg
,
const
char
*
field_name_arg
,
utype
unireg_check_arg
,
const
char
*
field_name_arg
,
struct
st_table
*
table_arg
);
struct
st_table
*
table_arg
);
virtual
~
Field
()
{}
virtual
~
Field
()
{}
/* Store functions returns 1 on overflow and -1 on fatal error */
virtual
int
store
(
const
char
*
to
,
uint
length
,
CHARSET_INFO
*
cs
)
=
0
;
virtual
int
store
(
const
char
*
to
,
uint
length
,
CHARSET_INFO
*
cs
)
=
0
;
virtual
int
store
(
double
nr
)
=
0
;
virtual
int
store
(
double
nr
)
=
0
;
virtual
int
store
(
longlong
nr
)
=
0
;
virtual
int
store
(
longlong
nr
)
=
0
;
...
...
sql/item.cc
View file @
dc0d2b83
...
@@ -678,9 +678,7 @@ void Item_param::set_longdata(const char *str, ulong length)
...
@@ -678,9 +678,7 @@ void Item_param::set_longdata(const char *str, ulong length)
int
Item_param
::
save_in_field
(
Field
*
field
,
bool
no_conversions
)
int
Item_param
::
save_in_field
(
Field
*
field
,
bool
no_conversions
)
{
{
THD
*
thd
=
current_thd
;
DBUG_ASSERT
(
current_thd
->
command
==
COM_EXECUTE
);
DBUG_ASSERT
(
thd
->
command
==
COM_EXECUTE
);
if
(
null_value
)
if
(
null_value
)
return
(
int
)
set_field_to_null
(
field
);
return
(
int
)
set_field_to_null
(
field
);
...
...
sql/item.h
View file @
dc0d2b83
...
@@ -146,6 +146,7 @@ public:
...
@@ -146,6 +146,7 @@ public:
complete fix_fields() procedure.
complete fix_fields() procedure.
*/
*/
inline
void
quick_fix_field
()
{
fixed
=
1
;
}
inline
void
quick_fix_field
()
{
fixed
=
1
;
}
/* Function returns 1 on overflow and -1 on fatal errors */
virtual
int
save_in_field
(
Field
*
field
,
bool
no_conversions
);
virtual
int
save_in_field
(
Field
*
field
,
bool
no_conversions
);
virtual
void
save_org_in_field
(
Field
*
field
)
virtual
void
save_org_in_field
(
Field
*
field
)
{
(
void
)
save_in_field
(
field
,
1
);
}
{
(
void
)
save_in_field
(
field
,
1
);
}
...
...
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