From abfaeacf72fbd18bda07aa7d6891a7cb35e949fe Mon Sep 17 00:00:00 2001 From: douxin Date: Thu, 23 Sep 2021 19:59:20 +0800 Subject: [PATCH] [bugfix] repair testcase in GeometricTest because of line datatype is not supported in openGauss --- .../src/test/java/org/postgresql/test/jdbc2/GeometricTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pgjdbc/src/test/java/org/postgresql/test/jdbc2/GeometricTest.java b/pgjdbc/src/test/java/org/postgresql/test/jdbc2/GeometricTest.java index e2c8710..1ef5462 100644 --- a/pgjdbc/src/test/java/org/postgresql/test/jdbc2/GeometricTest.java +++ b/pgjdbc/src/test/java/org/postgresql/test/jdbc2/GeometricTest.java @@ -55,7 +55,7 @@ public class GeometricTest extends BaseTest4 { public void setUp() throws Exception { super.setUp(); TestUtil.createTable(con, "testgeometric", - "boxval box, circleval circle, lsegval lseg, pathval path, polygonval polygon, pointval point, lineval line"); + "boxval box, circleval circle, lsegval lseg, pathval path, polygonval polygon, pointval point"); } public void tearDown() throws SQLException { -- Gitee