| @@ 172-180 (lines=9) @@ | ||
| 169 | return $sql; |
|
| 170 | } |
|
| 171 | ||
| 172 | private function getTableNameFromExpression($expr) |
|
| 173 | { |
|
| 174 | $pos = strpos($expr, '.'); |
|
| 175 | if ($pos === false) { |
|
| 176 | $pos = -1; |
|
| 177 | } |
|
| 178 | ||
| 179 | return trim(substr($expr, 0, $pos + 1), '.'); |
|
| 180 | } |
|
| 181 | ||
| 182 | private function getColumnNameFromExpression($expr) |
|
| 183 | { |
|
| @@ 182-190 (lines=9) @@ | ||
| 179 | return trim(substr($expr, 0, $pos + 1), '.'); |
|
| 180 | } |
|
| 181 | ||
| 182 | private function getColumnNameFromExpression($expr) |
|
| 183 | { |
|
| 184 | $pos = strpos($expr, '.'); |
|
| 185 | if ($pos === false) { |
|
| 186 | $pos = -1; |
|
| 187 | } |
|
| 188 | ||
| 189 | return substr($expr, $pos + 1); |
|
| 190 | } |
|
| 191 | ||
| 192 | private function isCLOBColumnInDB($table, $column) |
|
| 193 | { |
|