| @@ -25,9 +25,6 @@ | |||||
| <if test="ray.dataset != null and ray.dataset !=''"> | <if test="ray.dataset != null and ray.dataset !=''"> | ||||
| dataset = #{ray.dataset}, | dataset = #{ray.dataset}, | ||||
| </if> | </if> | ||||
| <if test="ray.model != null and ray.model !=''"> | |||||
| model = #{ray.model}, | |||||
| </if> | |||||
| <if test="ray.codeConfig != null and ray.codeConfig !=''"> | <if test="ray.codeConfig != null and ray.codeConfig !=''"> | ||||
| code_config = #{ray.codeConfig}, | code_config = #{ray.codeConfig}, | ||||
| </if> | </if> | ||||
| @@ -49,12 +46,6 @@ | |||||
| <if test="ray.storagePath != null and ray.storagePath !=''"> | <if test="ray.storagePath != null and ray.storagePath !=''"> | ||||
| storage_path = #{ray.storagePath}, | storage_path = #{ray.storagePath}, | ||||
| </if> | </if> | ||||
| <if test="ray.searchAlg != null and ray.searchAlg !=''"> | |||||
| search_alg = #{ray.searchAlg}, | |||||
| </if> | |||||
| <if test="ray.scheduler != null and ray.scheduler !=''"> | |||||
| scheduler = #{ray.scheduler}, | |||||
| </if> | |||||
| <if test="ray.metric != null and ray.metric !=''"> | <if test="ray.metric != null and ray.metric !=''"> | ||||
| metric = #{ray.metric}, | metric = #{ray.metric}, | ||||
| </if> | </if> | ||||
| @@ -82,6 +73,9 @@ | |||||
| <if test="ray.state != null"> | <if test="ray.state != null"> | ||||
| state = #{ray.state}, | state = #{ray.state}, | ||||
| </if> | </if> | ||||
| model = #{ray.model}, | |||||
| scheduler = #{ray.scheduler}, | |||||
| search_alg = #{ray.searchAlg}, | |||||
| </set> | </set> | ||||
| where id = #{ray.id} | where id = #{ray.id} | ||||
| </update> | </update> | ||||