We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2aeb5e1 commit eefc119Copy full SHA for eefc119
tests/06_Query/QOM/QomTestQueries.php
@@ -402,6 +402,17 @@ public static function getQueries(\PHPCR\Query\QOM\QueryObjectModelFactoryInterf
402
array(),
403
array());
404
405
+ // SELECT * FROM nt:unstructured WHERE sel.prop > '2013-04-15'
406
+ $queries['6.7.27.1.PropertyValue'] =
407
+ $factory->createQuery(
408
+ $factory->selector('nt:unstructured'),
409
+ $factory->comparison(
410
+ $factory->propertyValue('prop', 'sel'),
411
+ Constants::JCR_OPERATOR_GREATER_THAN,
412
+ $factory->literal(new \DateTime('2013-04-15'))),
413
+ array(),
414
+ array());
415
+
416
/**
417
* 6.7.28. Length
418
*/
0 commit comments