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
2c90e2f7
Commit
2c90e2f7
authored
Oct 19, 2005
by
jimw@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysql.com:/home/jimw/my/mysql-4.1-clean
into mysql.com:/home/jimw/my/mysql-5.0-clean
parents
9b62dd15
746251a4
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
39 additions
and
19 deletions
+39
-19
mysql-test/my_manage.c
mysql-test/my_manage.c
+4
-1
mysql-test/mysql_test_run_new.c
mysql-test/mysql_test_run_new.c
+0
-1
mysql-test/r/variables.result
mysql-test/r/variables.result
+8
-3
mysql-test/t/variables.test
mysql-test/t/variables.test
+17
-7
sql/item_func.cc
sql/item_func.cc
+0
-1
sql/mysqld.cc
sql/mysqld.cc
+2
-1
sql/sql_acl.cc
sql/sql_acl.cc
+6
-3
strings/ctype-simple.c
strings/ctype-simple.c
+1
-1
strings/ctype-ucs2.c
strings/ctype-ucs2.c
+1
-1
No files found.
mysql-test/my_manage.c
View file @
2c90e2f7
...
...
@@ -230,7 +230,10 @@ int wait_for_server_start(char *bin_dir __attribute__((unused)),
char
*
user
,
char
*
password
,
int
port
,
char
*
tmp_dir
)
{
arg_list_t
al
;
int
err
=
0
,
i
;
int
err
=
0
;
#ifndef __WIN__
int
i
;
#endif
char
trash
[
FN_REFLEN
];
/* mysqladmin file */
...
...
mysql-test/mysql_test_run_new.c
View file @
2c90e2f7
...
...
@@ -1741,7 +1741,6 @@ int main(int argc, char **argv)
int
*
handle
;
char
test
[
FN_LEN
];
char
mask
[
FN_REFLEN
];
char
*
p
;
int
position
;
/* single test */
...
...
mysql-test/r/variables.result
View file @
2c90e2f7
...
...
@@ -518,6 +518,14 @@ select ifnull(@@character_set_results,"really null");
ifnull(@@character_set_results,"really null")
really null
set names latin1;
select @@have_innodb;
@@have_innodb
#
set @test = @@query_prealloc_size;
set @@query_prealloc_size = @test;
select @@query_prealloc_size = @test;
@@query_prealloc_size = @test
1
create table t1 (a int);
select a into @x from t1;
Warnings:
...
...
@@ -542,9 +550,6 @@ set @@max_heap_table_size= 4294967296;
select @@max_heap_table_size > 0;
@@max_heap_table_size > 0
1
select @@have_innodb;
@@have_innodb
#
select @@character_set_system;
@@character_set_system
utf8
...
...
mysql-test/t/variables.test
View file @
2c90e2f7
...
...
@@ -398,6 +398,21 @@ set character_set_results=NULL;
select
ifnull
(
@@
character_set_results
,
"really null"
);
set
names
latin1
;
#
# Bug #9613: @@have_innodb
#
--
replace_column
1
#
select
@@
have_innodb
;
#
# Bug #13334: query_prealloc_size default less than minimum
#
set
@
test
=
@@
query_prealloc_size
;
set
@@
query_prealloc_size
=
@
test
;
select
@@
query_prealloc_size
=
@
test
;
# End of 4.1 tests
#
...
...
@@ -429,13 +444,6 @@ select @@max_heap_table_size > 0;
set
@@
max_heap_table_size
=
4294967296
;
select
@@
max_heap_table_size
>
0
;
#
# Bug #9613: @@have_innodb
#
--
replace_column
1
#
select
@@
have_innodb
;
#
# Bug #11775 Variable character_set_system does not exist (sometimes)
#
...
...
@@ -444,3 +452,5 @@ select @@character_set_system;
set
global
character_set_system
=
latin1
;
--
error
1238
set
@@
global
.
version_compile_os
=
'234'
;
# End of 5.0 tests
sql/item_func.cc
View file @
2c90e2f7
...
...
@@ -4503,7 +4503,6 @@ Item *get_system_var(THD *thd, enum_var_type var_type, LEX_STRING name,
LEX_STRING
component
)
{
sys_var
*
var
;
char
buff
[
MAX_SYS_VAR_LENGTH
*
2
+
4
+
8
],
*
pos
;
LEX_STRING
*
base_name
,
*
component_name
;
if
(
component
.
str
==
0
&&
...
...
sql/mysqld.cc
View file @
2c90e2f7
...
...
@@ -5686,7 +5686,8 @@ The minimum value for this variable is 4096.",
"Persistent buffer for query parsing and execution"
,
(
gptr
*
)
&
global_system_variables
.
query_prealloc_size
,
(
gptr
*
)
&
max_system_variables
.
query_prealloc_size
,
0
,
GET_ULONG
,
REQUIRED_ARG
,
QUERY_ALLOC_PREALLOC_SIZE
,
16384
,
~
0L
,
0
,
1024
,
0
},
REQUIRED_ARG
,
QUERY_ALLOC_PREALLOC_SIZE
,
QUERY_ALLOC_PREALLOC_SIZE
,
~
0L
,
0
,
1024
,
0
},
{
"range_alloc_block_size"
,
OPT_RANGE_ALLOC_BLOCK_SIZE
,
"Allocation block size for storing ranges during optimization"
,
(
gptr
*
)
&
global_system_variables
.
range_alloc_block_size
,
...
...
sql/sql_acl.cc
View file @
2c90e2f7
...
...
@@ -194,6 +194,7 @@ static my_bool acl_load(THD *thd, TABLE_LIST *tables)
my_bool
return_val
=
1
;
bool
check_no_resolve
=
specialflag
&
SPECIAL_NO_RESOLVE
;
char
tmp_name
[
NAME_LEN
+
1
];
int
password_length
;
DBUG_ENTER
(
"acl_load"
);
grant_version
++
;
/* Privileges updated */
...
...
@@ -250,7 +251,9 @@ static my_bool acl_load(THD *thd, TABLE_LIST *tables)
init_read_record
(
&
read_record_info
,
thd
,
table
=
tables
[
1
].
table
,
NULL
,
1
,
0
);
VOID
(
my_init_dynamic_array
(
&
acl_users
,
sizeof
(
ACL_USER
),
50
,
100
));
if
(
table
->
field
[
2
]
->
field_length
<
SCRAMBLED_PASSWORD_CHAR_LENGTH_323
)
password_length
=
table
->
field
[
2
]
->
field_length
/
table
->
field
[
2
]
->
charset
()
->
mbmaxlen
;
if
(
password_length
<
SCRAMBLED_PASSWORD_CHAR_LENGTH_323
)
{
sql_print_error
(
"Fatal error: mysql.user table is damaged or in "
"unsupported 3.20 format."
);
...
...
@@ -258,10 +261,10 @@ static my_bool acl_load(THD *thd, TABLE_LIST *tables)
}
DBUG_PRINT
(
"info"
,(
"user table fields: %d, password length: %d"
,
table
->
s
->
fields
,
table
->
field
[
2
]
->
fiel
d_length
));
table
->
s
->
fields
,
passwor
d_length
));
pthread_mutex_lock
(
&
LOCK_global_system_variables
);
if
(
table
->
field
[
2
]
->
fiel
d_length
<
SCRAMBLED_PASSWORD_CHAR_LENGTH
)
if
(
passwor
d_length
<
SCRAMBLED_PASSWORD_CHAR_LENGTH
)
{
if
(
opt_secure_auth
)
{
...
...
strings/ctype-simple.c
View file @
2c90e2f7
...
...
@@ -904,7 +904,7 @@ int my_longlong10_to_str_8bit(CHARSET_INFO *cs __attribute__((unused)),
while
(
long_val
!=
0
)
{
long
quo
=
long_val
/
10
;
*--
p
=
'0'
+
(
char
)(
long_val
-
quo
*
10
);
*--
p
=
(
char
)
(
'0'
+
(
long_val
-
quo
*
10
)
);
long_val
=
quo
;
}
...
...
strings/ctype-ucs2.c
View file @
2c90e2f7
...
...
@@ -1063,7 +1063,7 @@ int my_ll10tostr_ucs2(CHARSET_INFO *cs __attribute__((unused)),
while
(
long_val
!=
0
)
{
long
quo
=
long_val
/
10
;
*--
p
=
'0'
+
(
char
)(
long_val
-
quo
*
10
);
*--
p
=
(
char
)
(
'0'
+
(
long_val
-
quo
*
10
)
);
long_val
=
quo
;
}
...
...
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