lib/stores/modules/ldap_compiler.php 1 location
|
@@ 152-155 (lines=4) @@
|
| 149 |
|
$left=$this->compile_tree($node["left"]); |
| 150 |
|
break; |
| 151 |
|
|
| 152 |
|
case 'orderby': |
| 153 |
|
$result=$this->compile_tree($node["left"]); |
| 154 |
|
$this->orderby_s=$this->compile_tree($node["right"]); |
| 155 |
|
break; |
| 156 |
|
|
| 157 |
|
case 'orderbyfield': |
| 158 |
|
$this->in_orderby = true; |
lib/stores/modules/mysql_compiler.php 1 location
|
@@ 256-259 (lines=4) @@
|
| 253 |
|
} |
| 254 |
|
break; |
| 255 |
|
|
| 256 |
|
case 'orderby': |
| 257 |
|
$result=$this->compile_tree($node["left"]); |
| 258 |
|
$this->orderby_s=$this->compile_tree($node["right"]); |
| 259 |
|
break; |
| 260 |
|
|
| 261 |
|
case 'orderbyfield': |
| 262 |
|
$this->in_orderby = true; |
lib/stores/modules/postgresql_compiler.php 1 location
|
@@ 233-236 (lines=4) @@
|
| 230 |
|
} |
| 231 |
|
break; |
| 232 |
|
|
| 233 |
|
case 'orderby': |
| 234 |
|
$result=$this->compile_tree($node["left"]); |
| 235 |
|
$this->orderby_s=$this->compile_tree($node["right"]); |
| 236 |
|
break; |
| 237 |
|
|
| 238 |
|
case 'orderbyfield': |
| 239 |
|
$this->in_orderby = true; |