You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
在分库分表里面,要考虑的一个核心问题是如何重写 SQL。从理论上来说,重写 SQL 就是一个操作 AST 树的过程。在分库分表这个话题之下,额外要求重写 SQL 的过程必须:
首先兼容性排除掉了 PingCAP 为 MySQL 写的 parser。那么我们可以考虑的就是 ANTLR,YACC 和 Bison 了。
做选型要考虑的是:
ANTLR
TODO 待补充
YACC
TODO 待补充
Bison
TODO 待补充
Beta Was this translation helpful? Give feedback.
All reactions