add comment for Name method in OrderBy struct

This commit is contained in:
Or Ben Chitrit 2025-02-19 23:07:05 +02:00
parent 4817f2c3d3
commit 06bcac70aa

View File

@ -17,6 +17,7 @@ type OrderBy struct {
Exprs []Expression Exprs []Expression
} }
// Name where clause name
func (orderBy OrderBy) Name() string { func (orderBy OrderBy) Name() string {
return "ORDER BY" return "ORDER BY"
} }