Skip to content

Commit e454790

Browse files
committed
fix RawColumn alias
1 parent 9782056 commit e454790

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 1.15.2 [2022-11-09]
2+
1. fix column alias
3+
14
## 1.15 [2022-03-24]
25
1. Add method to get column alias
36

src/RawColumn.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ public function __construct($value, $alias = null)
3333
$this->alias = new Identifier($alias);
3434
}
3535

36-
parent::__construct($value);
36+
parent::__construct($this->value);
3737
}
3838

3939
/**

0 commit comments

Comments
 (0)