Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Function period_add is not compatible with MySQL 8.0 #10332

Closed
lonng opened this issue Apr 30, 2019 · 0 comments
Closed

Function period_add is not compatible with MySQL 8.0 #10332

lonng opened this issue Apr 30, 2019 · 0 comments

Comments

@lonng
Copy link
Contributor

lonng commented Apr 30, 2019

Bug Report

Please answer these questions before submitting your issue. Thanks!

  1. What did you do?
    If possible, provide a recipe for reproducing the error.

The period_add behavior is not compatible with MySQL 8.0

  1. What did you expect to see?

MySQL 8.0:

mysql> select period_add(128081,887);
ERROR 1210 (HY000): Incorrect arguments to period_add
mysql> select period_add(128011,887);
+------------------------+
| period_add(128011,887) |
+------------------------+
|                 135410 |
+------------------------+
1 row in set (0.00 sec)
  1. What did you see instead?
mysql> select period_add(128081,887);
+------------------------+
| period_add(128081,887) |
+------------------------+
|                 136008 |
+------------------------+
1 row in set (0.00 sec)

mysql> select period_add(128011,887);
+------------------------+
| period_add(128011,887) |
+------------------------+
|                 135410 |
+------------------------+
1 row in set (0.00 sec)
  1. What version of TiDB are you using (tidb-server -V or run select tidb_version(); on TiDB)?
mysql> select tidb_version();
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tidb_version()                                                                                                                                                                                                                                                                                                                                           |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Release Version: v3.0.0-beta.1-187-g5876abd70
Git Commit Hash: 5876abd70ccc054704ab0e8cbf02ed129c6efc76
Git Branch: refine-point-get-failpoint
UTC Build Time: 2019-04-30 03:35:49
GoVersion: go version go1.12 darwin/amd64
Race Enabled: false
TiKV Min Version: 2.1.0-alpha.1-ff3dd160846b7d1aed9079c389fc188f7f5ea13e
Check Table Before Drop: false |
+----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.01 sec)
@morgo morgo changed the title Function period_add dose not compatible with MySQL 8.0 Function period_add is not compatible with MySQL 8.0 May 3, 2019
@lonng lonng closed this as completed Jul 23, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant