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
b7824315
Commit
b7824315
authored
Jan 27, 2005
by
ram@gw.mysql.r18.ru
Browse files
Options
Browse Files
Download
Plain Diff
Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-4.1
into gw.mysql.r18.ru:/usr/home/ram/work/4.1
parents
90fe2656
7f6fca4c
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
2 deletions
+6
-2
include/my_global.h
include/my_global.h
+4
-0
sql/mysql_priv.h
sql/mysql_priv.h
+1
-1
sql/mysqld.cc
sql/mysqld.cc
+1
-1
No files found.
include/my_global.h
View file @
b7824315
...
...
@@ -530,7 +530,11 @@ typedef SOCKET_SIZE_TYPE size_socket;
#define FN_LEN 256
/* Max file name len */
#define FN_HEADLEN 253
/* Max length of filepart of file name */
#define FN_EXTLEN 20
/* Max length of extension (part of FN_LEN) */
#ifdef PATH_MAX
#define FN_REFLEN PATH_MAX
/* Max length of full path-name */
#else
#define FN_REFLEN 512
/* Max length of full path-name */
#endif
#define FN_EXTCHAR '.'
#define FN_HOMELIB '~'
/* ~/ is used as abbrev for home dir */
#define FN_CURLIB '.'
/* ./ is used as abbrev for current dir */
...
...
sql/mysql_priv.h
View file @
b7824315
...
...
@@ -852,7 +852,7 @@ extern Gt_creator gt_creator;
extern
Lt_creator
lt_creator
;
extern
Ge_creator
ge_creator
;
extern
Le_creator
le_creator
;
extern
char
language
[
LIBLEN
],
reg_ext
[
FN_EXTLEN
];
extern
char
language
[
FN_REFLEN
],
reg_ext
[
FN_EXTLEN
];
extern
char
glob_hostname
[
FN_REFLEN
],
mysql_home
[
FN_REFLEN
];
extern
char
pidfile_name
[
FN_REFLEN
],
system_time_zone
[
30
],
*
opt_init_file
;
extern
char
log_error_file
[
FN_REFLEN
];
...
...
sql/mysqld.cc
View file @
b7824315
...
...
@@ -340,7 +340,7 @@ char *default_tz_name;
char
log_error_file
[
FN_REFLEN
],
glob_hostname
[
FN_REFLEN
];
char
*
log_error_file_ptr
=
log_error_file
;
char
mysql_real_data_home
[
FN_REFLEN
],
language
[
LIBLEN
],
reg_ext
[
FN_EXTLEN
],
mysql_charsets_dir
[
FN_REFLEN
],
language
[
FN_REFLEN
],
reg_ext
[
FN_EXTLEN
],
mysql_charsets_dir
[
FN_REFLEN
],
*
mysqld_user
,
*
mysqld_chroot
,
*
opt_init_file
,
*
opt_init_connect
,
*
opt_init_slave
,
def_ft_boolean_syntax
[
sizeof
(
ft_boolean_syntax
)];
...
...
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