ShowColumnsStatementTest.java
/*-
* #%L
* JSQLParser library
* %%
* Copyright (C) 2004 - 2019 JSQLParser
* %%
* Dual licensed under GNU LGPL 2.1 or Apache License 2.0
* #L%
*/
package net.sf.jsqlparser.statement;
import net.sf.jsqlparser.JSQLParserException;
import static net.sf.jsqlparser.test.TestUtils.assertSqlCanBeParsedAndDeparsed;
import org.junit.jupiter.api.Test;
/**
*
* @author oshai
*/
public class ShowColumnsStatementTest {
@Test
public void testSimpleUse() throws JSQLParserException {
assertSqlCanBeParsedAndDeparsed("SHOW COLUMNS FROM mydatabase");
}
}