- bug fixed in class Analyzing the query for keyword delete and update. space removed.

git-svn-id: https://svn.d4science.research-infrastructures.eu/gcube/trunk/data-access/DatabasesResourcesManager@101545 82a268e6-3cf1-43bd-a215-b396298e98cf
This commit is contained in:
Loredana Liccardo 2014-11-10 15:50:26 +00:00
parent 0410564abd
commit 4e18e1cd99
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ public class LexicalAnalyzer {
// the following keywords are common for MySQL and PostgreSQL databases.
BlackList.add("INSERT");
BlackList.add("DELETE ");
BlackList.add("UPDATE ");
BlackList.add("DELETE");
BlackList.add("UPDATE");
BlackList.add("CREATE");
BlackList.add("ALTER");
BlackList.add("DROP");