-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8db97e9
commit 2dcd64a
Showing
26 changed files
with
497 additions
and
94 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 43 additions & 0 deletions
43
.../main/java/com/aliyun/fastmodel/transform/api/builder/merge/exception/MergeErrorCode.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Copyright [2024] [name of copyright owner] | ||
* | ||
* Licensed 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 com.aliyun.fastmodel.transform.api.builder.merge.exception; | ||
|
||
import lombok.Getter; | ||
|
||
/** | ||
* merge error code | ||
* | ||
* @author panguanjing | ||
* @date 2024/5/1 | ||
*/ | ||
public enum MergeErrorCode { | ||
/** | ||
* create table not exists | ||
*/ | ||
ERR_CREATE_TABLE_NOT_EXISTS("Error: 'CREATE TABLE' statement not exists."), | ||
/** | ||
* 只允许有一个create table语句 | ||
*/ | ||
ERR_TOO_MANY_CREATE_TABLES("Error: Only one 'CREATE TABLE' statement is allowed."); | ||
@Getter | ||
private final String message; | ||
|
||
MergeErrorCode(String message) { | ||
this.message = message; | ||
} | ||
|
||
} |
36 changes: 36 additions & 0 deletions
36
.../main/java/com/aliyun/fastmodel/transform/api/builder/merge/exception/MergeException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
/* | ||
* Copyright [2024] [name of copyright owner] | ||
* | ||
* Licensed 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 com.aliyun.fastmodel.transform.api.builder.merge.exception; | ||
|
||
import lombok.Getter; | ||
|
||
/** | ||
* MergeException | ||
* | ||
* @author panguanjing | ||
* @date 2024/5/1 | ||
*/ | ||
public class MergeException extends RuntimeException { | ||
|
||
@Getter | ||
private final MergeErrorCode mergeErrorCode; | ||
|
||
public MergeException(MergeErrorCode mergeErrorCode) { | ||
super(mergeErrorCode.getMessage()); | ||
this.mergeErrorCode = mergeErrorCode; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
...va/com/aliyun/fastmodel/transform/api/builder/merge/impl/CreateTableMergeBuilderTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Copyright [2024] [name of copyright owner] | ||
* | ||
* Licensed 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 com.aliyun.fastmodel.transform.api.builder.merge.impl; | ||
|
||
import java.util.List; | ||
|
||
import com.aliyun.fastmodel.core.tree.BaseStatement; | ||
import com.aliyun.fastmodel.core.tree.QualifiedName; | ||
import com.aliyun.fastmodel.core.tree.statement.table.CreateTable; | ||
import com.aliyun.fastmodel.transform.api.builder.merge.exception.MergeException; | ||
import com.google.common.collect.Lists; | ||
import org.junit.Test; | ||
|
||
/** | ||
* Desc: | ||
* | ||
* @author panguanjing | ||
* @date 2024/5/1 | ||
*/ | ||
public class CreateTableMergeBuilderTest { | ||
|
||
@Test(expected = MergeException.class) | ||
public void testGetMainStatement() { | ||
CreateTableMergeBuilder createTableMergeBuilder = new CreateTableMergeBuilder(); | ||
List<BaseStatement> baseStatements = Lists.newArrayList( | ||
CreateTable.builder().tableName(QualifiedName.of("t1")).build(), | ||
CreateTable.builder().tableName(QualifiedName.of("t2")).build() | ||
); | ||
createTableMergeBuilder.getMainStatement(baseStatements); | ||
} | ||
|
||
@Test(expected = MergeException.class) | ||
public void testGetMainStatement2() { | ||
CreateTableMergeBuilder createTableMergeBuilder = new CreateTableMergeBuilder(); | ||
List<BaseStatement> baseStatements = Lists.newArrayList( | ||
); | ||
createTableMergeBuilder.getMainStatement(baseStatements); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,6 +66,7 @@ | |
<scope>test</scope> | ||
</dependency> | ||
|
||
|
||
</dependencies> | ||
|
||
<build> | ||
|
Oops, something went wrong.