Sukerin commented on issue #7933: URL: https://github.com/apache/shardingsphere/issues/7933#issuecomment-717641570
> Can you push demo code to github? https://github.com/Sukerin/cloud-alibaba sql script ``` /* Navicat Premium Data Transfer Source Server : local Source Server Type : MySQL Source Server Version : 80022 Source Host : 127.0.0.1:3306 Source Schema : sharding_authentication0 Target Server Type : MySQL Target Server Version : 80022 File Encoding : 65001 Date: 28/10/2020 09:32:18 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for account -- ---------------------------- DROP TABLE IF EXISTS `account`; CREATE TABLE `account` ( `uuid` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL, `username` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '账号名', `user_id` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户ID', `user_no` int(0) NULL DEFAULT NULL, PRIMARY KEY (`uuid`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; SET FOREIGN_KEY_CHECKS = 1; ``` only need start **sharding-jdbc** ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
