-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathQueryBuilder.php
More file actions
1271 lines (1095 loc) · 32.3 KB
/
QueryBuilder.php
File metadata and controls
1271 lines (1095 loc) · 32.3 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
declare(strict_types=1);
/*
* Studio 107 (c) 2018 Maxim Falaleev
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Mindy\QueryBuilder;
use Doctrine\DBAL\Connection;
use Exception;
use Mindy\QueryBuilder\Aggregation\Aggregation;
use Mindy\QueryBuilder\Q\Q;
use Mindy\QueryBuilder\Q\QAnd;
use Mindy\QueryBuilder\Utils\TableNameResolver;
class QueryBuilder implements QueryBuilderInterface
{
const SELECT = 'SELECT';
const INSERT = 'INSERT';
const UPDATE = 'UPDATE';
const DELETE = 'DELETE';
/**
* @var null|string sql query type SELECT|UPDATE|DELETE
*/
protected $type = self::SELECT;
protected $tablePrefix = '';
/**
* @var BaseAdapter
*/
protected $adapter;
/**
* @var LookupBuilderInterface
*/
protected $lookupBuilder;
/**
* Counter of joined tables aliases.
*
* @var int
*/
private $_aliasesCount = 0;
/**
* @var array
*/
private $_joinAlias = [];
/**
* @var Connection
*/
protected $connection;
/**
* @var array the array of SQL parts collected
*/
private $sqlParts = [
'select' => [],
'from' => [
'table' => null,
'alias' => null,
],
'distinct' => [],
'join' => [],
'set' => [],
'where' => [
'and' => [],
'or' => [],
],
'groupBy' => [],
'having' => null,
'limit' => null,
'offset' => null,
'orderBy' => [
'columns' => [],
'options' => null,
],
'values' => [],
'union' => [],
];
/**
* @return \Doctrine\DBAL\Platforms\AbstractPlatform
*/
public function getDatabasePlatform()
{
return $this->connection->getDatabasePlatform();
}
/**
* QueryBuilder constructor.
*
* @param Connection $connection
* @param BaseAdapter $adapter
* @param LookupBuilderInterface $lookupBuilder
*/
public function __construct(Connection $connection, BaseAdapter $adapter, LookupBuilderInterface $lookupBuilder)
{
$this->connection = $connection;
$this->adapter = $adapter;
$this->lookupBuilder = $lookupBuilder;
}
/**
* @param LookupCollectionInterface $lookupCollection
*
* @return $this
*/
public function addLookupCollection(LookupCollectionInterface $lookupCollection)
{
$this->lookupBuilder->addLookupCollection($lookupCollection);
return $this;
}
public function distinct($distinct)
{
$this->sqlParts['distinct'] = $distinct;
return $this;
}
/**
* @param Aggregation $aggregation
* @param string $columnAlias
*
* @return string
*/
protected function buildSelectFromAggregation(Aggregation $aggregation)
{
$tableAlias = $this->getAlias();
$rawColumns = $aggregation->getFields();
$newSelect = $this->getLookupBuilder()->buildJoin($this, $rawColumns);
if (false === $newSelect) {
if (empty($tableAlias) || '*' === $rawColumns) {
$columns = $rawColumns;
} else {
$columns = $tableAlias.'.'.$rawColumns;
}
} else {
list($alias, $joinColumn) = $newSelect;
$columns = $alias.'.'.$joinColumn;
}
$fieldsSql = $this->buildColumns($columns);
$aggregation->setFieldsSql($fieldsSql);
return $this->getAdapter()->quoteSql($aggregation->toSQL());
}
/**
* @param $columns
*
* @throws \Doctrine\DBAL\DBALException
*
* @return array|string
*/
protected function buildColumns($columns)
{
if (!is_array($columns)) {
if ($columns instanceof Aggregation) {
$columns->setFieldsSql($this->buildColumns($columns->getFields()));
return $this->getAdapter()->quoteSql($columns->toSQL());
} elseif (false !== strpos($columns, '(')) {
return $this->getAdapter()->quoteSql($columns);
}
$columns = preg_split('/\s*,\s*/', $columns, -1, PREG_SPLIT_NO_EMPTY);
}
foreach ($columns as $i => $column) {
if ($column instanceof Expression) {
$columns[$i] = $this->getAdapter()->quoteSql($column->toSQL());
} elseif (false !== strpos($column, 'AS')) {
if (preg_match('/^(.*?)(?i:\s+as\s+|\s+)([\w\-_\.]+)$/', $column, $matches)) {
list(, $rawColumn, $rawAlias) = $matches;
$columns[$i] = $this->getQuotedName($rawColumn).' AS '.$this->getQuotedName($rawAlias);
}
} elseif (false === strpos($column, '(')) {
$columns[$i] = $this->getQuotedName($column);
}
}
return is_array($columns) ? implode(', ', $columns) : $columns;
}
/**
* @throws \Doctrine\DBAL\DBALException
*
* @return string
*/
protected function buildSelect()
{
if (empty($this->sqlParts['select'])) {
$this->sqlParts['select'] = ['*'];
}
$builder = $this->getLookupBuilder();
$columns = [];
foreach ($this->sqlParts['select'] as $alias => $column) {
if ($column instanceof Aggregation) {
$columns[$alias] = $this->buildSelectFromAggregation($column);
} elseif (is_string($column)) {
if (false !== strpos($column, 'SELECT')) {
$columns[$alias] = $column;
} else {
$columns[$alias] = $this->addColumnAlias($builder->fetchColumnName($column));
}
} else {
$columns[$alias] = $column;
}
}
$selectSql = $this->sqlParts['distinct'] ? 'SELECT DISTINCT ' : 'SELECT ';
if (empty($columns)) {
return $selectSql.'*';
}
if (false === is_array($columns)) {
$columns = [$columns];
}
$select = [];
foreach ($columns as $column => $subQuery) {
if ($subQuery instanceof ToSqlInterface) {
$subQuery = $subQuery->toSQL();
} else {
$subQuery = $this->getAdapter()->quoteSql($subQuery);
}
if (is_numeric($column)) {
$column = $subQuery;
$subQuery = '';
}
if (!empty($subQuery)) {
if (false !== strpos($subQuery, 'SELECT')) {
$value = $this->columnAs(
'('.$subQuery.')',
$this->getQuotedName($column)
);
} else {
$value = $this->columnAs(
$this->getQuotedName($subQuery),
$this->getQuotedName($column)
);
}
} else {
$value = $this->normalizeColumns($column);
}
$select[] = $value;
}
return $selectSql.implode(', ', $select);
}
/**
* @param string $str
*
* @throws \Doctrine\DBAL\DBALException
*
* @return string
*/
public function getQuotedName($str): string
{
$platform = $this->connection->getDatabasePlatform();
$keywords = $platform->getReservedKeywordsList();
$parts = explode('.', (string) $str);
foreach ($parts as $k => $v) {
$parts[$k] = ($keywords->isKeyword($v)) ? $platform->quoteIdentifier($v) : $v;
}
return implode('.', $parts);
}
public function columnAs($x, $y): string
{
return $x.' AS '.$y;
}
/**
* @param string $input
*
* @return bool
*/
protected function columnHasAlias(string $input): bool
{
return false !== strpos($input, 'AS');
}
/**
* @param string $input
*
* @throws \Doctrine\DBAL\DBALException
*
* @return string
*/
protected function normalizeColumn(string $input): string
{
if ($this->columnHasAlias($input)) {
list($rawColumn, $rawAlias) = explode('AS', $input);
} else {
$rawColumn = $input;
$rawAlias = '';
}
$column = $this->getQuotedName(trim($rawColumn));
return empty($rawAlias) ?
$column :
$this->columnAs($column, $this->getQuotedName(trim($rawAlias)));
}
/**
* @param string $input
*
* @throws \Doctrine\DBAL\DBALException
*
* @return string
*/
protected function normalizeColumns(string $input): string
{
$result = [];
foreach (explode(',', $input) as $column) {
$result[] = $this->normalizeColumn($column);
}
return implode(', ', $result);
}
/**
* @param $select
* @param null $distinct
*
* @return $this
*/
public function select($select, $distinct = null)
{
if (null !== $distinct) {
$this->distinct($distinct);
}
if (empty($select)) {
return $this;
}
$builder = $this->getLookupBuilder();
$parts = [];
if (is_array($select)) {
foreach ($select as $key => $part) {
if (is_string($part)) {
$newSelect = $builder->buildJoin($this, $part);
if ($newSelect) {
list($alias, $column) = $newSelect;
$parts[$key] = $alias.'.'.$column;
} else {
$parts[$key] = $part;
}
} else {
$parts[$key] = $part;
}
}
} elseif (is_string($select)) {
$newSelect = $builder->buildJoin($this, $select);
if ($newSelect) {
list($alias, $column) = $newSelect;
$parts[$alias] = $column;
} else {
$parts[] = $select;
}
} else {
$parts[] = $select;
}
$this->sqlParts['select'] = $parts;
return $this;
}
/**
* @param $table string
* @param null $alias
*
* @return $this
*/
public function table($table, $alias = null)
{
$this->sqlParts['from']['table'] = $table;
if ($alias) {
$this->sqlParts['from']['alias'] = $alias;
}
return $this;
}
/**
* @param $alias string join alias
*
* @return bool
*/
public function hasJoin($alias)
{
return array_key_exists($alias, $this->sqlParts['join']);
}
/**
* @param int $page
* @param int $pageSize
*
* @return $this
*/
public function paginate($page = 1, $pageSize = 10)
{
return $this
->limit($pageSize)
->offset($page > 1 ? $pageSize * ($page - 1) : 0);
}
public function limit($limit)
{
$this->sqlParts['limit'] = $limit;
return $this;
}
/**
* @param $offset
*
* @return $this
*/
public function offset($offset)
{
$this->sqlParts['offset'] = $offset;
return $this;
}
/**
* @return LookupBuilderInterface
*/
public function getLookupBuilder(): LookupBuilderInterface
{
return $this->lookupBuilder;
}
/**
* @return AdapterInterface
*/
public function getAdapter(): AdapterInterface
{
return $this->adapter;
}
/**
* @param $joinType string LEFT JOIN, RIGHT JOIN, etc...
* @param $tableName string
* @param array $on link columns
* @param string $alias string
*
* @throws Exception
*
* @return $this
*/
public function join($joinType, $tableName = '', $on = [], $alias = '')
{
if (is_string($joinType) && empty($tableName)) {
$this->sqlParts['join'][] = $this->getAdapter()->quoteSql($joinType);
} elseif ($tableName instanceof self) {
$this->sqlParts['join'][] = $this->sqlJoin($joinType, $tableName, $on, $alias);
} else {
$this->sqlParts['join'][$tableName] = $this->sqlJoin($joinType, $tableName, $on, $alias);
$this->_joinAlias[$tableName] = $alias;
}
return $this;
}
/**
* @param string $sql
*
* @return $this
*/
public function joinRaw(string $sql)
{
$this->sqlParts['join'][] = $this->getAdapter()->quoteSql($sql);
return $this;
}
/**
* @param string|array $columns columns
*
* @return $this
*/
public function group($columns)
{
if (false === is_array($columns)) {
$columns = explode(',', $columns);
}
$this->sqlParts['groupBy'] = array_merge(
$this->sqlParts['groupBy'],
$columns
);
return $this;
}
/**
* @param array|string $columns columns
* @param null $options
*
* @return $this
*/
public function order($columns, $options = null)
{
$this->sqlParts['orderBy'] = [
'columns' => $columns,
'options' => $options,
];
return $this;
}
/**
* Clear properties.
*
* @return $this
*/
public function clear()
{
$this->type = self::SELECT;
$this->resetQueryParts();
return $this;
}
/**
* @return array
*/
protected function defaultQueryParts(): array
{
return [
'select' => [],
'from' => [
'table' => null,
'alias' => null,
],
'distinct' => [],
'join' => [],
'set' => [],
'where' => [
'and' => [],
'or' => [],
],
'groupBy' => [],
'having' => null,
'limit' => null,
'offset' => null,
'orderBy' => [
'columns' => [],
'options' => null,
],
'values' => [],
'union' => [],
];
}
/**
* Resets SQL parts.
*
* @return $this this QueryBuilder instance
*/
public function resetQueryParts()
{
foreach (array_keys($this->sqlParts) as $key) {
$this->resetQueryPart($key);
}
return $this;
}
/**
* Resets a single SQL part.
*
* @param string $queryPartName
*
* @return $this this QueryBuilder instance
*/
public function resetQueryPart($queryPartName)
{
$defaults = $this->defaultQueryParts();
$this->sqlParts[$queryPartName] = $defaults[$queryPartName];
return $this;
}
/**
* @return $this
*/
public function insert()
{
$this->type = self::INSERT;
return $this;
}
/**
* @return $this
*/
public function update()
{
$this->type = self::UPDATE;
return $this;
}
/**
* @return string|null
*/
public function getAlias()
{
return $this->sqlParts['from']['alias'];
}
/**
* @param string $alias
*
* @return $this
*/
public function setAlias($alias)
{
$this->sqlParts['from']['alias'] = $alias;
return $this;
}
public function buildCondition($condition, &$params = [])
{
if (!is_array($condition)) {
return (string) $condition;
} elseif (empty($condition)) {
return '';
}
if (isset($condition[0]) && is_string($condition[0])) {
$operatorRaw = array_shift($condition);
$operator = strtoupper($operatorRaw);
return $this->buildAndCondition($operator, $condition, $params);
}
return $this->parseCondition($condition);
}
public function getJoinAlias($tableName)
{
return $this->_joinAlias[$tableName];
}
/**
* @param $condition
*
* @return string
*/
protected function parseCondition($condition)
{
$tableAlias = $this->getAlias();
$parts = [];
if ($condition instanceof QueryBuilderAwareInterface) {
$condition->setQueryBuilder($this);
}
if ($condition instanceof Expression) {
$parts[] = $this->getAdapter()->quoteSql($condition->toSQL());
} elseif ($condition instanceof Q) {
$condition->setLookupBuilder($this->getLookupBuilder());
$condition->setAdapter($this->getAdapter());
$condition->setTableAlias($tableAlias);
$parts[] = $condition->toSQL();
} elseif ($condition instanceof ToSqlInterface) {
$parts[] = $condition->toSQL();
} elseif (is_array($condition)) {
foreach ($condition as $key => $value) {
if ($value instanceof Q) {
$parts[] = $this->parseCondition($value);
} else {
list($lookup, $column, $lookupValue) = $this->lookupBuilder->parseLookup($this, $key, $value);
$column = $this->getLookupBuilder()->fetchColumnName($column);
if (false === empty($tableAlias) && false === strpos($column, '.')) {
$column = $tableAlias.'.'.$column;
}
$parts[] = $this->lookupBuilder->runLookup($this->getAdapter(), $lookup, $column, $lookupValue);
}
}
} elseif (is_string($condition)) {
$parts[] = $condition;
} elseif ($condition instanceof Expression) {
$parts[] = $condition->toSQL();
}
if (1 === count($parts)) {
return $parts[0];
}
return '('.implode(') AND (', $parts).')';
}
public function buildAndCondition($operator, $operands, &$params)
{
$parts = [];
foreach ($operands as $operand) {
if (is_array($operand)) {
$operand = $this->buildCondition($operand, $params);
} else {
$operand = $this->parseCondition($operand);
}
if ('' !== $operand) {
$parts[] = $this->getAdapter()->quoteSql($operand);
}
}
if (!empty($parts)) {
return '('.implode(') '.$operator.' (', $parts).')';
}
return '';
}
/**
* @param $condition
*
* @return $this
*/
public function where($condition)
{
$this->sqlParts['where']['and'][] = $condition;
return $this;
}
/**
* @param $condition
*
* @return $this
*/
public function orWhere($condition)
{
$this->sqlParts['where']['or'][] = $condition;
return $this;
}
/**
* @return array
*/
public function buildWhereTree()
{
$where = [];
foreach ($this->sqlParts['where']['and'] as $condition) {
if (empty($where)) {
$where = ['and', $condition];
} else {
$where = ['and', $where, ['and', $condition]];
}
}
foreach ($this->sqlParts['where']['or'] as $condition) {
if (empty($where)) {
$where = ['or', $condition];
} else {
$where = ['or', $where, ['and', $condition]];
}
}
return $where;
}
public function buildWhere()
{
$params = [];
$sql = $this->buildCondition($this->buildWhereTree(), $params);
return empty($sql) ? '' : ' WHERE '.$sql;
}
protected function getSQLForSelect(): string
{
$where = $this->buildWhere();
$order = $this->buildOrder();
$union = $this->buildUnion();
$select = $this->buildSelect();
$from = $this->buildFrom();
$join = $this->buildJoin();
$group = $this->buildGroup();
$having = $this->buildHaving();
$limitOffset = $this->buildLimitOffset();
return strtr('{select}{from}{join}{where}{group}{having}{order}{limit_offset}{union}', [
'{select}' => $select,
'{from}' => $from,
'{where}' => $where,
'{group}' => $group,
'{order}' => empty($union) ? $order : '',
'{having}' => $having,
'{join}' => $join,
'{limit_offset}' => $limitOffset ? ' '.$limitOffset : '',
'{union}' => empty($union) ? '' : $union.$order,
]);
}
public function getSQLForDelete(): string
{
return sprintf(
'DELETE%s%s',
$this->buildFrom(),
$this->buildWhere()
);
}
public function getSQLForUpdate(): string
{
$this->setAlias(null);
$table = TableNameResolver::getTableName(
$this->sqlParts['from']['table'],
$this->tablePrefix
);
$parts = [];
$rows = $this->sqlParts['values'];
foreach (array_shift($rows) as $column => $value) {
if ($value instanceof ToSqlInterface) {
$val = $this->getAdapter()->quoteSql($value->toSQL());
} else {
$val = $this->getAdapter()->getSqlType($value);
}
$parts[] = $this->getQuotedName($column).' = '.$val;
}
return sprintf(
'UPDATE %s SET %s%s',
$this->getQuotedName($table),
implode(', ', $parts),
$this->buildWhere()
);
}
/**
* @throws \Doctrine\DBAL\DBALException
*
* @return string
*/
public function toSQL(): string
{
switch ($this->type) {
case self::INSERT:
$sql = $this->getSQLForInsert();
break;
case self::DELETE:
$sql = $this->getSQLForDelete();
break;
case self::UPDATE:
$sql = $this->getSQLForUpdate();
break;
case self::SELECT:
default:
$sql = $this->getSQLForSelect();
break;
}
return $sql;
}
public function buildHaving()
{
if (empty($this->_having)) {
return '';
}
if ($this->sqlParts['having'] instanceof Q) {
$sql = $this->sqlParts['having']->toSQL();
} else {
$sql = $this->quoteSql($this->sqlParts['having']);
}
return empty($sql) ? '' : ' HAVING '.$sql;
}
/**
* @return string
*/
public function buildLimitOffset(): string
{
$sql = $this
->connection
->createQueryBuilder()
->setMaxResults($this->sqlParts['limit'])
->setFirstResult($this->sqlParts['offset']);
return trim(str_replace('SELECT', '', $sql));
}
public function buildUnion()
{
$sql = '';
foreach ($this->sqlParts['union'] as $part) {
list($union, $all) = $part;
if (empty($union)) {
continue;
}
if ($union instanceof self) {
$unionSQL = $union->order(null)->toSQL();
} else {
$unionSQL = $this->getAdapter()->quoteSql($union);
}
$sql .= ($all ? ' UNION ALL' : ' UNION').' ('.$unionSQL.')';
}
return empty($sql) ? '' : $sql;
}
/**
* @param $joinType string
* @param $tableName string
* @param $on string|array
* @param $alias string
*
* @throws \Doctrine\DBAL\DBALException
*
* @return string
*/
public function sqlJoin($joinType, $tableName, $on, $alias)
{
if (is_string($tableName)) {
$tableName = TableNameResolver::getTableName($tableName, $this->tablePrefix);
} elseif ($tableName instanceof self) {
$tableName = $tableName->toSQL();
}
$onSQL = [];
if (is_string($on)) {
$onSQL[] = $this->getAdapter()->quoteSql($on);
} else {
foreach ($on as $leftColumn => $rightColumn) {
if ($rightColumn instanceof Expression) {
$onSQL[] = $this->getQuotedName($leftColumn).'='.$this->getAdapter()->quoteSql($rightColumn->toSQL());
} else {
$onSQL[] = $this->getQuotedName($leftColumn).'='.$this->getQuotedName($rightColumn);
}
}
}
if (false !== strpos($tableName, 'SELECT')) {
return $joinType.' ('.$this->getAdapter()->quoteSql($tableName).')'.(empty($alias) ? '' : ' AS '.$this->getQuotedName($alias)).' ON '.implode(',', $onSQL);
}
return $joinType.' '.$this->getQuotedName($tableName).(empty($alias) ? '' : ' AS '.$this->getQuotedName($alias)).' ON '.implode(',', $onSQL);
}
public function getSchema()
{
return $this->schema;
}
/**
* @param string|ToSqlInterface $having
*
* @return $this
*/
public function having($having)
{
if (false == ($having instanceof Q)) {
$having = new QAnd($having);
}
$having->setLookupBuilder($this->getLookupBuilder());
$having->setAdapter($this->getAdapter());
$this->sqlParts['having'] = $having;
return $this;
}
public function union($union, $all = false)
{
$this->sqlParts['union'][] = [$union, $all];
return $this;
}