未验证 提交 cd7218da 编写于 作者: E Eric Gao 提交者: GitHub

[fix] Fix error problem on h2 startup data quality rule management page (#12108) (#12781)

Co-authored-by: Jegger_Z's avatarjegger <zhangbq3306@163.com>
Co-authored-by: Njegger <60912722+boy-xiaozhang@users.noreply.github.com>
Co-authored-by: Jegger_Z's avatarjegger <zhangbq3306@163.com>
上级 0f439b40
...@@ -24,7 +24,7 @@ ...@@ -24,7 +24,7 @@
a.field, a.field,
a.type, a.type,
a.title, a.title,
a.value, a.`value`,
a.options, a.options,
a.placeholder, a.placeholder,
a.option_source_type, a.option_source_type,
......
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.dolphinscheduler.dao.mapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import org.apache.dolphinscheduler.dao.BaseDaoTest;
import org.apache.dolphinscheduler.dao.entity.DqRule;
import org.apache.dolphinscheduler.dao.entity.DqRuleInputEntry;
import org.junit.Test;
import org.springframework.beans.factory.annotation.Autowired;
import java.util.List;
/**
* DQC rule mapper UT.
*/
public class DqRuleInputEntryMapperTest extends BaseDaoTest {
@Autowired
private DqRuleInputEntryMapper dqRuleInputEntryMapper;
@Autowired
private DqRuleMapper dqRuleMapper;
@Test
public void testDqcRulePageList() {
Page<DqRule> page = new Page<>(1, 10);
IPage<DqRule> dqRulePage =
dqRuleMapper.queryRuleListPaging(
page,
"",
-1,
null,
null);
dqRulePage.getRecords().forEach(rule -> {
final List<DqRuleInputEntry> ruleInputEntryList = dqRuleInputEntryMapper.getRuleInputEntryList(1);
assert ruleInputEntryList != null;
});
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册