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
d888e97e
Commit
d888e97e
authored
Dec 17, 2002
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some fixes to get closer to UCS2 compatible SHOW FIELDS
parent
c22b4907
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
55 additions
and
51 deletions
+55
-51
sql/field.cc
sql/field.cc
+53
-50
sql/field.h
sql/field.h
+1
-0
sql/sql_show.cc
sql/sql_show.cc
+1
-1
No files found.
sql/field.cc
View file @
d888e97e
...
@@ -199,7 +199,7 @@ void Field::copy_from_tmp(int row_offset)
...
@@ -199,7 +199,7 @@ void Field::copy_from_tmp(int row_offset)
bool
Field
::
send_binary
(
Protocol
*
protocol
)
bool
Field
::
send_binary
(
Protocol
*
protocol
)
{
{
char
buff
[
MAX_FIELD_WIDTH
];
char
buff
[
MAX_FIELD_WIDTH
];
String
tmp
(
buff
,
sizeof
(
buff
),
default_charset_info
);
String
tmp
(
buff
,
sizeof
(
buff
),
charset
()
);
val_str
(
&
tmp
,
&
tmp
);
val_str
(
&
tmp
,
&
tmp
);
return
protocol
->
store
(
tmp
.
ptr
(),
tmp
.
length
());
return
protocol
->
store
(
tmp
.
ptr
(),
tmp
.
length
());
}
}
...
@@ -207,7 +207,6 @@ bool Field::send_binary(Protocol *protocol)
...
@@ -207,7 +207,6 @@ bool Field::send_binary(Protocol *protocol)
void
Field_num
::
add_zerofill_and_unsigned
(
String
&
res
)
const
void
Field_num
::
add_zerofill_and_unsigned
(
String
&
res
)
const
{
{
res
.
length
((
uint
)
strlen
(
res
.
ptr
()));
// Fix length
if
(
unsigned_flag
)
if
(
unsigned_flag
)
res
.
append
(
" unsigned"
);
res
.
append
(
" unsigned"
);
if
(
zerofill
)
if
(
zerofill
)
...
@@ -241,6 +240,17 @@ void Field_str::make_field(Send_field *field)
...
@@ -241,6 +240,17 @@ void Field_str::make_field(Send_field *field)
field
->
decimals
=
0
;
field
->
decimals
=
0
;
}
}
void
Field_str
::
add_binary_or_charset
(
String
&
res
)
const
{
if
(
binary
())
res
.
append
(
" binary"
);
else
{
res
.
append
(
" character set "
);
res
.
append
(
field_charset
->
name
);
}
}
uint
Field
::
fill_cache_field
(
CACHE_FIELD
*
copy
)
uint
Field
::
fill_cache_field
(
CACHE_FIELD
*
copy
)
{
{
...
@@ -323,7 +333,7 @@ bool Field::optimize_range(uint idx)
...
@@ -323,7 +333,7 @@ bool Field::optimize_range(uint idx)
void
Field_null
::
sql_type
(
String
&
res
)
const
void
Field_null
::
sql_type
(
String
&
res
)
const
{
{
res
.
set
(
"null"
,
4
,
system_charset_info
);
res
.
copy
(
"null"
,
4
,
my_charset_latin1
,
res
.
charset
()
);
}
}
...
@@ -900,11 +910,13 @@ void Field_decimal::sort_string(char *to,uint length)
...
@@ -900,11 +910,13 @@ void Field_decimal::sort_string(char *to,uint length)
void
Field_decimal
::
sql_type
(
String
&
res
)
const
void
Field_decimal
::
sql_type
(
String
&
res
)
const
{
{
uint
tmp
=
field_length
;
uint
tmp
=
field_length
;
uint
len
;
if
(
!
unsigned_flag
)
if
(
!
unsigned_flag
)
tmp
--
;
tmp
--
;
if
(
dec
)
if
(
dec
)
tmp
--
;
tmp
--
;
sprintf
((
char
*
)
res
.
ptr
(),
"decimal(%d,%d)"
,
tmp
,
dec
);
len
=
sprintf
((
char
*
)
res
.
ptr
(),
"decimal(%d,%d)"
,
tmp
,
dec
);
res
.
length
(
len
);
add_zerofill_and_unsigned
(
res
);
add_zerofill_and_unsigned
(
res
);
}
}
...
@@ -1103,7 +1115,8 @@ void Field_tiny::sort_string(char *to,uint length __attribute__((unused)))
...
@@ -1103,7 +1115,8 @@ void Field_tiny::sort_string(char *to,uint length __attribute__((unused)))
void
Field_tiny
::
sql_type
(
String
&
res
)
const
void
Field_tiny
::
sql_type
(
String
&
res
)
const
{
{
sprintf
((
char
*
)
res
.
ptr
(),
"tinyint(%d)"
,(
int
)
field_length
);
uint
len
=
sprintf
((
char
*
)
res
.
ptr
(),
"tinyint(%d)"
,(
int
)
field_length
);
res
.
length
(
len
);
add_zerofill_and_unsigned
(
res
);
add_zerofill_and_unsigned
(
res
);
}
}
...
@@ -1374,7 +1387,8 @@ void Field_short::sort_string(char *to,uint length __attribute__((unused)))
...
@@ -1374,7 +1387,8 @@ void Field_short::sort_string(char *to,uint length __attribute__((unused)))
void
Field_short
::
sql_type
(
String
&
res
)
const
void
Field_short
::
sql_type
(
String
&
res
)
const
{
{
sprintf
((
char
*
)
res
.
ptr
(),
"smallint(%d)"
,(
int
)
field_length
);
uint
len
=
sprintf
((
char
*
)
res
.
ptr
(),
"smallint(%d)"
,(
int
)
field_length
);
res
.
length
(
len
);
add_zerofill_and_unsigned
(
res
);
add_zerofill_and_unsigned
(
res
);
}
}
...
@@ -1589,7 +1603,8 @@ void Field_medium::sort_string(char *to,uint length __attribute__((unused)))
...
@@ -1589,7 +1603,8 @@ void Field_medium::sort_string(char *to,uint length __attribute__((unused)))
void
Field_medium
::
sql_type
(
String
&
res
)
const
void
Field_medium
::
sql_type
(
String
&
res
)
const
{
{
sprintf
((
char
*
)
res
.
ptr
(),
"mediumint(%d)"
,(
int
)
field_length
);
uint
len
=
sprintf
((
char
*
)
res
.
ptr
(),
"mediumint(%d)"
,(
int
)
field_length
);
res
.
length
(
len
);
add_zerofill_and_unsigned
(
res
);
add_zerofill_and_unsigned
(
res
);
}
}
...
@@ -1850,7 +1865,8 @@ void Field_long::sort_string(char *to,uint length __attribute__((unused)))
...
@@ -1850,7 +1865,8 @@ void Field_long::sort_string(char *to,uint length __attribute__((unused)))
void
Field_long
::
sql_type
(
String
&
res
)
const
void
Field_long
::
sql_type
(
String
&
res
)
const
{
{
sprintf
((
char
*
)
res
.
ptr
(),
"int(%d)"
,(
int
)
field_length
);
uint
len
=
sprintf
((
char
*
)
res
.
ptr
(),
"int(%d)"
,(
int
)
field_length
);
res
.
length
(
len
);
add_zerofill_and_unsigned
(
res
);
add_zerofill_and_unsigned
(
res
);
}
}
...
@@ -2079,7 +2095,8 @@ void Field_longlong::sort_string(char *to,uint length __attribute__((unused)))
...
@@ -2079,7 +2095,8 @@ void Field_longlong::sort_string(char *to,uint length __attribute__((unused)))
void
Field_longlong
::
sql_type
(
String
&
res
)
const
void
Field_longlong
::
sql_type
(
String
&
res
)
const
{
{
sprintf
((
char
*
)
res
.
ptr
(),
"bigint(%d)"
,(
int
)
field_length
);
uint
len
=
sprintf
((
char
*
)
res
.
ptr
(),
"bigint(%d)"
,(
int
)
field_length
);
res
.
length
(
len
);
add_zerofill_and_unsigned
(
res
);
add_zerofill_and_unsigned
(
res
);
}
}
...
@@ -2343,10 +2360,17 @@ bool Field_float::send_binary(Protocol *protocol)
...
@@ -2343,10 +2360,17 @@ bool Field_float::send_binary(Protocol *protocol)
void
Field_float
::
sql_type
(
String
&
res
)
const
void
Field_float
::
sql_type
(
String
&
res
)
const
{
{
uint
len
;
if
(
dec
==
NOT_FIXED_DEC
)
if
(
dec
==
NOT_FIXED_DEC
)
{
strmov
((
char
*
)
res
.
ptr
(),
"float"
);
strmov
((
char
*
)
res
.
ptr
(),
"float"
);
len
=
5
;
}
else
else
sprintf
((
char
*
)
res
.
ptr
(),
"float(%d,%d)"
,(
int
)
field_length
,
dec
);
{
len
=
sprintf
((
char
*
)
res
.
ptr
(),
"float(%d,%d)"
,(
int
)
field_length
,
dec
);
}
res
.
length
(
len
);
add_zerofill_and_unsigned
(
res
);
add_zerofill_and_unsigned
(
res
);
}
}
...
@@ -2595,10 +2619,17 @@ void Field_double::sort_string(char *to,uint length __attribute__((unused)))
...
@@ -2595,10 +2619,17 @@ void Field_double::sort_string(char *to,uint length __attribute__((unused)))
void
Field_double
::
sql_type
(
String
&
res
)
const
void
Field_double
::
sql_type
(
String
&
res
)
const
{
{
uint
len
;
if
(
dec
==
NOT_FIXED_DEC
)
if
(
dec
==
NOT_FIXED_DEC
)
{
strmov
((
char
*
)
res
.
ptr
(),
"double"
);
strmov
((
char
*
)
res
.
ptr
(),
"double"
);
len
=
6
;
}
else
else
sprintf
((
char
*
)
res
.
ptr
(),
"double(%d,%d)"
,(
int
)
field_length
,
dec
);
{
len
=
sprintf
((
char
*
)
res
.
ptr
(),
"double(%d,%d)"
,(
int
)
field_length
,
dec
);
}
res
.
length
(
len
);
add_zerofill_and_unsigned
(
res
);
add_zerofill_and_unsigned
(
res
);
}
}
...
@@ -2929,7 +2960,7 @@ void Field_timestamp::sort_string(char *to,uint length __attribute__((unused)))
...
@@ -2929,7 +2960,7 @@ void Field_timestamp::sort_string(char *to,uint length __attribute__((unused)))
void
Field_timestamp
::
sql_type
(
String
&
res
)
const
void
Field_timestamp
::
sql_type
(
String
&
res
)
const
{
{
res
.
set
(
"timestamp"
,
9
,
default_charset_info
);
res
.
copy
(
"timestamp"
,
9
,
my_charset_latin1
,
res
.
charset
()
);
}
}
...
@@ -3121,7 +3152,7 @@ void Field_time::sort_string(char *to,uint length __attribute__((unused)))
...
@@ -3121,7 +3152,7 @@ void Field_time::sort_string(char *to,uint length __attribute__((unused)))
void
Field_time
::
sql_type
(
String
&
res
)
const
void
Field_time
::
sql_type
(
String
&
res
)
const
{
{
res
.
set
(
"time"
,
4
,
default_charset_info
);
res
.
copy
(
"time"
,
4
,
my_charset_latin1
,
res
.
charset
()
);
}
}
/****************************************************************************
/****************************************************************************
...
@@ -3383,7 +3414,7 @@ void Field_date::sort_string(char *to,uint length __attribute__((unused)))
...
@@ -3383,7 +3414,7 @@ void Field_date::sort_string(char *to,uint length __attribute__((unused)))
void
Field_date
::
sql_type
(
String
&
res
)
const
void
Field_date
::
sql_type
(
String
&
res
)
const
{
{
res
.
set
(
"date"
,
4
,
default_charset_info
);
res
.
copy
(
"date"
,
4
,
my_charset_latin1
,
res
.
charset
()
);
}
}
/****************************************************************************
/****************************************************************************
...
@@ -3546,7 +3577,7 @@ void Field_newdate::sort_string(char *to,uint length __attribute__((unused)))
...
@@ -3546,7 +3577,7 @@ void Field_newdate::sort_string(char *to,uint length __attribute__((unused)))
void
Field_newdate
::
sql_type
(
String
&
res
)
const
void
Field_newdate
::
sql_type
(
String
&
res
)
const
{
{
res
.
set
(
"date"
,
4
,
default_charset_info
);
res
.
copy
(
"date"
,
4
,
my_charset_latin1
,
res
.
charset
()
);
}
}
...
@@ -3770,7 +3801,7 @@ void Field_datetime::sort_string(char *to,uint length __attribute__((unused)))
...
@@ -3770,7 +3801,7 @@ void Field_datetime::sort_string(char *to,uint length __attribute__((unused)))
void
Field_datetime
::
sql_type
(
String
&
res
)
const
void
Field_datetime
::
sql_type
(
String
&
res
)
const
{
{
res
.
set
(
"datetime"
,
8
,
default_charset_info
);
res
.
copy
(
"datetime"
,
8
,
my_charset_latin1
,
res
.
charset
()
);
}
}
/****************************************************************************
/****************************************************************************
...
@@ -3906,14 +3937,8 @@ void Field_string::sql_type(String &res) const
...
@@ -3906,14 +3937,8 @@ void Field_string::sql_type(String &res) const
HA_OPTION_PACK_RECORD
)
?
HA_OPTION_PACK_RECORD
)
?
"varchar"
:
"char"
),
"varchar"
:
"char"
),
(
int
)
field_length
));
(
int
)
field_length
));
res
.
length
((
uint
)
length
);
res
.
length
(
length
);
if
(
binary
())
add_binary_or_charset
(
res
);
res
.
append
(
" binary"
);
else
{
res
.
append
(
" character set "
);
res
.
append
(
field_charset
->
name
);
}
}
}
...
@@ -4104,14 +4129,8 @@ void Field_varstring::sql_type(String &res) const
...
@@ -4104,14 +4129,8 @@ void Field_varstring::sql_type(String &res) const
ulong
length
=
my_sprintf
((
char
*
)
res
.
ptr
(),
ulong
length
=
my_sprintf
((
char
*
)
res
.
ptr
(),
((
char
*
)
res
.
ptr
(),
"varchar(%u)"
,
((
char
*
)
res
.
ptr
(),
"varchar(%u)"
,
field_length
));
field_length
));
res
.
length
((
uint
)
length
);
res
.
length
(
length
);
if
(
binary
())
add_binary_or_charset
(
res
);
res
.
append
(
" binary"
);
else
{
res
.
append
(
" character set "
);
res
.
append
(
field_charset
->
name
);
}
}
}
char
*
Field_varstring
::
pack
(
char
*
to
,
const
char
*
from
,
uint
max_length
)
char
*
Field_varstring
::
pack
(
char
*
to
,
const
char
*
from
,
uint
max_length
)
...
@@ -4985,15 +5004,7 @@ void Field_enum::sql_type(String &res) const
...
@@ -4985,15 +5004,7 @@ void Field_enum::sql_type(String &res) const
flag
=
1
;
flag
=
1
;
}
}
res
.
append
(
')'
);
res
.
append
(
')'
);
if
(
binary
())
add_binary_or_charset
(
res
);
{
res
.
append
(
" binary"
);
}
else
{
res
.
append
(
" character set "
);
res
.
append
(
field_charset
->
name
);
}
}
}
...
@@ -5115,15 +5126,7 @@ void Field_set::sql_type(String &res) const
...
@@ -5115,15 +5126,7 @@ void Field_set::sql_type(String &res) const
flag
=
1
;
flag
=
1
;
}
}
res
.
append
(
')'
);
res
.
append
(
')'
);
if
(
binary
())
add_binary_or_charset
(
res
);
{
res
.
append
(
" binary"
);
}
else
{
res
.
append
(
" character set "
);
res
.
append
(
field_charset
->
name
);
}
}
}
/* returns 1 if the fields are equally defined */
/* returns 1 if the fields are equally defined */
...
...
sql/field.h
View file @
d888e97e
...
@@ -262,6 +262,7 @@ class Field_str :public Field {
...
@@ -262,6 +262,7 @@ class Field_str :public Field {
unireg_check_arg
,
field_name_arg
,
table_arg
)
unireg_check_arg
,
field_name_arg
,
table_arg
)
{
field_charset
=
charset
;
}
{
field_charset
=
charset
;
}
Item_result
result_type
()
const
{
return
STRING_RESULT
;
}
Item_result
result_type
()
const
{
return
STRING_RESULT
;
}
void
add_binary_or_charset
(
String
&
res
)
const
;
uint
decimals
()
const
{
return
NOT_FIXED_DEC
;
}
uint
decimals
()
const
{
return
NOT_FIXED_DEC
;
}
void
make_field
(
Send_field
*
);
void
make_field
(
Send_field
*
);
uint
size_of
()
const
{
return
sizeof
(
*
this
);
}
uint
size_of
()
const
{
return
sizeof
(
*
this
);
}
...
...
sql/sql_show.cc
View file @
d888e97e
...
@@ -713,7 +713,7 @@ mysqld_show_fields(THD *thd, TABLE_LIST *table_list,const char *wild,
...
@@ -713,7 +713,7 @@ mysqld_show_fields(THD *thd, TABLE_LIST *table_list,const char *wild,
{
{
byte
*
pos
;
byte
*
pos
;
uint
flags
=
field
->
flags
;
uint
flags
=
field
->
flags
;
String
type
(
tmp
,
sizeof
(
tmp
),
default_charset_info
);
String
type
(
tmp
,
sizeof
(
tmp
),
current_thd
->
thd_charset
);
uint
col_access
;
uint
col_access
;
bool
null_default_value
=
0
;
bool
null_default_value
=
0
;
...
...
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