1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

Merge 6f365213cec84ea23db7ce6fab8904764f1ead80 into 1534abdb050acaa5aa6ef27f94e91bca97e6faa3

This commit is contained in:
LiZhengHao 2025-04-04 20:47:52 +08:00 committed by GitHub
commit bca5019765
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 33 additions and 1 deletions

View File

@ -23,6 +23,38 @@ import (
"github.com/gogf/gf/cmd/gf/v2/internal/cmd/gendao"
)
// https://github.com/gogf/gf/issues/1761
func Test_Gen_Dao_Issue_1761(t *testing.T) {
gtest.C(t, func(t *gtest.T) {
db, err := gdb.New(gdb.ConfigNode{
Link: "mssql:sa:test.123456@tcp(127.0.0.1:1433)/test?encrypt=disable",
})
t.AssertNil(err)
var (
table = "user1"
sqlContent = `
CREATE TABLE [user1] (
[id] INT IDENTITY(1,1) NOT NULL PRIMARY KEY,
[name] VARCHAR(45) NOT NULL,
);
`
)
if _, err := db.Exec(ctx, sqlContent); err != nil {
gtest.Error(err)
}
defer func(db gdb.DB, table string) {
dropTableStmt := fmt.Sprintf("DROP TABLE IF EXISTS [%s]", table)
if _, err := db.Exec(ctx, dropTableStmt); err != nil {
gtest.Error(err)
}
}(db, table)
tables, err := db.Tables(ctx)
t.AssertNil(err)
t.Assert(len(tables), 1)
t.Assert(tables[0], table)
})
}
// https://github.com/gogf/gf/issues/2572
func Test_Gen_Dao_Issue2572(t *testing.T) {
gtest.C(t, func(t *gtest.T) {

View File

@ -13,7 +13,7 @@ import (
)
const (
tablesSqlTmp = `SELECT NAME FROM SYSOBJECTS WHERE XTYPE='U' AND STATUS >= 0 ORDER BY NAME`
tablesSqlTmp = `SELECT name FROM sys.objects WHERE type='U' AND is_ms_shipped = 0 ORDER BY name`
)
// Tables retrieves and returns the tables of current schema.