From e84658a67024532e2aebb384fa4c30d59cf522f8 Mon Sep 17 00:00:00 2001 From: jievince <38901892+jievince@users.noreply.github.com> Date: Wed, 10 Nov 2021 20:35:45 +0800 Subject: [PATCH] debug --- .../vesoft/nebula/exchange/processor/ProcessorSuite.scala | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/nebula-exchange/src/test/scala/com/vesoft/nebula/exchange/processor/ProcessorSuite.scala b/nebula-exchange/src/test/scala/com/vesoft/nebula/exchange/processor/ProcessorSuite.scala index 1e139c60..caa8d60d 100644 --- a/nebula-exchange/src/test/scala/com/vesoft/nebula/exchange/processor/ProcessorSuite.scala +++ b/nebula-exchange/src/test/scala/com/vesoft/nebula/exchange/processor/ProcessorSuite.scala @@ -142,7 +142,11 @@ class ProcessorSuite extends Processor { // POINT(3 8) val geogPoint = Geography.ptVal(new Point(new Coordinate(3, 8))) - assert(extraValueForClient(row, "col15", map).equals(geogPoint)) + var geogPointExpect = extraValueForClient(row, "col15", map) + + println("jie, got" + geogPoint.toString()) + println("jie, expect" + geogPointExpect.toString()) + assert(geogPointExpect.equals(geogPoint)) // LINESTRING(3 8, 4.7 73.23) var line = new java.util.ArrayList[Coordinate]() line.add(new Coordinate(3, 8))