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
1afbe4fe
Commit
1afbe4fe
authored
Apr 17, 2001
by
monty@donna.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
The environment variable PAGER is now used as the default pager
Fixed bug with float columns
parent
ac77076f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
4 deletions
+14
-4
Docs/manual.texi
Docs/manual.texi
+3
-0
client/mysql.cc
client/mysql.cc
+6
-1
sql/field.cc
sql/field.cc
+5
-3
No files found.
Docs/manual.texi
View file @
1afbe4fe
...
...
@@ -2376,6 +2376,9 @@ Apart from the following links, you can find and download a lot of
@subheading Tutorials and Manuals
@table @asis
@item @uref{http://netgraft.com/~mbac/research/mysqlmyths.html, MySQL Myths Debunked}
@strong{MySQL} used in the real world.
@item @uref{http://www.4t2.com/mysql}
Information about the German MySQL mailing list.
client/mysql.cc
View file @
1afbe4fe
...
...
@@ -39,7 +39,7 @@
#include "my_readline.h"
#include <signal.h>
const
char
*
VER
=
"11.1
4
"
;
const
char
*
VER
=
"11.1
5
"
;
/* Don't try to make a nice table if the data is too big */
#define MAX_COLUMN_LENGTH 1024
...
...
@@ -269,6 +269,11 @@ int main(int argc,char *argv[])
strmov
(
outfile
,
"
\0
"
);
// no (default) outfile, unless given at least once
strmov
(
pager
,
"stdout"
);
// the default, if --pager wasn't given
{
char
*
tmp
=
getenv
(
"PAGER"
);
if
(
tmp
)
strmov
(
default_pager
,
tmp
);
}
if
(
!
isatty
(
0
)
||
!
isatty
(
1
))
{
status
.
batch
=
1
;
opt_silent
=
1
;
...
...
sql/field.cc
View file @
1afbe4fe
...
...
@@ -1791,7 +1791,8 @@ String *Field_float::val_str(String *val_buffer,
#endif
memcpy_fixed
((
byte
*
)
&
nr
,
ptr
,
sizeof
(
nr
));
val_buffer
->
alloc
(
max
(
field_length
,
70
));
uint
to_length
=
max
(
field_length
,
70
);
val_buffer
->
alloc
(
to_length
);
char
*
to
=
(
char
*
)
val_buffer
->
ptr
();
if
(
dec
>=
NOT_FIXED_DEC
)
...
...
@@ -1841,8 +1842,9 @@ String *Field_float::val_str(String *val_buffer,
while
(
tmp_dec
--
)
*
to
++=
*
pos
++
;
#else
#ifdef HAVE_SNPRINTF_
sprintf
(
to
,
val_buffer
->
length
(),
"%.*f"
,
dec
,
nr
);
#ifdef HAVE_SNPRINTF
to
[
to_length
-
1
]
=
0
;
// Safety
snprintf
(
to
,
to_length
-
1
,
"%.*f"
,
dec
,
nr
);
#else
sprintf
(
to
,
"%.*f"
,
dec
,
nr
);
#endif
...
...
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