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
a1a308d3
Commit
a1a308d3
authored
Nov 06, 2001
by
jani@hynda.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a bug in mysql.cc
parent
25612333
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
client/mysql.cc
client/mysql.cc
+4
-2
No files found.
client/mysql.cc
View file @
a1a308d3
...
...
@@ -38,7 +38,7 @@
#include <signal.h>
#include <violite.h>
const
char
*
VER
=
"11.1
6
"
;
const
char
*
VER
=
"11.1
7
"
;
/* Don't try to make a nice table if the data is too big */
#define MAX_COLUMN_LENGTH 1024
...
...
@@ -129,6 +129,7 @@ static String glob_buffer,old_buffer;
static
int
wait_time
=
5
;
static
STATUS
status
;
static
ulong
select_limit
,
max_join_size
,
opt_connect_timeout
=
0
;
char
mysql_charsets_dir
[
FN_REFLEN
+
1
];
static
const
char
*
xmlmeta
[]
=
{
"&"
,
"&"
,
"<"
,
"<"
,
...
...
@@ -609,7 +610,8 @@ static int get_options(int argc, char **argv)
default_charset
=
optarg
;
break
;
case
OPT_CHARSETS_DIR
:
charsets_dir
=
optarg
;
strmov
(
mysql_charsets_dir
,
optarg
);
charsets_dir
=
mysql_charsets_dir
;
break
;
case
OPT_TEE
:
if
(
!
opt_outfile
&&
strlen
(
optarg
))
...
...
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