1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-06 22:26:43 +02:00

DibiFluent: allowed multiple ->from('table')

This commit is contained in:
David Grudl
2010-08-03 21:54:01 +02:00
parent 204c4cdbd7
commit 9a4f1e6e36

View File

@@ -60,7 +60,7 @@ class DibiFluent extends DibiObject implements IDataSource
/** @var array clauses separators */
public static $separators = array(
'SELECT' => ',',
'FROM' => FALSE,
'FROM' => ',',
'WHERE' => 'AND',
'GROUP BY' => ',',
'HAVING' => 'AND',