File: parse_024.out

package info (click to toggle)
liboptimade-filter-perl 0.11.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 764 kB
  • sloc: perl: 947; makefile: 2
file content (31 lines) | stat: -rw-r--r-- 1,917 bytes parent folder | download | duplicates (3)
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
$VAR1 = bless( {
                 'operands' => [
                                 bless( {
                                          'operands' => [
                                                          bless( {
                                                                   'name' => [
                                                                               'prototype_formula'
                                                                             ]
                                                                 }, 'OPTIMADE::Filter::Property' ),
                                                          'C2'
                                                        ],
                                          'operator' => 'CONTAINS'
                                        }, 'OPTIMADE::Filter::Comparison' ),
                                 bless( {
                                          'operands' => [
                                                          bless( {
                                                                   'name' => [
                                                                               'prototype_formula'
                                                                             ]
                                                                 }, 'OPTIMADE::Filter::Property' ),
                                                          'A2'
                                                        ],
                                          'operator' => 'STARTS WITH'
                                        }, 'OPTIMADE::Filter::Comparison' )
                               ],
                 'operator' => 'AND'
               }, 'OPTIMADE::Filter::AndOr' );
== Filter ==
((prototype_formula CONTAINS "C2") AND (prototype_formula STARTS WITH "A2"))
== SQL ==
'prototype_formula' LIKE "%C2%" AND 'prototype_formula' LIKE "A2%"