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
d3681335
Commit
d3681335
authored
Jun 08, 2020
by
Marko Mäkelä
Browse files
Options
Browse Files
Download
Plain Diff
Merge 10.4 into 10.5
parents
996431fd
57022dfb
Changes
13
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
451 additions
and
16 deletions
+451
-16
mysql-test/main/cte_recursive.result
mysql-test/main/cte_recursive.result
+163
-7
mysql-test/main/cte_recursive.test
mysql-test/main/cte_recursive.test
+69
-1
mysql-test/suite/compat/oracle/r/parser.result
mysql-test/suite/compat/oracle/r/parser.result
+34
-0
mysql-test/suite/compat/oracle/t/parser.test
mysql-test/suite/compat/oracle/t/parser.test
+47
-0
mysql-test/suite/sql_sequence/alter.result
mysql-test/suite/sql_sequence/alter.result
+11
-0
mysql-test/suite/sql_sequence/alter.test
mysql-test/suite/sql_sequence/alter.test
+21
-0
mysql-test/suite/sql_sequence/create.result
mysql-test/suite/sql_sequence/create.result
+34
-0
mysql-test/suite/sql_sequence/create.test
mysql-test/suite/sql_sequence/create.test
+42
-0
sql/sql_cte.cc
sql/sql_cte.cc
+1
-0
sql/sql_derived.cc
sql/sql_derived.cc
+2
-5
sql/sql_sequence.cc
sql/sql_sequence.cc
+12
-1
sql/sql_union.cc
sql/sql_union.cc
+13
-0
sql/sql_yacc.yy
sql/sql_yacc.yy
+2
-2
No files found.
mysql-test/main/cte_recursive.result
View file @
d3681335
This diff is collapsed.
Click to expand it.
mysql-test/main/cte_recursive.test
View file @
d3681335
...
@@ -2424,6 +2424,30 @@ select * from cte1, cte2 where cte1.c1 = 3;
...
@@ -2424,6 +2424,30 @@ select * from cte1, cte2 where cte1.c1 = 3;
eval
$q3
;
eval
$q3
;
let
$q4
=
with
recursive
rcte
(
a
)
as
(
select
1
union
select
cast
(
a
+
1
as
unsigned
)
from
rcte
where
a
<
10
),
cte1
as
(
select
count
(
*
)
as
c1
from
rcte
,
t1
where
a
between
3
and
5
and
id
=
a
-
3
),
cte2
as
(
select
count
(
*
)
as
c2
from
rcte
,
t1
where
a
between
7
and
8
and
id
=
a
-
7
)
select
*
from
cte2
,
cte1
;
eval
$q4
;
eval
explain
extended
$q4
;
eval
prepare
stmt
from
"
$q4
"
;
execute
stmt
;
execute
stmt
;
drop
procedure
p
;
drop
table
t2
;
create
table
t2
(
c1
int
,
c2
int
);
eval
create
procedure
p
()
insert
into
t2
$q4
;
call
p
();
select
*
from
t2
;
drop
procedure
p
;
drop
procedure
p
;
drop
table
t1
,
t2
;
drop
table
t1
,
t2
;
...
@@ -2609,7 +2633,51 @@ eval analyze format=json $q;
...
@@ -2609,7 +2633,51 @@ eval analyze format=json $q;
drop
function
f1
;
drop
function
f1
;
drop
table
t1
,
t2
;
drop
table
t1
,
t2
;
--
echo
End
of
10.2
tests
--
echo
#
--
echo
# MDEV-22748: two materialized CTEs using the same recursive CTE
--
echo
# (see also test case for MDEV-17024)
--
echo
#
CREATE
TABLE
t1
(
YEAR
int
(
4
),
d1
date
,
d2
date
)
;
INSERT
INTO
t1
VALUES
(
2018
,
'2018-01-01'
,
'2018-09-20'
);
CREATE
TABLE
t2
(
id
int
,
tm
date
);
INSERT
INTO
t2
VALUES
(
1
,
'2018-08-30'
),(
2
,
'2018-08-30'
),(
3
,
'2018-08-30'
);
CREATE
TABLE
t3
(
id
int
,
tm
date
);
INSERT
INTO
t3
VALUES
(
1
,
'2018-08-30'
),(
2
,
'2018-08-30'
);
let
$q
=
WITH
RECURSIVE
cte
AS
(
SELECT
YEAR
(
t1
.
d1
)
AS
YEAR
,
t1
.
d1
AS
st
,
t1
.
d1
+
INTERVAL
1
MONTH
AS
fn
FROM
t1
UNION
ALL
SELECT
YEAR
(
cte
.
st
+
INTERVAL
1
MONTH
),
cte
.
st
+
INTERVAL
1
MONTH
,
t1
.
d2
+
INTERVAL
1
DAY
FROM
cte
JOIN
t1
WHERE
cte
.
st
+
INTERVAL
1
MONTH
<
t1
.
d2
),
cte2
AS
(
SELECT
YEAR
,
COUNT
(
*
)
FROM
cte
JOIN
t2
ON
t2
.
tm
BETWEEN
cte
.
st
AND
cte
.
fn
),
cte3
AS
(
SELECT
YEAR
,
COUNT
(
*
)
FROM
cte
JOIN
t3
ON
t3
.
tm
BETWEEN
cte
.
st
AND
cte
.
fn
)
SELECT
t1
.*
FROM
t1
JOIN
cte2
USING
(
YEAR
)
JOIN
cte3
USING
(
YEAR
);
eval
$q
;
eval
EXPLAIN
EXTENDED
$q
;
eval
PREPARE
stmt
FROM
"
$q
"
;
EXECUTE
stmt
;
EXECUTE
stmt
;
CREATE
TABLE
t4
(
YEAR
int
(
4
),
d1
date
,
d2
date
);
eval
CREATE
PROCEDURE
p
()
INSERT
INTO
t4
$q
;
CALL
p
();
SELECT
*
FROM
t4
;
DROP
PROCEDURE
p
;
DROP
TABLE
t1
,
t2
,
t3
,
t4
;
--
echo
#
--
echo
# End of 10.2 tests
--
echo
#
--
echo
#
--
echo
#
--
echo
# MDEV-14217 [db crash] Recursive CTE when SELECT includes new field
--
echo
# MDEV-14217 [db crash] Recursive CTE when SELECT includes new field
...
...
mysql-test/suite/compat/oracle/r/parser.result
View file @
d3681335
...
@@ -607,6 +607,40 @@ ERROR HY000: Unknown system variable 'password'
...
@@ -607,6 +607,40 @@ ERROR HY000: Unknown system variable 'password'
SELECT @@GLOBAL.role;
SELECT @@GLOBAL.role;
ERROR HY000: Unknown system variable 'role'
ERROR HY000: Unknown system variable 'role'
#
#
# MDEV-22822 sql_mode="oracle" cannot declare without variable errors
#
# It's OK to have no declarations between DECLARE and BEGIN.
#
BEGIN
DECLARE
BEGIN
NULL;
END;
EXCEPTION
WHEN OTHERS THEN
NULL;
END;
//
DECLARE
BEGIN
NULL;
EXCEPTION
WHEN OTHERS THEN
NULL;
END;
//
BEGIN
<<lab>>
DECLARE
BEGIN
NULL;
END;
EXCEPTION
WHEN OTHERS THEN
NULL;
END;
//
#
# End of 10.3 tests
# End of 10.3 tests
#
#
#
#
...
...
mysql-test/suite/compat/oracle/t/parser.test
View file @
d3681335
...
@@ -409,6 +409,53 @@ SELECT @@GLOBAL.password;
...
@@ -409,6 +409,53 @@ SELECT @@GLOBAL.password;
SELECT
@@
GLOBAL
.
role
;
SELECT
@@
GLOBAL
.
role
;
--
echo
#
--
echo
# MDEV-22822 sql_mode="oracle" cannot declare without variable errors
--
echo
#
--
echo
# It's OK to have no declarations between DECLARE and BEGIN.
--
echo
#
DELIMITER
//;
BEGIN
DECLARE
BEGIN
NULL
;
END
;
EXCEPTION
WHEN
OTHERS
THEN
NULL
;
END
;
//
DELIMITER
;
//
DELIMITER
//;
DECLARE
BEGIN
NULL
;
EXCEPTION
WHEN
OTHERS
THEN
NULL
;
END
;
//
DELIMITER
;
//
DELIMITER
//;
BEGIN
<<
lab
>>
DECLARE
BEGIN
NULL
;
END
;
EXCEPTION
WHEN
OTHERS
THEN
NULL
;
END
;
//
DELIMITER
;
//
--
echo
#
--
echo
#
--
echo
# End of 10.3 tests
--
echo
# End of 10.3 tests
--
echo
#
--
echo
#
...
...
mysql-test/suite/sql_sequence/alter.result
View file @
d3681335
...
@@ -238,3 +238,14 @@ select next value for t1;
...
@@ -238,3 +238,14 @@ select next value for t1;
next value for t1
next value for t1
90
90
drop sequence t1;
drop sequence t1;
CREATE SEQUENCE t1 engine=innodb;
ALTER IGNORE TABLE t1 ADD CHECK (start_value < minimum_value);
ERROR HY000: Sequence 'test.t1' table structure is invalid (Sequence tables cannot have any constraints)
DROP SEQUENCE t1;
CREATE SEQUENCE s;
ALTER TABLE s ORDER BY cache_size;
ERROR HY000: Sequence 'test.s' table structure is invalid (ORDER BY)
SELECT NEXTVAL(s);
NEXTVAL(s)
1
DROP SEQUENCE s;
mysql-test/suite/sql_sequence/alter.test
View file @
d3681335
...
@@ -139,3 +139,24 @@ select next value for t1;
...
@@ -139,3 +139,24 @@ select next value for t1;
alter
sequence
t1
restart
with
90
;
alter
sequence
t1
restart
with
90
;
select
next
value
for
t1
;
select
next
value
for
t1
;
drop
sequence
t1
;
drop
sequence
t1
;
#
# MDEV-19977 Assertion `(0xFUL & mode) == LOCK_S || (0xFUL & mode) == LOCK_X'
# failed in lock_rec_lock
#
CREATE
SEQUENCE
t1
engine
=
innodb
;
--
error
ER_SEQUENCE_INVALID_TABLE_STRUCTURE
ALTER
IGNORE
TABLE
t1
ADD
CHECK
(
start_value
<
minimum_value
);
DROP
SEQUENCE
t1
;
#
# MDEV-19320 Sequence gets corrupted and produces ER_KEY_NOT_FOUND (Can't
# find record) after ALTER .. ORDER BY
#
CREATE
SEQUENCE
s
;
--
error
ER_SEQUENCE_INVALID_TABLE_STRUCTURE
ALTER
TABLE
s
ORDER
BY
cache_size
;
SELECT
NEXTVAL
(
s
);
DROP
SEQUENCE
s
;
mysql-test/suite/sql_sequence/create.result
View file @
d3681335
...
@@ -375,6 +375,40 @@ CREATE OR REPLACE TABLE t1 (
...
@@ -375,6 +375,40 @@ CREATE OR REPLACE TABLE t1 (
key key1 (next_not_cached_value)
key key1 (next_not_cached_value)
) sequence=1;
) sequence=1;
ERROR HY000: Sequence 'test.t1' table structure is invalid (Sequence tables cannot have any keys)
ERROR HY000: Sequence 'test.t1' table structure is invalid (Sequence tables cannot have any keys)
CREATE TABLE t1 (
`next_not_cached_value` bigint(21) NOT NULL,
`minimum_value` bigint(21) NOT NULL,
`maximum_value` bigint(21) NOT NULL,
`start_value` bigint(21) NOT NULL,
`increment` bigint(21) NOT NULL,
`cache_size` bigint(21) unsigned NOT NULL,
`cycle_option` tinyint(1) unsigned NOT NULL,
`cycle_count` bigint(21) NOT NULL,
CHECK (start_value < minimum_value)
) sequence=1;
ERROR HY000: Sequence 'test.t1' table structure is invalid (Sequence tables cannot have any constraints)
CREATE TABLE t1 (
`next_not_cached_value` bigint(21) NOT NULL,
`minimum_value` bigint(21) NOT NULL,
`maximum_value` bigint(21) NOT NULL,
`start_value` bigint(21) NOT NULL CHECK (start_value < minimum_value),
`increment` bigint(21) NOT NULL,
`cache_size` bigint(21) unsigned NOT NULL,
`cycle_option` tinyint(1) unsigned NOT NULL,
`cycle_count` bigint(21) NOT NULL
) sequence=1;
ERROR HY000: Sequence 'test.t1' table structure is invalid (start_value)
CREATE TABLE t1 (
`next_not_cached_value` bigint(21) NOT NULL,
`minimum_value` bigint(21) NOT NULL,
`maximum_value` bigint(21) NOT NULL,
`start_value` bigint(21) NOT NULL,
`increment` bigint(21) NOT NULL,
`cache_size` bigint(21) unsigned NOT NULL,
`cycle_option` tinyint(1) unsigned NOT NULL,
`cycle_count` bigint(21) generated always as (1) virtual
) sequence=1;
ERROR HY000: Sequence 'test.t1' table structure is invalid (cycle_count)
drop sequence if exists t1;
drop sequence if exists t1;
Warnings:
Warnings:
Note 4091 Unknown SEQUENCE: 'test.t1'
Note 4091 Unknown SEQUENCE: 'test.t1'
...
...
mysql-test/suite/sql_sequence/create.test
View file @
d3681335
...
@@ -270,6 +270,48 @@ CREATE OR REPLACE TABLE t1 (
...
@@ -270,6 +270,48 @@ CREATE OR REPLACE TABLE t1 (
key
key1
(
next_not_cached_value
)
key
key1
(
next_not_cached_value
)
)
sequence
=
1
;
)
sequence
=
1
;
# Check constraint
--
error
ER_SEQUENCE_INVALID_TABLE_STRUCTURE
CREATE
TABLE
t1
(
`next_not_cached_value`
bigint
(
21
)
NOT
NULL
,
`minimum_value`
bigint
(
21
)
NOT
NULL
,
`maximum_value`
bigint
(
21
)
NOT
NULL
,
`start_value`
bigint
(
21
)
NOT
NULL
,
`increment`
bigint
(
21
)
NOT
NULL
,
`cache_size`
bigint
(
21
)
unsigned
NOT
NULL
,
`cycle_option`
tinyint
(
1
)
unsigned
NOT
NULL
,
`cycle_count`
bigint
(
21
)
NOT
NULL
,
CHECK
(
start_value
<
minimum_value
)
)
sequence
=
1
;
--
error
ER_SEQUENCE_INVALID_TABLE_STRUCTURE
CREATE
TABLE
t1
(
`next_not_cached_value`
bigint
(
21
)
NOT
NULL
,
`minimum_value`
bigint
(
21
)
NOT
NULL
,
`maximum_value`
bigint
(
21
)
NOT
NULL
,
`start_value`
bigint
(
21
)
NOT
NULL
CHECK
(
start_value
<
minimum_value
),
`increment`
bigint
(
21
)
NOT
NULL
,
`cache_size`
bigint
(
21
)
unsigned
NOT
NULL
,
`cycle_option`
tinyint
(
1
)
unsigned
NOT
NULL
,
`cycle_count`
bigint
(
21
)
NOT
NULL
)
sequence
=
1
;
# Virtual field
--
error
ER_SEQUENCE_INVALID_TABLE_STRUCTURE
CREATE
TABLE
t1
(
`next_not_cached_value`
bigint
(
21
)
NOT
NULL
,
`minimum_value`
bigint
(
21
)
NOT
NULL
,
`maximum_value`
bigint
(
21
)
NOT
NULL
,
`start_value`
bigint
(
21
)
NOT
NULL
,
`increment`
bigint
(
21
)
NOT
NULL
,
`cache_size`
bigint
(
21
)
unsigned
NOT
NULL
,
`cycle_option`
tinyint
(
1
)
unsigned
NOT
NULL
,
`cycle_count`
bigint
(
21
)
generated
always
as
(
1
)
virtual
)
sequence
=
1
;
drop
sequence
if
exists
t1
;
drop
sequence
if
exists
t1
;
#
#
...
...
sql/sql_cte.cc
View file @
d3681335
...
@@ -1163,6 +1163,7 @@ bool TABLE_LIST::set_as_with_table(THD *thd, With_element *with_elem)
...
@@ -1163,6 +1163,7 @@ bool TABLE_LIST::set_as_with_table(THD *thd, With_element *with_elem)
{
{
derived
=
with_elem
->
spec
;
derived
=
with_elem
->
spec
;
if
(
derived
!=
select_lex
->
master_unit
()
&&
if
(
derived
!=
select_lex
->
master_unit
()
&&
!
with_elem
->
is_recursive
&&
!
is_with_table_recursive_reference
())
!
is_with_table_recursive_reference
())
{
{
derived
->
move_as_slave
(
select_lex
);
derived
->
move_as_slave
(
select_lex
);
...
...
sql/sql_derived.cc
View file @
d3681335
/*
/*
Copyright (c) 2002, 2011, Oracle and/or its affiliates.
Copyright (c) 2002, 2011, Oracle and/or its affiliates.
Copyright (c) 2010, 20
15
, MariaDB
Copyright (c) 2010, 20
20
, MariaDB
This program is free software; you can redistribute it and/or modify
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
it under the terms of the GNU General Public License as published by
...
@@ -1197,7 +1197,6 @@ bool mysql_derived_fill(THD *thd, LEX *lex, TABLE_LIST *derived)
...
@@ -1197,7 +1197,6 @@ bool mysql_derived_fill(THD *thd, LEX *lex, TABLE_LIST *derived)
DBUG_ASSERT
(
derived
->
table
&&
derived
->
table
->
is_created
());
DBUG_ASSERT
(
derived
->
table
&&
derived
->
table
->
is_created
());
select_unit
*
derived_result
=
derived
->
derived_result
;
select_unit
*
derived_result
=
derived
->
derived_result
;
SELECT_LEX
*
save_current_select
=
lex
->
current_select
;
SELECT_LEX
*
save_current_select
=
lex
->
current_select
;
bool
derived_recursive_is_filled
=
false
;
if
(
derived
->
pushdown_derived
)
if
(
derived
->
pushdown_derived
)
{
{
...
@@ -1238,7 +1237,6 @@ bool mysql_derived_fill(THD *thd, LEX *lex, TABLE_LIST *derived)
...
@@ -1238,7 +1237,6 @@ bool mysql_derived_fill(THD *thd, LEX *lex, TABLE_LIST *derived)
{
{
/* In this case all iteration are performed */
/* In this case all iteration are performed */
res
=
derived
->
fill_recursive
(
thd
);
res
=
derived
->
fill_recursive
(
thd
);
derived_recursive_is_filled
=
true
;
}
}
}
}
else
if
(
unit
->
is_unit_op
())
else
if
(
unit
->
is_unit_op
())
...
@@ -1293,8 +1291,7 @@ bool mysql_derived_fill(THD *thd, LEX *lex, TABLE_LIST *derived)
...
@@ -1293,8 +1291,7 @@ bool mysql_derived_fill(THD *thd, LEX *lex, TABLE_LIST *derived)
}
}
}
}
err:
err:
if
(
res
||
(
!
lex
->
describe
&&
!
unit
->
uncacheable
&&
if
(
res
||
(
!
derived_is_recursive
&&
!
lex
->
describe
&&
!
unit
->
uncacheable
))
(
!
derived_is_recursive
||
derived_recursive_is_filled
)))
unit
->
cleanup
();
unit
->
cleanup
();
lex
->
current_select
=
save_current_select
;
lex
->
current_select
=
save_current_select
;
...
...
sql/sql_sequence.cc
View file @
d3681335
...
@@ -203,6 +203,16 @@ bool check_sequence_fields(LEX *lex, List<Create_field> *fields)
...
@@ -203,6 +203,16 @@ bool check_sequence_fields(LEX *lex, List<Create_field> *fields)
reason
=
"Sequence tables cannot have any keys"
;
reason
=
"Sequence tables cannot have any keys"
;
goto
err
;
goto
err
;
}
}
if
(
lex
->
alter_info
.
check_constraint_list
.
elements
>
0
)
{
reason
=
"Sequence tables cannot have any constraints"
;
goto
err
;
}
if
(
lex
->
alter_info
.
flags
&
ALTER_ORDER
)
{
reason
=
"ORDER BY"
;
goto
err
;
}
for
(
field_no
=
0
;
(
field
=
it
++
);
field_no
++
)
for
(
field_no
=
0
;
(
field
=
it
++
);
field_no
++
)
{
{
...
@@ -210,7 +220,8 @@ bool check_sequence_fields(LEX *lex, List<Create_field> *fields)
...
@@ -210,7 +220,8 @@ bool check_sequence_fields(LEX *lex, List<Create_field> *fields)
if
(
my_strcasecmp
(
system_charset_info
,
field_def
->
field_name
,
if
(
my_strcasecmp
(
system_charset_info
,
field_def
->
field_name
,
field
->
field_name
.
str
)
||
field
->
field_name
.
str
)
||
field
->
flags
!=
field_def
->
flags
||
field
->
flags
!=
field_def
->
flags
||
field
->
type_handler
()
!=
field_def
->
type_handler
)
field
->
type_handler
()
!=
field_def
->
type_handler
||
field
->
check_constraint
||
field
->
vcol_info
)
{
{
reason
=
field
->
field_name
.
str
;
reason
=
field
->
field_name
.
str
;
goto
err
;
goto
err
;
...
...
sql/sql_union.cc
View file @
d3681335
...
@@ -2712,6 +2712,19 @@ bool st_select_lex::cleanup()
...
@@ -2712,6 +2712,19 @@ bool st_select_lex::cleanup()
delete
join
;
delete
join
;
join
=
0
;
join
=
0
;
}
}
for
(
TABLE_LIST
*
tbl
=
get_table_list
();
tbl
;
tbl
=
tbl
->
next_local
)
{
if
(
tbl
->
is_recursive_with_table
()
&&
!
tbl
->
is_with_table_recursive_reference
())
{
/*
If query is killed before open_and_process_table() for tbl
is called then 'with' is already set, but 'derived' is not.
*/
st_select_lex_unit
*
unit
=
tbl
->
with
->
spec
;
error
|=
(
bool
)
error
|
(
uint
)
unit
->
cleanup
();
}
}
for
(
SELECT_LEX_UNIT
*
lex_unit
=
first_inner_unit
();
lex_unit
;
for
(
SELECT_LEX_UNIT
*
lex_unit
=
first_inner_unit
();
lex_unit
;
lex_unit
=
lex_unit
->
next_unit
())
lex_unit
=
lex_unit
->
next_unit
())
{
{
...
...
sql/sql_yacc.yy
View file @
d3681335
...
@@ -19070,7 +19070,7 @@ sp_labeled_block:
...
@@ -19070,7 +19070,7 @@ sp_labeled_block:
{
{
Lex->sp_block_init(thd, &$1);
Lex->sp_block_init(thd, &$1);
}
}
sp_decl_body_list
opt_
sp_decl_body_list
{
{
if (unlikely(Lex->sp_block_with_exceptions_finalize_declarations(thd)))
if (unlikely(Lex->sp_block_with_exceptions_finalize_declarations(thd)))
MYSQL_YYABORT;
MYSQL_YYABORT;
...
@@ -19112,7 +19112,7 @@ sp_unlabeled_block:
...
@@ -19112,7 +19112,7 @@ sp_unlabeled_block:
MYSQL_YYABORT;
MYSQL_YYABORT;
Lex->sp_block_init(thd);
Lex->sp_block_init(thd);
}
}
sp_decl_body_list
opt_
sp_decl_body_list
{
{
if (unlikely(Lex->sp_block_with_exceptions_finalize_declarations(thd)))
if (unlikely(Lex->sp_block_with_exceptions_finalize_declarations(thd)))
MYSQL_YYABORT;
MYSQL_YYABORT;
...
...
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