修改sql插件的测试用例

This commit is contained in:
everywhere.z
2023-03-22 23:03:58 +08:00
parent b1da053961
commit 7c8f60ac07
2 changed files with 3 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ import javax.annotation.Resource;
@RunWith(SpringRunner.class)
@TestPropertySource(value = "classpath:/application-xml.properties")
@SpringBootTest(classes = SQLWithXmlELSpringbootTest.class)
@SpringBootTest(classes = SQLWithXmlELMultiLanguageSpringbootTest.class)
@EnableAutoConfiguration
@ComponentScan({ "com.yomahub.liteflow.test.sql.cmp" })
public class SQLWithXmlELMultiLanguageSpringbootTest extends BaseTest {

View File

@@ -1,4 +1,4 @@
create table `EL_TABLE`
create table IF NOT EXISTS `EL_TABLE`
(
`id` bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY,
`application_name` varchar(32) NOT NULL,
@@ -7,7 +7,7 @@ create table `EL_TABLE`
PRIMARY KEY (`id`)
);
create table `script_node_table`
create table IF NOT EXISTS `script_node_table`
(
`id` bigint NOT NULL GENERATED BY DEFAULT AS IDENTITY,
`application_name` varchar(32) NOT NULL,