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
0a21e78e
Commit
0a21e78e
authored
Jul 07, 2006
by
cmiller@zippy.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweaks for duplicate and missing lines in tests from a huge merge.
parent
a3b23403
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
+2
-3
mysql-test/r/type_newdecimal.result
mysql-test/r/type_newdecimal.result
+1
-0
mysql-test/t/ps_1general.test
mysql-test/t/ps_1general.test
+0
-3
mysql-test/t/type_newdecimal.test
mysql-test/t/type_newdecimal.test
+1
-0
No files found.
mysql-test/r/type_newdecimal.result
View file @
0a21e78e
...
@@ -1406,6 +1406,7 @@ alter table t1 modify a decimal(10,2);
...
@@ -1406,6 +1406,7 @@ alter table t1 modify a decimal(10,2);
select * from t1;
select * from t1;
a
a
123.12
123.12
drop table t1;
create table t1 (i int, j int);
create table t1 (i int, j int);
insert into t1 values (1,1), (1,2), (2,3), (2,4);
insert into t1 values (1,1), (1,2), (2,3), (2,4);
select i, count(distinct j) from t1 group by i;
select i, count(distinct j) from t1 group by i;
...
...
mysql-test/t/ps_1general.test
View file @
0a21e78e
...
@@ -324,9 +324,6 @@ execute stmt4;
...
@@ -324,9 +324,6 @@ execute stmt4;
# history (actions of the bdb engine).
# history (actions of the bdb engine).
# That is the reason why, we switch the output here off.
# That is the reason why, we switch the output here off.
# (The real output will be tested in ps_6bdb.test)
# (The real output will be tested in ps_6bdb.test)
--
disable_warnings
prepare
stmt4
from
' show engine bdb logs '
;
--
enable_warnings
--
disable_result_log
--
disable_result_log
prepare
stmt4
from
' show engine bdb logs '
;
prepare
stmt4
from
' show engine bdb logs '
;
execute
stmt4
;
execute
stmt4
;
...
...
mysql-test/t/type_newdecimal.test
View file @
0a21e78e
...
@@ -1105,6 +1105,7 @@ insert into t1 values(123.12);
...
@@ -1105,6 +1105,7 @@ insert into t1 values(123.12);
select
*
from
t1
;
select
*
from
t1
;
alter
table
t1
modify
a
decimal
(
10
,
2
);
alter
table
t1
modify
a
decimal
(
10
,
2
);
select
*
from
t1
;
select
*
from
t1
;
drop
table
t1
;
#
#
# Bug#19667 group by a decimal expression yields wrong result
# Bug#19667 group by a decimal expression yields wrong result
...
...
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