Skip to content

Commit d439643

Browse files
committed
1 parent 71c32d9 commit d439643

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/test/java/net/sf/jsqlparser/test/create/CreateTableTest.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,10 @@ public void testColumnConstraintWith() throws JSQLParserException {
239239
public void testExcludeWhereConstraint() throws JSQLParserException {
240240
assertSqlCanBeParsedAndDeparsed("CREATE TABLE foo (col1 integer, EXCLUDE WHERE (col1 > 100))");
241241
}
242+
243+
public void testTimestampWithoutTimezone() throws JSQLParserException {
244+
assertSqlCanBeParsedAndDeparsed("CREATE TABLE abc.tabc (transaction_date TIMESTAMP WITHOUT TIME ZONE)");
245+
}
242246

243247
public void testRUBiSCreateList() throws Exception {
244248
BufferedReader in = new BufferedReader(new InputStreamReader(CreateTableTest.class.getResourceAsStream("/RUBiS-create-requests.txt")));

0 commit comments

Comments
 (0)