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
7eb8c130
Commit
7eb8c130
authored
Feb 17, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge
parents
613e09a9
3c700572
Changes
25
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
530 additions
and
190 deletions
+530
-190
BitKeeper/triggers/post-commit
BitKeeper/triggers/post-commit
+7
-0
cmd-line-utils/readline/bind.c
cmd-line-utils/readline/bind.c
+1
-1
mysql-test/r/ctype_sjis.result
mysql-test/r/ctype_sjis.result
+4
-0
mysql-test/r/lowercase_table2.result
mysql-test/r/lowercase_table2.result
+18
-0
mysql-test/r/lowercase_table_grant.result
mysql-test/r/lowercase_table_grant.result
+23
-0
mysql-test/r/skip_name_resolve.result
mysql-test/r/skip_name_resolve.result
+7
-0
mysql-test/r/system_mysql_db.result
mysql-test/r/system_mysql_db.result
+61
-61
mysql-test/r/variables.result
mysql-test/r/variables.result
+5
-0
mysql-test/t/ctype_sjis.test
mysql-test/t/ctype_sjis.test
+7
-0
mysql-test/t/lowercase_table2.test
mysql-test/t/lowercase_table2.test
+17
-0
mysql-test/t/lowercase_table_grant-master.opt
mysql-test/t/lowercase_table_grant-master.opt
+1
-0
mysql-test/t/lowercase_table_grant.test
mysql-test/t/lowercase_table_grant.test
+25
-0
mysql-test/t/skip_name_resolve-master.opt
mysql-test/t/skip_name_resolve-master.opt
+1
-0
mysql-test/t/skip_name_resolve.test
mysql-test/t/skip_name_resolve.test
+5
-0
mysql-test/t/variables.test
mysql-test/t/variables.test
+8
-0
mysys/charset.c
mysys/charset.c
+17
-0
scripts/mysql_create_system_tables.sh
scripts/mysql_create_system_tables.sh
+62
-62
scripts/mysql_fix_privilege_tables.sql
scripts/mysql_fix_privilege_tables.sql
+127
-57
sql/mysql_priv.h
sql/mysql_priv.h
+1
-1
sql/set_var.cc
sql/set_var.cc
+6
-0
sql/set_var.h
sql/set_var.h
+1
-0
sql/sql_acl.cc
sql/sql_acl.cc
+39
-1
sql/sql_base.cc
sql/sql_base.cc
+11
-1
sql/sql_lex.cc
sql/sql_lex.cc
+27
-6
tests/mysql_client_test.c
tests/mysql_client_test.c
+49
-0
No files found.
BitKeeper/triggers/post-commit
View file @
7eb8c130
...
...
@@ -19,6 +19,13 @@ BK_STATUS=$BK_STATUS$BK_COMMIT
if
[
"
$BK_STATUS
"
=
OK
]
then
HAS_ACTUAL_CHANGES
=
`
bk cset
-r
+
-d
|
grep
-v
"^#"
`
if
[
"
$HAS_ACTUAL_CHANGES
"
=
""
]
then
echo
ChangeSet had no real changes, not sending emails
exit
fi
CHANGESET
=
`
bk
-R
prs
-r
+
-h
-d
':P:::I:'
ChangeSet
`
BUG
=
`
bk
-R
prs
-r
+
-h
-d
':C:'
ChangeSet |
sed
-ne
's/^.*[Bb][Uu][Gg] *# *\([0-9][0-9]*\).*$/\1/p'
`
WL
=
`
bk
-R
prs
-r
+
-h
-d
':C:'
ChangeSet |
sed
-ne
's/^.*[Ww][Ll] *# *\([0-9][0-9]*\).*$/ WL#\1/p'
`
...
...
cmd-line-utils/readline/bind.c
View file @
7eb8c130
...
...
@@ -311,7 +311,7 @@ rl_generic_bind (type, keyseq, data, map)
mapped to something, `abc' to be mapped to something else,
and the function bound to `a' to be executed when the user
types `abx', leaving `bx' in the input queue. */
if
(
k
.
function
/* && k.type == ISFUNC */
)
if
(
k
.
function
&&
((
k
.
type
==
ISFUNC
&&
k
.
function
!=
rl_do_lowercase_version
)
||
k
.
type
==
ISMACR
)
)
{
map
[
ANYOTHERKEY
]
=
k
;
k
.
function
=
0
;
...
...
mysql-test/r/ctype_sjis.result
View file @
7eb8c130
...
...
@@ -91,3 +91,7 @@ sjis_bin 6109
sjis_bin 61
sjis_bin 6120
drop table t1;
SET NAMES sjis;
SELECT HEX('佐淘 \圭') FROM DUAL;
HEX('佐淘 \圭')
8DB2939181408C5C
mysql-test/r/lowercase_table2.result
View file @
7eb8c130
...
...
@@ -141,3 +141,21 @@ select * from T1;
a b
1 abc
drop table T1;
create database mysqltest_LC2;
use mysqltest_LC2;
create table myUC (i int);
insert into myUC values (1),(2),(3);
select * from myUC;
i
1
2
3
use test;
drop database mysqltest_LC2;
create database mysqltest_LC2;
use mysqltest_LC2;
create table myUC (i int);
select * from myUC;
i
use test;
drop database mysqltest_LC2;
mysql-test/r/lowercase_table_grant.result
0 → 100644
View file @
7eb8c130
use mysql;
create database MYSQLtest;
grant all on MySQLtest.* to mysqltest_1@localhost;
show grants for mysqltest_1@localhost;
Grants for mysqltest_1@localhost
GRANT USAGE ON *.* TO 'mysqltest_1'@'localhost'
GRANT ALL PRIVILEGES ON `mysqltest`.* TO 'mysqltest_1'@'localhost'
select * from db where user = 'mysqltest_1';
Host Db User Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Grant_priv References_priv Index_priv Alter_priv Create_tmp_table_priv Lock_tables_priv
localhost mysqltest mysqltest_1 Y Y Y Y Y Y N Y Y Y Y Y
update db set db = 'MYSQLtest' where db = 'mysqltest' and user = 'mysqltest_1' and host = 'localhost';
flush privileges;
show grants for mysqltest_1@localhost;
Grants for mysqltest_1@localhost
GRANT USAGE ON *.* TO 'mysqltest_1'@'localhost'
GRANT ALL PRIVILEGES ON `mysqltest`.* TO 'mysqltest_1'@'localhost'
select * from db where user = 'mysqltest_1';
Host Db User Select_priv Insert_priv Update_priv Delete_priv Create_priv Drop_priv Grant_priv References_priv Index_priv Alter_priv Create_tmp_table_priv Lock_tables_priv
localhost MYSQLtest mysqltest_1 Y Y Y Y Y Y N Y Y Y Y Y
delete from db where db = 'MYSQLtest' and user = 'mysqltest_1' and host = 'localhost';
flush privileges;
drop user mysqltest_1@localhost;
drop database MYSQLtest;
mysql-test/r/skip_name_resolve.result
0 → 100644
View file @
7eb8c130
GRANT ALL ON test.* TO mysqltest_1@'127.0.0.1/255.255.255.255';
SHOW GRANTS FOR mysqltest_1@'127.0.0.1/255.255.255.255';
Grants for mysqltest_1@127.0.0.1/255.255.255.255
GRANT USAGE ON *.* TO 'mysqltest_1'@'127.0.0.1/255.255.255.255'
GRANT ALL PRIVILEGES ON `test`.* TO 'mysqltest_1'@'127.0.0.1/255.255.255.255'
REVOKE ALL ON test.* FROM mysqltest_1@'127.0.0.1/255.255.255.255';
DROP USER mysqltest_1@'127.0.0.1/255.255.255.255';
mysql-test/r/system_mysql_db.result
View file @
7eb8c130
This diff is collapsed.
Click to expand it.
mysql-test/r/variables.result
View file @
7eb8c130
...
...
@@ -515,3 +515,8 @@ SET GLOBAL MYISAM_DATA_POINTER_SIZE= 8;
SHOW VARIABLES LIKE 'MYISAM_DATA_POINTER_SIZE';
Variable_name Value
myisam_data_pointer_size 8
SET GLOBAL table_cache=-1;
SHOW VARIABLES LIKE 'table_cache';
Variable_name Value
table_cache 1
SET GLOBAL table_cache=DEFAULT;
mysql-test/t/ctype_sjis.test
View file @
7eb8c130
...
...
@@ -68,3 +68,10 @@ SET collation_connection='sjis_japanese_ci';
--
source
include
/
ctype_filesort
.
inc
SET
collation_connection
=
'sjis_bin'
;
--
source
include
/
ctype_filesort
.
inc
# Check parsing of string literals in SJIS with multibyte characters that
# have an embedded \ in them. (Bug #8303)
--
character_set
sjis
SET
NAMES
sjis
;
SELECT
HEX
(
'@\\'
)
FROM
DUAL
;
mysql-test/t/lowercase_table2.test
View file @
7eb8c130
...
...
@@ -111,3 +111,20 @@ select * from T1;
alter
table
T1
add
index
(
a
);
select
*
from
T1
;
drop
table
T1
;
#
# Bug #8355: Tables not dropped from table cache on drop db
#
create
database
mysqltest_LC2
;
use
mysqltest_LC2
;
create
table
myUC
(
i
int
);
insert
into
myUC
values
(
1
),(
2
),(
3
);
select
*
from
myUC
;
use
test
;
drop
database
mysqltest_LC2
;
create
database
mysqltest_LC2
;
use
mysqltest_LC2
;
create
table
myUC
(
i
int
);
select
*
from
myUC
;
use
test
;
drop
database
mysqltest_LC2
;
mysql-test/t/lowercase_table_grant-master.opt
0 → 100644
View file @
7eb8c130
--lower_case_table_names
mysql-test/t/lowercase_table_grant.test
0 → 100644
View file @
7eb8c130
# Test of grants when lower_case_table_names is on
use
mysql
;
# mixed-case database name for testing
create
database
MYSQLtest
;
# check that database name gets forced to lowercase
grant
all
on
MySQLtest
.*
to
mysqltest_1
@
localhost
;
show
grants
for
mysqltest_1
@
localhost
;
# now force it to mixed case, but see that it is lowercased in the acl cache
select
*
from
db
where
user
=
'mysqltest_1'
;
update
db
set
db
=
'MYSQLtest'
where
db
=
'mysqltest'
and
user
=
'mysqltest_1'
and
host
=
'localhost'
;
flush
privileges
;
show
grants
for
mysqltest_1
@
localhost
;
select
*
from
db
where
user
=
'mysqltest_1'
;
# clear out the user we created
#
# can't use REVOKE because of the mixed-case database name
delete
from
db
where
db
=
'MYSQLtest'
and
user
=
'mysqltest_1'
and
host
=
'localhost'
;
flush
privileges
;
drop
user
mysqltest_1
@
localhost
;
drop
database
MYSQLtest
;
mysql-test/t/skip_name_resolve-master.opt
0 → 100644
View file @
7eb8c130
--skip-name-resolve
mysql-test/t/skip_name_resolve.test
0 → 100644
View file @
7eb8c130
# Bug #8471: IP address with mask fail when skip-name-resolve is on
GRANT
ALL
ON
test
.*
TO
mysqltest_1
@
'127.0.0.1/255.255.255.255'
;
SHOW
GRANTS
FOR
mysqltest_1
@
'127.0.0.1/255.255.255.255'
;
REVOKE
ALL
ON
test
.*
FROM
mysqltest_1
@
'127.0.0.1/255.255.255.255'
;
DROP
USER
mysqltest_1
@
'127.0.0.1/255.255.255.255'
;
mysql-test/t/variables.test
View file @
7eb8c130
...
...
@@ -380,3 +380,11 @@ drop table t1;
SET
GLOBAL
MYISAM_DATA_POINTER_SIZE
=
8
;
SHOW
VARIABLES
LIKE
'MYISAM_DATA_POINTER_SIZE'
;
#
# Bug #6958: negative arguments to integer options wrap around
#
SET
GLOBAL
table_cache
=-
1
;
SHOW
VARIABLES
LIKE
'table_cache'
;
SET
GLOBAL
table_cache
=
DEFAULT
;
mysys/charset.c
View file @
7eb8c130
...
...
@@ -581,6 +581,23 @@ ulong escape_string_for_mysql(CHARSET_INFO *charset_info, char *to,
from
--
;
continue
;
}
/*
If the next character appears to begin a multi-byte character, we
escape that first byte of that apparent multi-byte character. (The
character just looks like a multi-byte character -- if it were actually
a multi-byte character, it would have been passed through in the test
above.)
Without this check, we can create a problem by converting an invalid
multi-byte character into a valid one. For example, 0xbf27 is not
a valid GBK character, but 0xbf5c is. (0x27 = ', 0x5c = \)
*/
if
(
use_mb_flag
&&
(
l
=
my_mbcharlen
(
charset_info
,
*
from
))
>
1
)
{
*
to
++=
'\\'
;
*
to
++=
*
from
;
continue
;
}
#endif
switch
(
*
from
)
{
case
0
:
/* Must be escaped for 'mysql' */
...
...
scripts/mysql_create_system_tables.sh
View file @
7eb8c130
This diff is collapsed.
Click to expand it.
scripts/mysql_fix_privilege_tables.sql
View file @
7eb8c130
This diff is collapsed.
Click to expand it.
sql/mysql_priv.h
View file @
7eb8c130
...
...
@@ -867,7 +867,7 @@ bool close_temporary_table(THD *thd, const char *db, const char *table_name);
void
close_temporary
(
TABLE
*
table
,
bool
delete_table
=
1
);
bool
rename_temporary_table
(
THD
*
thd
,
TABLE
*
table
,
const
char
*
new_db
,
const
char
*
table_name
);
void
remove_db_from_cache
(
const
my_string
db
);
void
remove_db_from_cache
(
const
char
*
db
);
void
flush_tables
();
bool
remove_table_from_cache
(
THD
*
thd
,
const
char
*
db
,
const
char
*
table
,
bool
return_if_owned_by_thd
=
0
);
...
...
sql/set_var.cc
View file @
7eb8c130
...
...
@@ -1309,6 +1309,12 @@ static void fix_server_id(THD *thd, enum_var_type type)
server_id_supplied
=
1
;
}
bool
sys_var_long_ptr
::
check
(
THD
*
thd
,
set_var
*
var
)
{
longlong
v
=
var
->
value
->
val_int
();
var
->
save_result
.
ulonglong_value
=
v
<
0
?
0
:
v
;
return
0
;
}
bool
sys_var_long_ptr
::
update
(
THD
*
thd
,
set_var
*
var
)
{
...
...
sql/set_var.h
View file @
7eb8c130
...
...
@@ -87,6 +87,7 @@ public:
sys_var_long_ptr
(
const
char
*
name_arg
,
ulong
*
value_ptr
,
sys_after_update_func
func
)
:
sys_var
(
name_arg
,
func
),
value
(
value_ptr
)
{}
bool
check
(
THD
*
thd
,
set_var
*
var
);
bool
update
(
THD
*
thd
,
set_var
*
var
);
void
set_default
(
THD
*
thd
,
enum_var_type
type
);
SHOW_TYPE
type
()
{
return
SHOW_LONG
;
}
...
...
sql/sql_acl.cc
View file @
7eb8c130
...
...
@@ -141,6 +141,8 @@ my_bool acl_init(THD *org_thd, bool dont_read_acl_tables)
MYSQL_LOCK
*
lock
;
my_bool
return_val
=
1
;
bool
check_no_resolve
=
specialflag
&
SPECIAL_NO_RESOLVE
;
char
tmp_name
[
NAME_LEN
+
1
];
DBUG_ENTER
(
"acl_init"
);
if
(
!
acl_cache
)
...
...
@@ -199,6 +201,24 @@ my_bool acl_init(THD *org_thd, bool dont_read_acl_tables)
ACL_HOST
host
;
update_hostname
(
&
host
.
host
,
get_field
(
&
mem
,
table
->
field
[
0
]));
host
.
db
=
get_field
(
&
mem
,
table
->
field
[
1
]);
if
(
lower_case_table_names
)
{
/*
We make a temporary copy of the database, force it to lower case,
and then copy it back over the original name. We can't just update
the host.db pointer, because tmp_name is allocated on the stack.
*/
(
void
)
strmov
(
tmp_name
,
host
.
db
);
my_casedn_str
(
files_charset_info
,
tmp_name
);
if
(
strcmp
(
host
.
db
,
tmp_name
)
!=
0
)
{
sql_print_warning
(
"'host' entry '%s|%s' had database in mixed "
"case that has been forced to lowercase because "
"lower_case_table_names is set."
,
host
.
host
.
hostname
,
host
.
db
);
(
void
)
strmov
(
host
.
db
,
tmp_name
);
}
}
host
.
access
=
get_access
(
table
,
2
);
host
.
access
=
fix_rights_for_db
(
host
.
access
);
host
.
sort
=
get_sort
(
2
,
host
.
host
.
hostname
,
host
.
db
);
...
...
@@ -409,6 +429,24 @@ my_bool acl_init(THD *org_thd, bool dont_read_acl_tables)
}
db
.
access
=
get_access
(
table
,
3
);
db
.
access
=
fix_rights_for_db
(
db
.
access
);
if
(
lower_case_table_names
)
{
/*
We make a temporary copy of the database, force it to lower case,
and then copy it back over the original name. We can't just update
the db.db pointer, because tmp_name is allocated on the stack.
*/
(
void
)
strmov
(
tmp_name
,
db
.
db
);
my_casedn_str
(
files_charset_info
,
tmp_name
);
if
(
strcmp
(
db
.
db
,
tmp_name
)
!=
0
)
{
sql_print_warning
(
"'db' entry '%s %s@%s' had database in mixed "
"case that has been forced to lowercase because "
"lower_case_table_names is set."
,
db
.
db
,
db
.
user
,
db
.
host
.
hostname
,
db
.
host
.
hostname
);
(
void
)
strmov
(
db
.
db
,
tmp_name
);
}
}
db
.
sort
=
get_sort
(
3
,
db
.
host
.
hostname
,
db
.
db
,
db
.
user
);
#ifndef TO_BE_REMOVED
if
(
table
->
s
->
fields
<=
9
)
...
...
@@ -1447,7 +1485,7 @@ bool hostname_requires_resolving(const char *hostname)
return
FALSE
;
for
(;
(
cur
=*
hostname
);
hostname
++
)
{
if
((
cur
!=
'%'
)
&&
(
cur
!=
'_'
)
&&
(
cur
!=
'.'
)
&&
if
((
cur
!=
'%'
)
&&
(
cur
!=
'_'
)
&&
(
cur
!=
'.'
)
&&
(
cur
!=
'/'
)
&&
((
cur
<
'0'
)
||
(
cur
>
'9'
)))
return
TRUE
;
}
...
...
sql/sql_base.cc
View file @
7eb8c130
...
...
@@ -3586,8 +3586,18 @@ static void mysql_rm_tmp_tables(void)
** and afterwards delete those marked unused.
*/
void
remove_db_from_cache
(
const
my_string
db
)
void
remove_db_from_cache
(
const
char
*
db
)
{
char
name_buff
[
NAME_LEN
+
1
];
if
(
db
&&
lower_case_table_names
)
{
/*
convert database to lower case for comparision.
*/
strmake
(
name_buff
,
db
,
sizeof
(
name_buff
)
-
1
);
my_casedn_str
(
files_charset_info
,
name_buff
);
db
=
name_buff
;
}
for
(
uint
idx
=
0
;
idx
<
open_cache
.
records
;
idx
++
)
{
TABLE
*
table
=
(
TABLE
*
)
hash_element
(
&
open_cache
,
idx
);
...
...
sql/sql_lex.cc
View file @
7eb8c130
...
...
@@ -296,7 +296,18 @@ static char *get_text(LEX *lex)
found_escape
=
1
;
if
(
lex
->
ptr
==
lex
->
end_of_query
)
return
0
;
yySkip
();
#ifdef USE_MB
int
l
;
if
(
use_mb
(
cs
)
&&
(
l
=
my_ismbchar
(
cs
,
(
const
char
*
)
lex
->
ptr
,
(
const
char
*
)
lex
->
end_of_query
)))
{
lex
->
ptr
+=
l
;
continue
;
}
else
#endif
yySkip
();
}
else
if
(
c
==
sep
)
{
...
...
@@ -324,6 +335,10 @@ static char *get_text(LEX *lex)
else
{
uchar
*
to
;
/* Re-use found_escape for tracking state of escapes */
found_escape
=
0
;
for
(
to
=
start
;
str
!=
end
;
str
++
)
{
#ifdef USE_MB
...
...
@@ -337,7 +352,8 @@ static char *get_text(LEX *lex)
continue
;
}
#endif
if
(
!
(
lex
->
thd
->
variables
.
sql_mode
&
MODE_NO_BACKSLASH_ESCAPES
)
&&
if
(
!
found_escape
&&
!
(
lex
->
thd
->
variables
.
sql_mode
&
MODE_NO_BACKSLASH_ESCAPES
)
&&
*
str
==
'\\'
&&
str
+
1
!=
end
)
{
switch
(
*++
str
)
{
...
...
@@ -364,15 +380,20 @@ static char *get_text(LEX *lex)
*
to
++=
'\\'
;
// remember prefix for wildcard
/* Fall through */
default:
*
to
++
=
*
str
;
found_escape
=
1
;
str
--
;
break
;
}
}
else
if
(
*
str
==
sep
)
*
to
++=
*
str
++
;
// Two ' or "
else
if
(
!
found_escape
&&
*
str
==
sep
)
{
found_escape
=
1
;
}
else
{
*
to
++
=
*
str
;
found_escape
=
0
;
}
}
*
to
=
0
;
lex
->
yytoklen
=
(
uint
)
(
to
-
start
);
...
...
tests/mysql_client_test.c
View file @
7eb8c130
...
...
@@ -12584,6 +12584,54 @@ static void test_bug7990()
}
/*
Test mysql_real_escape_string() with gbk charset
The important part is that 0x27 (') is the second-byte in a invalid
two-byte GBK character here. But 0xbf5c is a valid GBK character, so
it needs to be escaped as 0x5cbf27
*/
#define TEST_BUG8378_IN "\xef\xbb\xbf\x27\xbf\x10"
#define TEST_BUG8378_OUT "\xef\xbb\x5c\xbf\x5c\x27\x5c\xbf\x10"
static
void
test_bug8378
()
{
MYSQL
*
lmysql
;
char
out
[
9
];
/* strlen(TEST_BUG8378)*2+1 */
int
len
;
myheader
(
"test_bug8378"
);
if
(
!
opt_silent
)
fprintf
(
stdout
,
"
\n
Establishing a test connection ..."
);
if
(
!
(
lmysql
=
mysql_init
(
NULL
)))
{
myerror
(
"mysql_init() failed"
);
exit
(
1
);
}
if
(
mysql_options
(
lmysql
,
MYSQL_SET_CHARSET_NAME
,
"gbk"
))
{
myerror
(
"mysql_options() failed"
);
exit
(
1
);
}
if
(
!
(
mysql_real_connect
(
lmysql
,
opt_host
,
opt_user
,
opt_password
,
current_db
,
opt_port
,
opt_unix_socket
,
0
)))
{
myerror
(
"connection failed"
);
exit
(
1
);
}
if
(
!
opt_silent
)
fprintf
(
stdout
,
" OK"
);
len
=
mysql_real_escape_string
(
lmysql
,
out
,
TEST_BUG8378_IN
,
4
);
/* No escaping should have actually happened. */
DIE_UNLESS
(
memcmp
(
out
,
TEST_BUG8378_OUT
,
len
)
==
0
);
mysql_close
(
lmysql
);
}
/*
Read and parse arguments and MySQL options from my.cnf
*/
...
...
@@ -12804,6 +12852,7 @@ static struct my_tests_st my_tests[]= {
{
"test_truncation_option"
,
test_truncation_option
},
{
"test_bug8330"
,
test_bug8330
},
{
"test_bug7990"
,
test_bug7990
},
{
"test_bug8378"
,
test_bug8378
},
{
0
,
0
}
};
...
...
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