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
070dc3ff
Commit
070dc3ff
authored
Oct 10, 2007
by
tsmith@ramayana.hindu.god
Browse files
Options
Browse Files
Download
Plain Diff
Merge ramayana.hindu.god:/home/tsmith/m/bk/50
into ramayana.hindu.god:/home/tsmith/m/bk/maint/50
parents
ced64f85
82767a0a
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
33 additions
and
5 deletions
+33
-5
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+1
-0
mysys/mf_tempfile.c
mysys/mf_tempfile.c
+14
-0
ndb/test/ndbapi/testScanFilter.cpp
ndb/test/ndbapi/testScanFilter.cpp
+7
-5
scripts/mysql_install_db.sh
scripts/mysql_install_db.sh
+9
-0
scripts/mysql_system_tables_data.sql
scripts/mysql_system_tables_data.sql
+2
-0
No files found.
mysql-test/mysql-test-run.pl
View file @
070dc3ff
...
...
@@ -3060,6 +3060,7 @@ sub install_db ($$) {
mtr_appendfile_to_file
("
$path_sql_dir
/fill_help_tables.sql
",
$bootstrap_sql_file
);
# Remove anonymous users
mtr_tofile
(
$bootstrap_sql_file
,
"
DELETE FROM mysql.user where user= '';
");
...
...
mysys/mf_tempfile.c
View file @
070dc3ff
...
...
@@ -59,11 +59,25 @@ File create_temp_file(char *to, const char *dir, const char *prefix,
myf
MyFlags
__attribute__
((
unused
)))
{
File
file
=
-
1
;
#ifdef __WIN__
TCHAR
path_buf
[
MAX_PATH
-
14
];
#endif
DBUG_ENTER
(
"create_temp_file"
);
DBUG_PRINT
(
"enter"
,
(
"dir: %s, prefix: %s"
,
dir
,
prefix
));
#if defined (__WIN__)
/*
Use GetTempPath to determine path for temporary files.
This is because the documentation for GetTempFileName
has the following to say about this parameter:
"If this parameter is NULL, the function fails."
*/
if
(
!
dir
)
{
if
(
GetTempPath
(
sizeof
(
path_buf
),
path_buf
)
>
0
)
dir
=
path_buf
;
}
/*
Use GetTempFileName to generate a unique filename, create
the file and release it's handle
...
...
ndb/test/ndbapi/testScanFilter.cpp
View file @
070dc3ff
...
...
@@ -772,18 +772,20 @@ void ndbapi_tuples(Ndb *ndb, char *str, bool *res)
* str: a random string of scan opearation and condition
* return: true stands for ndbapi ok, false stands for ndbapi failed
*/
template
class
Vector
<
bool
>;
bool
compare_cal_ndb
(
char
*
str
,
Ndb
*
ndb
)
{
bool
res_cal
[
TUPLE_NUM
],
res_ndb
[
TUPLE_NUM
];
Vector
<
bool
>
res_cal
;
Vector
<
bool
>
res_ndb
;
for
(
int
i
=
0
;
i
<
TUPLE_NUM
;
i
++
)
{
res_cal
[
i
]
=
false
;
res_ndb
[
i
]
=
false
;
res_cal
.
push_back
(
false
)
;
res_ndb
.
push_back
(
false
)
;
}
check_all_tuples
(
str
,
res_cal
);
ndbapi_tuples
(
ndb
,
str
,
res_ndb
);
check_all_tuples
(
str
,
res_cal
.
getBase
()
);
ndbapi_tuples
(
ndb
,
str
,
res_ndb
.
getBase
()
);
for
(
int
i
=
0
;
i
<
TUPLE_NUM
;
i
++
)
{
...
...
scripts/mysql_install_db.sh
View file @
070dc3ff
...
...
@@ -371,7 +371,16 @@ then
echo
"To do so, start the server, then issue the following commands:"
echo
"
$bindir
/mysqladmin -u root password 'new-password'"
echo
"
$bindir
/mysqladmin -u root -h
$hostname
password 'new-password'"
echo
echo
"Alternatively you can run:"
echo
"
$bindir
/mysql_secure_installation"
echo
echo
"which will also give you the option of removing the test"
echo
"databases and anonymous user created by default. This is"
echo
"strongly recommended for production servers."
echo
echo
"See the manual for more instructions."
echo
if
test
"
$in_rpm
"
-eq
0
then
...
...
scripts/mysql_system_tables_data.sql
View file @
070dc3ff
...
...
@@ -18,5 +18,7 @@ INSERT INTO tmp_user VALUES ('localhost','root','','Y','Y','Y','Y','Y','Y','Y','
set
@
hostname
=
@@
hostname
;
REPLACE
INTO
tmp_user
VALUES
(
@
hostname
,
'root'
,
''
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
''
,
''
,
''
,
''
,
0
,
0
,
0
,
0
);
REPLACE
INTO
tmp_user
VALUES
(
'127.0.0.1'
,
'root'
,
''
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
'Y'
,
''
,
''
,
''
,
''
,
0
,
0
,
0
,
0
);
INSERT
INTO
tmp_user
(
host
,
user
)
VALUES
(
'localhost'
,
''
);
INSERT
INTO
tmp_user
(
host
,
user
)
VALUES
(
@@
hostname
,
''
);
INSERT
INTO
user
SELECT
*
FROM
tmp_user
WHERE
@
had_user_table
=
0
;
DROP
TABLE
tmp_user
;
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