forked from alibaba/druid
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
增加mysql ALTER COLUMN SET VISIBLE的解析支持 alibaba#5803
增加mysql ALTER COLUMN SET VISIBLE的解析支持 alibaba#5803
- Loading branch information
Showing
4 changed files
with
76 additions
and
3 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
57 changes: 57 additions & 0 deletions
57
core/src/test/java/com/alibaba/druid/bvt/sql/mysql/issues/Issue5803.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,57 @@ | ||
package com.alibaba.druid.bvt.sql.mysql.issues; | ||
|
||
import java.util.List; | ||
|
||
import com.alibaba.druid.DbType; | ||
import com.alibaba.druid.sql.ast.SQLStatement; | ||
import com.alibaba.druid.sql.parser.SQLParserUtils; | ||
import com.alibaba.druid.sql.parser.SQLStatementParser; | ||
|
||
import org.junit.Test; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
/** | ||
* @author lizongbo | ||
* @see <a href="https://github.com/alibaba/druid/issues/5803>Issue来源</a> | ||
* @see <a href="https://dev.mysql.com/doc/refman/8.0/en/invisible-indexes.html">Invisible Indexes</a> | ||
* @see <a href="https://dev.mysql.com/doc/refman/8.0/en/alter-table.html">ALTER TABLE Statement</a> | ||
*/ | ||
public class Issue5803 { | ||
|
||
@Test | ||
public void test_parse_alter_table() { | ||
for (DbType dbType : new DbType[]{ | ||
DbType.mysql, | ||
DbType.mariadb, | ||
|
||
}) { | ||
|
||
for (String sql : new String[]{ | ||
"ALTER TABLE t1 ALTER INDEX i_idx INVISIBLE;", | ||
"ALTER TABLE t1 ALTER INDEX i_idx VISIBLE;", | ||
"ALTER TABLE t2 ALTER INDEX j_idx INVISIBLE;", | ||
"ALTER TABLE t2 ALTER INDEX j_idx INVISIBLE;", | ||
"alter table tt ALTER COLUMN c1 SET VISIBLE;", | ||
"alter table tt ALTER COLUMN c1 SET INVISIBLE;", | ||
}) { | ||
System.out.println(dbType + "原始的sql===" + sql); | ||
SQLStatementParser parser = SQLParserUtils.createSQLStatementParser(sql, dbType); | ||
List<SQLStatement> statementList = parser.parseStatementList(); | ||
com.alibaba.druid.sql.ast.statement.SQLJoinTableSource ggg; | ||
String sqlGen = statementList.toString(); | ||
System.out.println(dbType + "生成的sql===" + sqlGen); | ||
StringBuilder sb = new StringBuilder(); | ||
for (SQLStatement statement : statementList) { | ||
sb.append(statement.toString()).append(";"); | ||
} | ||
sb.deleteCharAt(sb.length() - 1); | ||
parser = SQLParserUtils.createSQLStatementParser(sb.toString(), dbType); | ||
List<SQLStatement> statementListNew = parser.parseStatementList(); | ||
String sqlGenNew = statementList.toString(); | ||
System.out.println(dbType + "重新解析再生成的sql===" + sqlGenNew); | ||
assertEquals(statementList.toString(), statementListNew.toString()); | ||
} | ||
} | ||
} | ||
} |