Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
jievince committed Nov 11, 2021
1 parent ef914f8 commit e84658a
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit e84658a

Please sign in to comment.