Branch: refs/heads/master
  Home:   https://github.com/pmd/pmd
  Commit: 4179368a0ee714575c87718212b50ef1ed346d6e
      https://github.com/pmd/pmd/commit/4179368a0ee714575c87718212b50ef1ed346d6e
  Author: sergey <[email protected]>
  Date:   2016-11-12 (Sat, 12 Nov 2016)

  Changed paths:
    M pmd-plsql/etc/grammar/PldocAST.jjt
    M 
pmd-plsql/src/main/java/net/sourceforge/pmd/lang/plsql/rule/AbstractPLSQLRule.java
    M 
pmd-plsql/src/test/java/net/sourceforge/pmd/lang/plsql/PLSQLParserTest.java
    A pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/IsNull.pls

  Log Message:
  -----------
  Added correct parse of IS [NOT] NULL

fixed crash of parsing following code (from unittest):
IF V_BUF IS NULL THEN
null;
end if;


  Commit: 3b4063138c76ccb0edb688bc4b846abad7d18f15
      https://github.com/pmd/pmd/commit/3b4063138c76ccb0edb688bc4b846abad7d18f15
  Author: sergey <[email protected]>
  Date:   2016-11-12 (Sat, 12 Nov 2016)

  Changed paths:
    M 
pmd-plsql/src/main/java/net/sourceforge/pmd/lang/plsql/ast/PLSQLParserVisitorAdapter.java

  Log Message:
  -----------
  missing change in PLSQLParserVisitorAdapter

missing change in PLSQLParserVisitorAdapter


  Commit: 63bd59451064c10c844d1da29d74e1b629ab52f4
      https://github.com/pmd/pmd/commit/63bd59451064c10c844d1da29d74e1b629ab52f4
  Author: sergey <[email protected]>
  Date:   2016-11-14 (Mon, 14 Nov 2016)

  Changed paths:
    M pmd-plsql/etc/grammar/PldocAST.jjt
    M 
pmd-plsql/src/test/java/net/sourceforge/pmd/lang/plsql/PLSQLParserTest.java
    A 
pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/MultiLineSelect.pls
    A 
pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/SingleLineSelect.pls

  Log Message:
  -----------
  [plsql] fixed multiline SELECT parse

fixed multiline SELECT parse. Parsing skips SELECT statements to the ';'
delimiter or end of line. If statement terminated by the end of line,
next line starting from the middle of SELECT statement will fail to
parse. For example,
SELECT 1
INTO V
FROM DUAL;
will fail.


  Commit: 90862cc9935790af0cd96deeaf98c86fe1c1c42c
      https://github.com/pmd/pmd/commit/90862cc9935790af0cd96deeaf98c86fe1c1c42c
  Author: sergey <[email protected]>
  Date:   2016-11-22 (Tue, 22 Nov 2016)

  Changed paths:
    M pmd-plsql/etc/grammar/PldocAST.jjt
    M 
pmd-plsql/src/main/java/net/sourceforge/pmd/lang/plsql/rule/AbstractPLSQLRule.java
    M 
pmd-plsql/src/test/java/net/sourceforge/pmd/lang/plsql/PLSQLParserTest.java
    A pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/IsNull.pls

  Log Message:
  -----------
  Added correct parse of IS [NOT] NULL

fixed crash of parsing following code (from unittest):
IF V_BUF IS NULL THEN
null;
end if;


  Commit: ec13ff1662bbc7bb880d3438338198f1ede3ccad
      https://github.com/pmd/pmd/commit/ec13ff1662bbc7bb880d3438338198f1ede3ccad
  Author: sergey <[email protected]>
  Date:   2016-11-22 (Tue, 22 Nov 2016)

  Changed paths:
    M 
pmd-plsql/src/main/java/net/sourceforge/pmd/lang/plsql/ast/PLSQLParserVisitorAdapter.java

  Log Message:
  -----------
  missing change in PLSQLParserVisitorAdapter

missing change in PLSQLParserVisitorAdapter


  Commit: 5cf9a4d665e8910c2c1837e0721496e07d1916d3
      https://github.com/pmd/pmd/commit/5cf9a4d665e8910c2c1837e0721496e07d1916d3
  Author: sergey <[email protected]>
  Date:   2016-11-22 (Tue, 22 Nov 2016)

  Changed paths:
    M pmd-plsql/etc/grammar/PldocAST.jjt
    M 
pmd-plsql/src/test/java/net/sourceforge/pmd/lang/plsql/PLSQLParserTest.java
    A 
pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/MultiLineSelect.pls
    A 
pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/SingleLineSelect.pls

  Log Message:
  -----------
  [plsql] fixed multiline SELECT parse

fixed multiline SELECT parse. Parsing skips SELECT statements to the ';'
delimiter or end of line. If statement terminated by the end of line,
next line starting from the middle of SELECT statement will fail to
parse. For example,
SELECT 1
INTO V
FROM DUAL;
will fail.


  Commit: c88c1a02d41bc7f91500e10edfb776155ca1a317
      https://github.com/pmd/pmd/commit/c88c1a02d41bc7f91500e10edfb776155ca1a317
  Author: Juan Martín Sotuyo Dodero <[email protected]>
  Date:   2016-11-22 (Tue, 22 Nov 2016)

  Changed paths:
    M src/site/markdown/overview/changelog.md

  Log Message:
  -----------
  Update changelog


  Commit: a280d00cce7581e311e49d591d2773b6f78769c5
      https://github.com/pmd/pmd/commit/a280d00cce7581e311e49d591d2773b6f78769c5
  Author: Juan Martín Sotuyo Dodero <[email protected]>
  Date:   2016-11-22 (Tue, 22 Nov 2016)

  Changed paths:
    M pmd-plsql/etc/grammar/PldocAST.jjt
    M 
pmd-plsql/src/main/java/net/sourceforge/pmd/lang/plsql/ast/PLSQLParserVisitorAdapter.java
    M 
pmd-plsql/src/main/java/net/sourceforge/pmd/lang/plsql/rule/AbstractPLSQLRule.java
    M 
pmd-plsql/src/test/java/net/sourceforge/pmd/lang/plsql/PLSQLParserTest.java
    A pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/IsNull.pls
    A 
pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/MultiLineSelect.pls
    A 
pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/SingleLineSelect.pls
    M src/site/markdown/overview/changelog.md

  Log Message:
  -----------
  Merge branch 'pr-129'


  Commit: 323bbbbca08dc20789fb854554084171b4f062f2
      https://github.com/pmd/pmd/commit/323bbbbca08dc20789fb854554084171b4f062f2
  Author: Juan Martín Sotuyo Dodero <[email protected]>
  Date:   2016-11-22 (Tue, 22 Nov 2016)

  Log Message:
  -----------
  Merge branch 'master' of https://github.com/xuthus/pmd


Compare: https://github.com/pmd/pmd/compare/c2cd2fb4bd10...323bbbbca08d
------------------------------------------------------------------------------
_______________________________________________
Pmd-commits mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/pmd-commits

Reply via email to