We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71c32d9 commit d439643Copy full SHA for d439643
1 file changed
src/test/java/net/sf/jsqlparser/test/create/CreateTableTest.java
@@ -239,6 +239,10 @@ public void testColumnConstraintWith() throws JSQLParserException {
239
public void testExcludeWhereConstraint() throws JSQLParserException {
240
assertSqlCanBeParsedAndDeparsed("CREATE TABLE foo (col1 integer, EXCLUDE WHERE (col1 > 100))");
241
}
242
+
243
+ public void testTimestampWithoutTimezone() throws JSQLParserException {
244
+ assertSqlCanBeParsedAndDeparsed("CREATE TABLE abc.tabc (transaction_date TIMESTAMP WITHOUT TIME ZONE)");
245
+ }
246
247
public void testRUBiSCreateList() throws Exception {
248
BufferedReader in = new BufferedReader(new InputStreamReader(CreateTableTest.class.getResourceAsStream("/RUBiS-create-requests.txt")));
0 commit comments