IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 67 | 67 | protected function get_sql_for_query( $query, $depth = 0 ) { |
| 68 | 68 | $sql_chunks = array( |
| 69 | 69 | 'join' => array(), |
| 70 | | 'where' => array(), |
| | 70 | 'where' => array( '1 = 1' ), |
| 71 | 71 | ); |
| 72 | 72 | |
| 73 | 73 | $sql = array( |
| 74 | 74 | 'join' => '', |
| 75 | | 'where' => '', |
| | 75 | 'where' => '1 = 1', |
| 76 | 76 | ); |
| 77 | 77 | |
| 78 | 78 | $indent = ''; |
IDEA additional info:
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
<+>UTF-8
|
|
|
|
| 247 | 247 | // Setup the main SQL query container. |
| 248 | 248 | $sql = array( |
| 249 | 249 | 'select' => '', |
| 250 | | 'where' => array('1=1'), |
| | 250 | 'where' => array( '1 = 1' ), |
| 251 | 251 | 'orderby' => '', |
| 252 | 252 | 'order' => '', |
| 253 | 253 | 'limit' => '' |