mirror of
https://gitee.com/dromara/liteFlow.git
synced 2026-05-15 12:32:09 +08:00
修改sql插件的测试用例
This commit is contained in:
@@ -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 {
|
||||
|
||||
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user