File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
src/test/java/net/sf/jsqlparser/test/create Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -239,6 +239,10 @@ public void testColumnConstraintWith() throws JSQLParserException {
239
239
public void testExcludeWhereConstraint () throws JSQLParserException {
240
240
assertSqlCanBeParsedAndDeparsed ("CREATE TABLE foo (col1 integer, EXCLUDE WHERE (col1 > 100))" );
241
241
}
242
+
243
+ public void testTimestampWithoutTimezone () throws JSQLParserException {
244
+ assertSqlCanBeParsedAndDeparsed ("CREATE TABLE abc.tabc (transaction_date TIMESTAMP WITHOUT TIME ZONE)" );
245
+ }
242
246
243
247
public void testRUBiSCreateList () throws Exception {
244
248
BufferedReader in = new BufferedReader (new InputStreamReader (CreateTableTest .class .getResourceAsStream ("/RUBiS-create-requests.txt" )));
You can’t perform that action at this time.
0 commit comments