1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
$VAR1 = bless( {
'operands' => [
bless( {
'inner' => bless( {
'operands' => [
bless( {
'name' => [
'_exmpl_a'
]
}, 'OPTIMADE::Filter::Property' ),
bless( {
'name' => [
'_exmpl_b'
]
}, 'OPTIMADE::Filter::Property' )
],
'operator' => '>'
}, 'OPTIMADE::Filter::Comparison' )
}, 'OPTIMADE::Filter::Negation' ),
bless( {
'operands' => [
bless( {
'name' => [
'_exmpl_x'
]
}, 'OPTIMADE::Filter::Property' ),
'0'
],
'operator' => '>'
}, 'OPTIMADE::Filter::Comparison' )
],
'operator' => 'AND'
}, 'OPTIMADE::Filter::AndOr' );
== Filter ==
((NOT (_exmpl_a > _exmpl_b)) AND (_exmpl_x > "0"))
== SQL ==
NOT ('_exmpl_a' > '_exmpl_b') AND '_exmpl_x' > "0"
|