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
8a9b1e92
Commit
8a9b1e92
authored
Jan 22, 2001
by
monty@donna.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed type in make_binary_distribution.sh
Don't convert field names in mysql_list_fields
parent
b69ac003
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
Docs/manual.texi
Docs/manual.texi
+3
-0
scripts/make_binary_distribution.sh
scripts/make_binary_distribution.sh
+1
-1
sql/sql_base.cc
sql/sql_base.cc
+4
-1
No files found.
Docs/manual.texi
View file @
8a9b1e92
...
...
@@ -40712,6 +40712,9 @@ not yet 100 % confident in this code.
@appendixsubsec Changes in release 3.23.32
@itemize @bullet
@item
Don't convert field names when using @code{mysql_list_fields()}. This is
to keep this code compatible with @code{SHOW FIELDS}.
@item
@code{MERGE} tables didn't work on windows.
@item
Fixed problem with @code{SET PASSWORD=...} on windows.
scripts/make_binary_distribution.sh
View file @
8a9b1e92
...
...
@@ -87,7 +87,7 @@ for i in libmysql/.libs/libmysqlclient.a libmysql/.libs/libmysqlclient.so* libmy
do
if
[
-f
$i
]
then
cp
-p
$i
$BASE
/
bin
cp
-p
$i
$BASE
/
lib
fi
done
...
...
sql/sql_base.cc
View file @
8a9b1e92
...
...
@@ -185,6 +185,9 @@ query_table_status(THD *thd,const char *db,const char *table_name)
/******************************************************************************
** Send name and type of result to client.
** Sum fields has table name empty and field_name.
** flag is a bit mask with the following functions:
** 1 send number of rows
** 2 send default values; Don't convert field names
******************************************************************************/
bool
...
...
@@ -193,7 +196,7 @@ send_fields(THD *thd,List<Item> &list,uint flag)
List_iterator
<
Item
>
it
(
list
);
Item
*
item
;
char
buff
[
80
];
CONVERT
*
convert
=
thd
->
convert_set
;
CONVERT
*
convert
=
(
flag
&
2
)
?
(
CONVERT
*
)
0
:
thd
->
convert_set
;
String
tmp
((
char
*
)
buff
,
sizeof
(
buff
)),
*
res
,
*
packet
=
&
thd
->
packet
;
...
...
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