Skip to content
This repository has been archived by the owner on Dec 1, 2022. It is now read-only.

data error when float + string #1214

Closed
HarrisChu opened this issue Jul 7, 2021 · 0 comments · Fixed by vesoft-inc/nebula-common#579
Closed

data error when float + string #1214

HarrisChu opened this issue Jul 7, 2021 · 0 comments · Fixed by vesoft-inc/nebula-common#579
Assignees
Labels
bug Type: something is unexpected

Comments

@HarrisChu
Copy link
Contributor

(root@nebula) [nba]> return "Yao Ming" + 30.142857142857142
+---------------------------------+
| ("Yao Ming"+30.142857142857142) |
+---------------------------------+
| "Yao Ming30.142857"             |
+---------------------------------+
Got 1 rows (time spent 272/3752 us)

(root@nebula) [nba]> return 30.142857142857142 + "Yao Ming"
+---------------------------------+
| (30.142857142857142+"Yao Ming") |
+---------------------------------+
| "30.142857Yao Ming"             |
+---------------------------------+
Got 1 rows (time spent 245/5082 us)


(root@nebula) [nba]> return 30.1428 + "Yao Ming"
+----------------------+
| (30.1428+"Yao Ming") |
+----------------------+
| "30.142800Yao Ming"  |
+----------------------+
Got 1 rows (time spent 287/9392 us)

in neo4j
image

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
bug Type: something is unexpected
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants