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
ba2ddc86
Commit
ba2ddc86
authored
Mar 23, 2006
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0
into neptunus.(none):/home/msvensson/mysql/mysql-5.1
parents
123f5135
c6e6c0d6
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
10 deletions
+30
-10
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+24
-2
mysql-test/t/type_newdecimal.test
mysql-test/t/type_newdecimal.test
+6
-7
sql/parse_file.cc
sql/parse_file.cc
+0
-1
No files found.
mysql-test/mysql-test-run.pl
View file @
ba2ddc86
...
...
@@ -2333,11 +2333,32 @@ sub save_installed_db () {
}
}
#
# Save any interesting files in the data_dir
# before the data dir is removed.
#
sub
save_files_before_restore
($$)
{
my
$test_name
=
shift
;
my
$data_dir
=
shift
;
my
$save_name
=
"
$opt_vardir
/log/
$test_name
";
# Look for core files
foreach
my
$core_file
(
glob
("
$data_dir
/core*
")
)
{
my
$core_name
=
basename
(
$core_file
);
mtr_report
("
Saving
$core_name
");
mkdir
(
$save_name
)
if
!
-
d
$save_name
;
rename
("
$core_file
",
"
$save_name
/
$core_name
");
}
}
#
# Restore snapshot of the installed test db(s)
# if the snapshot exists
#
sub
restore_installed_db
()
{
sub
restore_installed_db
($)
{
my
$test_name
=
shift
;
if
(
-
d
$path_snapshot
)
{
...
...
@@ -2348,6 +2369,7 @@ sub restore_installed_db () {
foreach
my
$data_dir
(
@data_dir_lst
)
{
my
$name
=
basename
(
$data_dir
);
save_files_before_restore
(
$test_name
,
$data_dir
);
rmtree
("
$data_dir
");
copy_dir
("
$path_snapshot
/
$name
",
"
$data_dir
");
}
...
...
@@ -2381,7 +2403,7 @@ sub report_failure_and_restart ($) {
if
(
$opt_force
)
{
# Restore the snapshot of the installed test db
restore_installed_db
();
restore_installed_db
(
$tinfo
->
{'
name
'}
);
print
"
Resuming Tests
\n\n
";
return
;
}
...
...
mysql-test/t/type_newdecimal.test
View file @
ba2ddc86
...
...
@@ -1054,14 +1054,7 @@ SELECT my_float, my_double, my_varchar FROM t1;
# On windows we get 0.000000000011754943372854770000
# use replace_result to correct it
--
replace_result
0.000000000011754943372854770000
0.000000000011754943372854760000
SELECT
CAST
(
my_float
AS
DECIMAL
(
65
,
30
)),
my_float
FROM
t1
;
# Expected result 0.000000000011754943372854760000
# On windows we get 0.000000000011754943372854770000
# use replace_result to correct it
--
replace_result
0.000000000011754943372854770000
0.000000000011754943372854760000
SELECT
CAST
(
my_double
AS
DECIMAL
(
65
,
30
)),
my_double
FROM
t1
;
SELECT
CAST
(
my_varchar
AS
DECIMAL
(
65
,
30
)),
my_varchar
FROM
t1
;
...
...
@@ -1072,7 +1065,13 @@ SELECT CAST(my_varchar AS DECIMAL(65,30)), my_varchar FROM t1;
--
disable_warnings
UPDATE
t1
SET
my_decimal
=
my_float
;
# Expected result 0.000000000011754943372854760000
# On windows we get 0.000000000011754943372854770000
# use replace_result to correct it
--
replace_result
0.000000000011754943372854770000
0.000000000011754943372854760000
SELECT
my_decimal
,
my_float
FROM
t1
;
UPDATE
t1
SET
my_decimal
=
my_double
;
SELECT
my_decimal
,
my_double
FROM
t1
;
--
enable_warnings
...
...
sql/parse_file.cc
View file @
ba2ddc86
...
...
@@ -759,7 +759,6 @@ File_parser::parse(gptr base, MEM_ROOT *mem_root,
char
*
eol
;
LEX_STRING
*
str
;
List
<
LEX_STRING
>
*
list
;
ulonglong
*
num
;
DBUG_ENTER
(
"File_parser::parse"
);
while
(
ptr
<
end
&&
found
<
required
)
...
...
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