Postgres refactor.

This commit is contained in:
go-jet 2019-08-11 09:52:02 +02:00
parent d00167cbba
commit 8519ccbdd0
57 changed files with 2451 additions and 598 deletions

View file

@ -14,7 +14,7 @@ func newAlias(expression Expression, aliasName string) Projection {
func (a *alias) fromImpl(subQuery SelectTable) Projection {
column := newColumn(a.alias, "", nil)
column.parent = &column
column.Parent = &column
column.subQuery = subQuery
return &column