Skip to content

Commit c77fe16

Browse files
committed
full outer join
1 parent 20b9ad5 commit c77fe16

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?php
2+
/***************************************************************************
3+
* Copyright (C) 2012 by Timofey A. Anisimov *
4+
* *
5+
* This program is free software; you can redistribute it and/or modify *
6+
* it under the terms of the GNU Lesser General Public License as *
7+
* published by the Free Software Foundation; either version 3 of the *
8+
* License, or (at your option) any later version. *
9+
* *
10+
***************************************************************************/
11+
12+
/**
13+
* @ingroup OSQL
14+
**/
15+
final class SQLFullOuterJoin extends SQLBaseJoin
16+
{
17+
/**
18+
* @param Dialect $dialect
19+
* @return string
20+
*/
21+
public function toDialectString(Dialect $dialect)
22+
{
23+
return parent::baseToString($dialect, 'FULL OUTER ');
24+
}
25+
26+
}

0 commit comments

Comments
 (0)