Skip to content

Commit a65e489

Browse files
committed
Merge branch 'zachmu/quote-identifiers' of github.com:dolthub/go-mysql-server into zachmu/quote-identifiers
2 parents b3936fc + e921e6c commit a65e489

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/expression/get_field.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -170,11 +170,11 @@ func (p *GetField) String() string {
170170
// stripped away. The output of this method is load-bearing in many places of analysis and execution.
171171
if p.table == "" {
172172
if p.quoteName {
173-
return p.parser.QuoteIdentifier(p.name)
173+
return p.parser.QuoteIdentifier(p.name)
174174
}
175175
return p.name
176176
}
177-
177+
178178
return p.table + "." + p.name
179179
}
180180

0 commit comments

Comments
 (0)