From df169f70273a017f6f52e735ec8f608dfc1785c0 Mon Sep 17 00:00:00 2001 From: Andreas Dangel Date: Sun, 27 Jan 2019 11:34:01 +0100 Subject: [PATCH] [plsql] Fix build: table is a reserved word so can't be used as a table name --- .../sourceforge/pmd/lang/plsql/ast/WhereClauseFunctionCall.pls | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/WhereClauseFunctionCall.pls b/pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/WhereClauseFunctionCall.pls index c777b1747c..484569f3ec 100644 --- a/pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/WhereClauseFunctionCall.pls +++ b/pmd-plsql/src/test/resources/net/sourceforge/pmd/lang/plsql/ast/WhereClauseFunctionCall.pls @@ -18,7 +18,7 @@ BEGIN SELECT value INTO v_value - FROM table + FROM mytable WHERE colname = utils.get_colname('COLUMN_ID'); END;