@@ -18,6 +18,9 @@ |
||
| 18 | 18 | */ |
| 19 | 19 | trait RelationMacros |
| 20 | 20 | { |
| 21 | + /** |
|
| 22 | + * @param string[] $columns |
|
| 23 | + */ |
|
| 21 | 24 | abstract public function project($columns): IRelation; |
| 22 | 25 | |
| 23 | 26 | abstract public function tuple(int $offset = 0): ITuple; |
@@ -7,7 +7,7 @@ |
||
| 7 | 7 | class Types |
| 8 | 8 | { |
| 9 | 9 | const BIGINT_MIN = '-9223372036854775808'; // NOTE: written as string not to lose precision on platforms where this |
| 10 | - const BIGINT_MAX = '999999999999'; // would be converted to float |
|
| 10 | + const BIGINT_MAX = '999999999999'; // would be converted to float |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * Lists names of types defined by SQL as reserved ones. |