This repository was archived by the owner on Sep 7, 2021. It is now read-only.
This repository is currently being migrated. It's locked while the migration is in progress.
This repository was archived by the owner on Sep 7, 2021. It is now read-only.
[BUG]新版xorm 在JOIN时不再自动对表名进行 table
处理么? #1074
Open
Description
session.Join("INNER","order","`t1`.id=`order`.id")
SELECT * FROM `t1` INNER JOIN order ON `t1`.id = `order`.id
生成SQL对 Join的表名没有做处理,导致 order 表 和 SQL 的 order by 关键字冲突,SQL语句报错。
正确的语句应该是
SELECT * FROM `t1` INNER JOIN `order` ON `t1`.id = `order`.id
在低版本中是有的,低版本中处理表名的方法是:
// Quote Use QuoteStr quote the string sql
func (engine *Engine) Quote(sql string) string {
return engine.quoteTable(sql)
}