Skip to content

Commit

Permalink
feat: support return string of geo type (vesoft-inc#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
hetao92 authored Oct 22, 2021
1 parent 0032dac commit 6645889
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions service/dao/dao.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ func getBasicValue(valWarp *nebula.ValueWrapper) (common.Any, error) {
return valWarp.String(), nil
} else if valType == "datetime" {
return valWarp.String(), nil
} else if valType == "geography" {
return valWarp.String(), nil
} else if valType == "empty" {
return "_EMPTY_", nil
}
Expand Down

0 comments on commit 6645889

Please sign in to comment.