Skip to content

Commit 2bc9137

Browse files
committed
support implicit table alias, close #5840 #5940
1 parent 3d91802 commit 2bc9137

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

chainable_api.go

+7-3
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ func (db *DB) Clauses(conds ...clause.Expression) (tx *DB) {
5555
return
5656
}
5757

58-
var tableRegexp = regexp.MustCompile(`(?i).+? AS (\w+)\s*(?:$|,)`)
58+
var tableRegexp = regexp.MustCompile(`(?i)(?:.+? AS (\w+)\s*(?:$|,)|^\w+\s+(\w+)$)`)
5959

6060
// Table specify the table you would like to run db operations
6161
//
@@ -65,8 +65,12 @@ func (db *DB) Table(name string, args ...interface{}) (tx *DB) {
6565
tx = db.getInstance()
6666
if strings.Contains(name, " ") || strings.Contains(name, "`") || len(args) > 0 {
6767
tx.Statement.TableExpr = &clause.Expr{SQL: name, Vars: args}
68-
if results := tableRegexp.FindStringSubmatch(name); len(results) == 2 {
69-
tx.Statement.Table = results[1]
68+
if results := tableRegexp.FindStringSubmatch(name); len(results) == 3 {
69+
if results[1] != "" {
70+
tx.Statement.Table = results[1]
71+
} else {
72+
tx.Statement.Table = results[2]
73+
}
7074
}
7175
} else if tables := strings.Split(name, "."); len(tables) == 2 {
7276
tx.Statement.TableExpr = &clause.Expr{SQL: tx.Statement.Quote(name)}

tests/go.mod

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,12 @@ module gorm.io/gorm/tests
33
go 1.16
44

55
require (
6-
github.com/go-sql-driver/mysql v1.7.0 // indirect
76
github.com/google/uuid v1.3.0
87
github.com/jinzhu/now v1.1.5
98
github.com/lib/pq v1.10.7
109
github.com/mattn/go-sqlite3 v1.14.16 // indirect
1110
github.com/microsoft/go-mssqldb v0.19.0 // indirect
12-
gorm.io/driver/mysql v1.4.4
11+
gorm.io/driver/mysql v1.4.5
1312
gorm.io/driver/postgres v1.4.6
1413
gorm.io/driver/sqlite v1.4.4
1514
gorm.io/driver/sqlserver v1.4.1

tests/soft_delete_test.go

+5
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,11 @@ func TestSoftDelete(t *testing.T) {
3939
t.Fatalf("invalid sql generated, got %v", sql)
4040
}
4141

42+
sql = DB.Session(&gorm.Session{DryRun: true}).Table("user u").Select("name").Find(&User{}).Statement.SQL.String()
43+
if !regexp.MustCompile(`SELECT .name. FROM user u WHERE .u.\..deleted_at. IS NULL`).MatchString(sql) {
44+
t.Errorf("Table with escape character, got %v", sql)
45+
}
46+
4247
if DB.First(&User{}, "name = ?", user.Name).Error == nil {
4348
t.Errorf("Can't find a soft deleted record")
4449
}

0 commit comments

Comments
 (0)