!1145 Spelling correction in /hetu-docs/en/migration/from-hive.md file

Merge pull request !1145 from i-robot/pull55
This commit is contained in:
i-robot 2021-09-30 06:47:49 +00:00 committed by Gitee
commit 078abca66d
1 changed files with 1 additions and 1 deletions

View File

@ -81,7 +81,7 @@ In particular, use `VARCHAR` instead of `STRING`.
## Use CAST when dividing integers
openLooKeng follows the standard behavior of performing integer division when dividing two integers. For example, dividing `7` by `2` will result in `3`, not `3.5`. To perform floating point division on two integers, cast
openLooKeng follows the standard behaviour of performing integer division when dividing two integers. For example, dividing `7` by `2` will result in `3`, not `3.5`. To perform floating point division on two integers, cast
one of them to a double:
```sql