You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Can this bug be reproduced with the latest release?
Option Yes
What did you do?
// LIMIT 1
inputSql := `SELECT a,
b
FROM User WHERE ID = 1 LIMIT 1`
expectedSql := `SELECT TOP 1 a,
b
FROM User WHERE ID = 1`
resultSql, err := d.handleSelectSqlReplacement(inputSql)
t.AssertNil(err)
t.Assert(resultSql, expectedSql)
What did you see happen?
SELECT a,
b
FROM User WHERE ID = 1 LIMIT 1
What did you expect to see?
SELECT TOP 1 a,
b
FROM User WHERE ID = 1
The text was updated successfully, but these errors were encountered:
Go version
go version go1.23.4 windows/amd64
GoFrame version
2.8.3
Can this bug be reproduced with the latest release?
Option Yes
What did you do?
What did you see happen?
What did you expect to see?
The text was updated successfully, but these errors were encountered: