As announced during the last IVOA Interop (19th Nov. 2020), the function UPPER(...) is added. No discussion was required for this addition, hence the absence of corresponding GitHub Issue.
As LOWER(...), UPPER(...) lets change the case of the given string's characters. It puts all characters in upper case (whereas LOWER(...) puts them in lower case).
This Pull Request also fixes the BNF where:
LOWER(...) was never defined
ILIKE was declared twice (as both <ADQL_reserved_word> and <SQL_reserved_word>)
As announced during the last IVOA Interop (19th Nov. 2020), the function
UPPER(...)
is added. No discussion was required for this addition, hence the absence of corresponding GitHub Issue.As
LOWER(...)
,UPPER(...)
lets change the case of the given string's characters. It puts all characters in upper case (whereasLOWER(...)
puts them in lower case).This Pull Request also fixes the BNF where:
LOWER(...)
was never definedILIKE
was declared twice (as both<ADQL_reserved_word>
and<SQL_reserved_word>
)