"where contains([nt:base].[text], cast('hello OR hallo' as string)) */",
getResult(q.execute(), "plan"));
// verify the result
// uppercase "OR" mean logical "or"
q = qm.createQuery(sql2, Query.JCR_SQL2);
assertEquals("/testroot/node1, /testroot/node2, /testroot/node3",
getResult(q.execute(), "path"));
// lowercase "or" mean search for the term "or"
sql2 = "select [jcr:path] as [path] from [nt:base] " +