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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
2db692f5
Commit
2db692f5
authored
Aug 03, 2021
by
Oleksandr Byelkin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-26180: Enable test main.sp-row after the 10.5 merge
parent
7ae6ef52
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
19 deletions
+8
-19
mysql-test/main/cte_recursive.test
mysql-test/main/cte_recursive.test
+0
-4
mysql-test/main/func_group.test
mysql-test/main/func_group.test
+0
-5
mysql-test/main/sp-row.result
mysql-test/main/sp-row.result
+1
-0
mysql-test/main/sp-row.test
mysql-test/main/sp-row.test
+7
-5
mysql-test/suite/plugins/t/test_sql_service.test
mysql-test/suite/plugins/t/test_sql_service.test
+0
-5
No files found.
mysql-test/main/cte_recursive.test
View file @
2db692f5
if
(
`SELECT $PS_PROTOCOL != 0`
)
{
--
skip
Test
temporarily
disabled
for
ps
-
protocol
}
--
source
include
/
default_optimizer_switch
.
inc
create
table
t1
(
a
int
,
b
varchar
(
32
));
...
...
mysql-test/main/func_group.test
View file @
2db692f5
...
...
@@ -2,11 +2,6 @@
# simple test of all group functions
#
if
(
`SELECT $PS_PROTOCOL != 0`
)
{
--
skip
Test
temporarily
disabled
for
ps
-
protocol
}
--
disable_warnings
drop
table
if
exists
t1
,
t2
,
t3
,
t4
,
t5
,
t6
;
--
enable_warnings
...
...
mysql-test/main/sp-row.result
View file @
2db692f5
...
...
@@ -228,6 +228,7 @@ CREATE FUNCTION f1(a INT) RETURNS INT
BEGIN
RETURN a;
END;
$$
CREATE PROCEDURE p1()
BEGIN
DECLARE a ROW (a INT,b INT);
...
...
mysql-test/main/sp-row.test
View file @
2db692f5
...
...
@@ -2,11 +2,6 @@
--
echo
# MDEV-10914 ROW data type for stored routine variables
--
echo
#
if
(
`SELECT $PS_PROTOCOL != 0`
)
{
--
skip
Test
temporarily
disabled
for
ps
-
protocol
}
--
echo
#
--
echo
# ROW of ROWs is not supported yet
--
echo
#
...
...
@@ -304,6 +299,7 @@ CREATE FUNCTION f1(a INT) RETURNS INT
BEGIN
RETURN
a
;
END
;
$$
CREATE
PROCEDURE
p1
()
BEGIN
DECLARE
a
ROW
(
a
INT
,
b
INT
);
...
...
@@ -1340,6 +1336,7 @@ DROP PROCEDURE p1;
--
echo
# ROW variable with a wrong column count
--
enable_prepare_warnings
CREATE
TABLE
t1
(
a
INT
,
b
VARCHAR
(
32
));
INSERT
INTO
t1
VALUES
(
10
,
'b10'
);
DELIMITER
$$
;
...
...
@@ -1351,6 +1348,7 @@ BEGIN
END
;
$$
DELIMITER
;
$$
--
disable_prepare_warnings
--
error
ER_WRONG_NUMBER_OF_COLUMNS_IN_SELECT
CALL
p1
();
DROP
TABLE
t1
;
...
...
@@ -1360,6 +1358,7 @@ DROP PROCEDURE p1;
--
echo
# Multiple ROW variables
CREATE
TABLE
t1
(
a
INT
,
b
VARCHAR
(
32
));
INSERT
INTO
t1
VALUES
(
10
,
'b10'
);
--
enable_prepare_warnings
DELIMITER
$$
;
CREATE
PROCEDURE
p1
()
BEGIN
...
...
@@ -1369,6 +1368,7 @@ BEGIN
END
;
$$
DELIMITER
;
$$
--
disable_prepare_warnings
--
error
ER_OPERAND_COLUMNS
CALL
p1
();
DROP
TABLE
t1
;
...
...
@@ -1378,6 +1378,7 @@ DROP PROCEDURE p1;
--
echo
# ROW variables working example
CREATE
TABLE
t1
(
a
INT
,
b
VARCHAR
(
32
));
INSERT
INTO
t1
VALUES
(
10
,
'b10'
);
--
enable_prepare_warnings
DELIMITER
$$
;
CREATE
PROCEDURE
p1
()
BEGIN
...
...
@@ -1387,6 +1388,7 @@ BEGIN
END
;
$$
DELIMITER
;
$$
--
disable_prepare_warnings
CALL
p1
();
DROP
TABLE
t1
;
DROP
PROCEDURE
p1
;
...
...
mysql-test/suite/plugins/t/test_sql_service.test
View file @
2db692f5
if
(
`SELECT $PS_PROTOCOL != 0`
)
{
--
skip
Test
temporarily
disabled
for
ps
-
protocol
}
--
source
include
/
not_embedded
.
inc
if
(
!
$TEST_SQL_SERVICE_SO
)
{
...
...
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