Commit 12526c44 authored by tristaZero's avatar tristaZero
Browse files

move sql set class.

parent 38247479
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -18,7 +18,6 @@
package io.shardingsphere.dbtest.env.authority;

import io.shardingsphere.core.constant.DatabaseType;
import io.shardingsphere.dbtest.env.authority.sql.SQLSet;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
+1 −7
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
 * </p>
 */

package io.shardingsphere.dbtest.env.authority.sql;
package io.shardingsphere.dbtest.env.authority;

import io.shardingsphere.core.constant.DatabaseType;
import lombok.Getter;
@@ -42,12 +42,6 @@ public final class SQLSet {
    @XmlAttribute(name = "db-types")
    private String dbTypes;
    
    @XmlAttribute(name = "sql-type")
    private SQLType sqlType;
    
    @XmlElement(name = "sql")
    private Collection<SQL> SQLs = new LinkedList<>();
    
    @XmlElementWrapper(name = "user-create")
    @XmlElement(name = "sql")
    private List<String> useCreateSQLs = new LinkedList<>();