Skip sqlserver
This commit is contained in:
parent
451f81287a
commit
5ee04f5378
|
@ -400,6 +400,11 @@ func TestJoinWithSubQuery(t *testing.T) {
|
||||||
func TestQueryStringWithLimit(t *testing.T) {
|
func TestQueryStringWithLimit(t *testing.T) {
|
||||||
assert.NoError(t, PrepareEngine())
|
assert.NoError(t, PrepareEngine())
|
||||||
|
|
||||||
|
if testEngine.Dialect().URI().DBType == schemas.MSSQL {
|
||||||
|
t.SkipNow()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
type QueryWithLimit struct {
|
type QueryWithLimit struct {
|
||||||
Id int64 `xorm:"autoincr pk"`
|
Id int64 `xorm:"autoincr pk"`
|
||||||
Msg string `xorm:"varchar(255)"`
|
Msg string `xorm:"varchar(255)"`
|
||||||
|
|
Loading…
Reference in New Issue