Update release notes, refs #1885
This commit is contained in:
@ -16,7 +16,7 @@ This is a {{ site.pmd.release_type }} release.
|
|||||||
|
|
||||||
#### PLSQL Grammar Updates
|
#### PLSQL Grammar Updates
|
||||||
|
|
||||||
The grammar has been updated to support Inline Constraints in CREATE TABLE statements. Additionally, the
|
The grammar has been updated to support inline constraints in CREATE TABLE statements. Additionally, the
|
||||||
CREATE TABLE statement may now be followed by physical properties and table properties. However, these
|
CREATE TABLE statement may now be followed by physical properties and table properties. However, these
|
||||||
properties are skipped over during parsing.
|
properties are skipped over during parsing.
|
||||||
|
|
||||||
@ -25,6 +25,8 @@ The CREATE VIEW statement now supports subquery views.
|
|||||||
The EXTRACT function can now be parsed correctly. It is used to extract values from a specified
|
The EXTRACT function can now be parsed correctly. It is used to extract values from a specified
|
||||||
datetime field.
|
datetime field.
|
||||||
|
|
||||||
|
The CASE expression can now be properly used within SELECT statements.
|
||||||
|
|
||||||
#### New Rules
|
#### New Rules
|
||||||
|
|
||||||
* The Java rule {% rule "java/bestpractices/DoubleBraceInitialization" %} (`java-bestpractices`)
|
* The Java rule {% rule "java/bestpractices/DoubleBraceInitialization" %} (`java-bestpractices`)
|
||||||
@ -116,6 +118,7 @@ of deprecations.
|
|||||||
* [#1874](https://github.com/pmd/pmd/pull/1874): \[plsql] Add parenthesis equation support for Update - [Hugo Araya Nash](https://github.com/kabroxiko)
|
* [#1874](https://github.com/pmd/pmd/pull/1874): \[plsql] Add parenthesis equation support for Update - [Hugo Araya Nash](https://github.com/kabroxiko)
|
||||||
* [#1883](https://github.com/pmd/pmd/pull/1883): \[plsql] Fix #1873 Expression list not working - [Hugo Araya Nash](https://github.com/kabroxiko)
|
* [#1883](https://github.com/pmd/pmd/pull/1883): \[plsql] Fix #1873 Expression list not working - [Hugo Araya Nash](https://github.com/kabroxiko)
|
||||||
* [#1884](https://github.com/pmd/pmd/pull/1884): \[plsql] fix #1878 Support explicit INNER word for INNER JOIN - [Hugo Araya Nash](https://github.com/kabroxiko)
|
* [#1884](https://github.com/pmd/pmd/pull/1884): \[plsql] fix #1878 Support explicit INNER word for INNER JOIN - [Hugo Araya Nash](https://github.com/kabroxiko)
|
||||||
|
* [#1885](https://github.com/pmd/pmd/pull/1885): \[plsql] Correct case expression - [Hugo Araya Nash](https://github.com/kabroxiko)
|
||||||
|
|
||||||
{% endtocmaker %}
|
{% endtocmaker %}
|
||||||
|
|
||||||
|
@ -27,7 +27,7 @@ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Various fixes for expression lists, join clauses
|
* Various fixes for expression lists, join clauses, case expression
|
||||||
*
|
*
|
||||||
* Hugo Araya Nash 06/2019
|
* Hugo Araya Nash 06/2019
|
||||||
*====================================================================
|
*====================================================================
|
||||||
|
Reference in New Issue
Block a user