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
e0db2186
Commit
e0db2186
authored
Jan 17, 2006
by
unknown
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.0
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
parents
974d3b47
13f5fca9
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
17 additions
and
42 deletions
+17
-42
mysql-test/r/sp-error.result
mysql-test/r/sp-error.result
+1
-1
mysql-test/r/sp.result
mysql-test/r/sp.result
+8
-8
mysql-test/r/type_decimal.result
mysql-test/r/type_decimal.result
+0
-13
mysql-test/r/variables.result
mysql-test/r/variables.result
+2
-2
mysql-test/r/view_grant.result
mysql-test/r/view_grant.result
+4
-4
mysql-test/t/type_decimal.test
mysql-test/t/type_decimal.test
+0
-12
sql/share/errmsg.txt
sql/share/errmsg.txt
+2
-2
No files found.
mysql-test/r/sp-error.result
View file @
e0db2186
...
@@ -535,7 +535,7 @@ fetch c into v;
...
@@ -535,7 +535,7 @@ fetch c into v;
end|
end|
delete from t1|
delete from t1|
call bug7299()|
call bug7299()|
ERROR 02000: No data
to FETCH
ERROR 02000: No data
- zero rows fetched, selected, or processed
drop procedure bug7299|
drop procedure bug7299|
create procedure bug9073()
create procedure bug9073()
begin
begin
...
...
mysql-test/r/sp.result
View file @
e0db2186
...
@@ -522,7 +522,7 @@ delete from t1|
...
@@ -522,7 +522,7 @@ delete from t1|
create table t3 ( s char(16), d int)|
create table t3 ( s char(16), d int)|
call into_test4()|
call into_test4()|
Warnings:
Warnings:
Warning 1329 No data
to FETCH
Warning 1329 No data
- zero rows fetched, selected, or processed
select * from t3|
select * from t3|
s d
s d
into4 NULL
into4 NULL
...
@@ -1787,10 +1787,10 @@ end|
...
@@ -1787,10 +1787,10 @@ end|
call bug1863(10)|
call bug1863(10)|
Warnings:
Warnings:
Note 1051 Unknown table 'temp_t1'
Note 1051 Unknown table 'temp_t1'
Warning 1329 No data
to FETCH
Warning 1329 No data
- zero rows fetched, selected, or processed
call bug1863(10)|
call bug1863(10)|
Warnings:
Warnings:
Warning 1329 No data
to FETCH
Warning 1329 No data
- zero rows fetched, selected, or processed
select * from t4|
select * from t4|
f1 rc t3
f1 rc t3
2 0 NULL
2 0 NULL
...
@@ -2084,10 +2084,10 @@ end|
...
@@ -2084,10 +2084,10 @@ end|
call bug4579_1()|
call bug4579_1()|
call bug4579_1()|
call bug4579_1()|
Warnings:
Warnings:
Warning 1329 No data
to FETCH
Warning 1329 No data
- zero rows fetched, selected, or processed
call bug4579_1()|
call bug4579_1()|
Warnings:
Warnings:
Warning 1329 No data
to FETCH
Warning 1329 No data
- zero rows fetched, selected, or processed
drop procedure bug4579_1|
drop procedure bug4579_1|
drop procedure bug4579_2|
drop procedure bug4579_2|
drop table t3|
drop table t3|
...
@@ -2566,7 +2566,7 @@ call bug7743("OneWord")|
...
@@ -2566,7 +2566,7 @@ call bug7743("OneWord")|
var
var
NULL
NULL
Warnings:
Warnings:
Warning 1329 No data
to FETCH
Warning 1329 No data
- zero rows fetched, selected, or processed
call bug7743("anotherword")|
call bug7743("anotherword")|
var
var
2
2
...
@@ -2574,7 +2574,7 @@ call bug7743("AnotherWord")|
...
@@ -2574,7 +2574,7 @@ call bug7743("AnotherWord")|
var
var
NULL
NULL
Warnings:
Warnings:
Warning 1329 No data
to FETCH
Warning 1329 No data
- zero rows fetched, selected, or processed
drop procedure bug7743|
drop procedure bug7743|
drop table t4|
drop table t4|
delete from t3|
delete from t3|
...
@@ -4496,7 +4496,7 @@ After NOT FOUND condtition is triggered
...
@@ -4496,7 +4496,7 @@ After NOT FOUND condtition is triggered
xid xdone
xid xdone
1 0
1 0
Warnings:
Warnings:
Warning 1329 No data
to FETCH
Warning 1329 No data
- zero rows fetched, selected, or processed
call bug15231_3()|
call bug15231_3()|
Result
Result
Missed it (correct)
Missed it (correct)
...
...
mysql-test/r/type_decimal.result
View file @
e0db2186
...
@@ -772,16 +772,3 @@ productid zlevelprice
...
@@ -772,16 +772,3 @@ productid zlevelprice
003trans 39.98
003trans 39.98
004trans 31.18
004trans 31.18
drop table t1, t2;
drop table t1, t2;
create table t1 (a double(53,0));
insert into t1 values (9988317491112007680) ,(99883133042600208184115200);
select a from t1;
a
9988317491112007680
99883133042600208184115200
truncate t1;
insert into t1 values (9988317491112007680.0) ,(99883133042600208184115200.0);
select a from t1;
a
9988317491112007680
99883133042600208184115200
drop table t1;
mysql-test/r/variables.result
View file @
e0db2186
...
@@ -537,10 +537,10 @@ select @@query_prealloc_size = @test;
...
@@ -537,10 +537,10 @@ select @@query_prealloc_size = @test;
create table t1 (a int);
create table t1 (a int);
select a into @x from t1;
select a into @x from t1;
Warnings:
Warnings:
Warning 1329 No data
to FETCH
Warning 1329 No data
- zero rows fetched, selected, or processed
show warnings;
show warnings;
Level Code Message
Level Code Message
Warning 1329 No data
to FETCH
Warning 1329 No data
- zero rows fetched, selected, or processed
drop table t1;
drop table t1;
set @@warning_count=1;
set @@warning_count=1;
ERROR HY000: Variable 'warning_count' is a read only variable
ERROR HY000: Variable 'warning_count' is a read only variable
...
...
mysql-test/r/view_grant.result
View file @
e0db2186
...
@@ -348,12 +348,12 @@ select * from v1;
...
@@ -348,12 +348,12 @@ select * from v1;
f2()
f2()
NULL
NULL
Warnings:
Warnings:
Warning 1329 No data
to FETCH
Warning 1329 No data
- zero rows fetched, selected, or processed
select * from v2;
select * from v2;
f2()
f2()
NULL
NULL
Warnings:
Warnings:
Warning 1329 No data
to FETCH
Warning 1329 No data
- zero rows fetched, selected, or processed
select * from v3;
select * from v3;
ERROR HY000: View 'mysqltest.v3' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
ERROR HY000: View 'mysqltest.v3' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
select * from v4;
select * from v4;
...
@@ -394,12 +394,12 @@ select * from v3;
...
@@ -394,12 +394,12 @@ select * from v3;
f2()
f2()
NULL
NULL
Warnings:
Warnings:
Warning 1329 No data
to FETCH
Warning 1329 No data
- zero rows fetched, selected, or processed
select * from v4;
select * from v4;
f2()
f2()
NULL
NULL
Warnings:
Warnings:
Warning 1329 No data
to FETCH
Warning 1329 No data
- zero rows fetched, selected, or processed
select * from v5;
select * from v5;
ERROR HY000: View 'mysqltest.v5' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
ERROR HY000: View 'mysqltest.v5' references invalid table(s) or column(s) or function(s) or definer/invoker of view lack rights to use them
drop view v1, v2, v3, v4, v5;
drop view v1, v2, v3, v4, v5;
...
...
mysql-test/t/type_decimal.test
View file @
e0db2186
...
@@ -377,15 +377,3 @@ insert INTO t2 SELECT * FROM t1;
...
@@ -377,15 +377,3 @@ insert INTO t2 SELECT * FROM t1;
select
*
from
t2
;
select
*
from
t2
;
drop
table
t1
,
t2
;
drop
table
t1
,
t2
;
#
# A test case for Bug#7670 "Loss of precision for some integer values stored
# into DOUBLE column": check that there is no truncation
# when inserting big integers into double columns.
#
create
table
t1
(
a
double
(
53
,
0
));
insert
into
t1
values
(
9988317491112007680
)
,(
99883133042600208184115200
);
select
a
from
t1
;
truncate
t1
;
insert
into
t1
values
(
9988317491112007680.0
)
,(
99883133042600208184115200.0
);
select
a
from
t1
;
drop
table
t1
;
sql/share/errmsg.txt
View file @
e0db2186
...
@@ -5175,8 +5175,8 @@ ER_SP_WRONG_NO_OF_FETCH_ARGS
...
@@ -5175,8 +5175,8 @@ ER_SP_WRONG_NO_OF_FETCH_ARGS
eng "Incorrect number of FETCH variables"
eng "Incorrect number of FETCH variables"
ger "Falsche Anzahl von FETCH-Variablen"
ger "Falsche Anzahl von FETCH-Variablen"
ER_SP_FETCH_NO_DATA 02000
ER_SP_FETCH_NO_DATA 02000
eng "No data
to FETCH
"
eng "No data
- zero rows fetched, selected, or processed
"
ger "Keine Daten
mit FETCH abzuholen
"
ger "Keine Daten
- null Zeilen geholt (fetch), ausgewhlt oder verarbeitet"
ER_SP_DUP_PARAM 42000
ER_SP_DUP_PARAM 42000
eng "Duplicate parameter: %s"
eng "Duplicate parameter: %s"
ger "Doppelter Parameter: %s"
ger "Doppelter Parameter: %s"
...
...
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