Signed-off-by: Harshit Gangal <harshit@planetscale.com>
This commit is contained in:
Harshit Gangal 2022-10-14 09:51:19 +00:00
Родитель 72993ea1f2
Коммит e5dbc203c2
2 изменённых файлов: 16 добавлений и 0 удалений

Просмотреть файл

@ -116,6 +116,8 @@ func StartServer(connParams, connAppDebugParams mysql.ConnParams, dbName string)
config.SignalSchemaChangeReloadIntervalSeconds = tabletenv.Seconds(2.1)
config.SignalWhenSchemaChange = true
config.Healthcheck.IntervalSeconds = 0.1
config.Oltp.TxTimeoutSeconds = 5
config.Olap.TxTimeoutSeconds = 5
gotBytes, _ := yaml2.Marshal(config)
log.Infof("Config:\n%s", gotBytes)
return StartCustomServer(connParams, connAppDebugParams, dbName, config)

Просмотреть файл

@ -1032,3 +1032,17 @@ func TestFailInfiniteSessions(t *testing.T) {
client.Release())
}
}
func TestReserveQueryTimeout(t *testing.T) {
client := framework.NewClient()
_, err := client.ReserveExecute("select sleep(19)", []string{"set sql_mode = ''"}, nil)
assert.NoError(t, err)
assert.NoError(t,
client.Release())
_, err = client.ReserveStreamExecute("select sleep(19)", []string{"set sql_mode = ''"}, nil)
assert.NoError(t, err)
assert.NoError(t,
client.Release())
}