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
950a0005
Commit
950a0005
authored
Jun 06, 2006
by
igor@rurik.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some problems for Windows build
parent
19e312af
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
1 deletion
+10
-1
VC++Files/client/mysql.dsp
VC++Files/client/mysql.dsp
+4
-0
VC++Files/client/mysql_ia64.dsp
VC++Files/client/mysql_ia64.dsp
+4
-0
client/mysqldump.c
client/mysqldump.c
+2
-1
No files found.
VC++Files/client/mysql.dsp
View file @
950a0005
...
...
@@ -144,6 +144,10 @@ SOURCE=.\readline.cpp
# End Source File
# Begin Source File
SOURCE=..\mysys\my_conio.c
# End Source File
# Begin Source File
SOURCE=.\sql_string.cpp
# End Source File
# End Target
...
...
VC++Files/client/mysql_ia64.dsp
View file @
950a0005
...
...
@@ -130,6 +130,10 @@ SOURCE=.\readline.cpp
# End Source File
# Begin Source File
SOURCE=..\mysys\my_conio.c
# End Source File
# Begin Source File
SOURCE=.\sql_string.cpp
# End Source File
# End Target
...
...
client/mysqldump.c
View file @
950a0005
...
...
@@ -2222,6 +2222,7 @@ static int dump_all_tables_in_db(char *database)
static
char
*
get_actual_table_name
(
const
char
*
old_table_name
,
MEM_ROOT
*
root
)
{
char
*
name
=
0
;
ulong
*
lengths
;
MYSQL_RES
*
tableRes
;
MYSQL_ROW
row
;
char
query
[
50
+
2
*
NAME_LEN
];
...
...
@@ -2246,7 +2247,7 @@ static char *get_actual_table_name(const char *old_table_name, MEM_ROOT *root)
if
(
numRows
>
0
)
{
row
=
mysql_fetch_row
(
tableRes
);
ulong
*
lengths
=
mysql_fetch_lengths
(
tableRes
);
lengths
=
mysql_fetch_lengths
(
tableRes
);
name
=
strmake_root
(
root
,
row
[
0
],
lengths
[
0
]);
}
mysql_free_result
(
tableRes
);
...
...
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