Skip to content

Commit 1bbba2c

Browse files
committed
fix table alias
1 parent 5eb1c84 commit 1bbba2c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

builder/builder.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func (f *FunBuilder) SetGrammar(grammarName string) {
6363
}
6464
}
6565
func (f *FunBuilder) GetTable() string {
66-
return "`" + f.table + "`"
66+
return f.table
6767
}
6868
func (f *FunBuilder) GetColumns() []string {
6969
return f.columns

0 commit comments

Comments
 (0)