Closed 94pengchengxin closed 3 days ago
Thank you for your submission! We really appreciate it. Like many open source projects, we ask that you sign our Contributor License Agreement before we can accept your contribution.
You have signed the CLA already but the status is still pending? Let us recheck it.
Thanks for your this PR. :pray:
Please check again for your PR changes whether contains any usage/api/configuration change such as Add new API
, Add new configuration
, Change default value of configuration
.
If so, please add or update documents(markdown type) in docs/next/
for repository nacos-group/nacos-group.github.io
感谢您提交的PR。 :pray:
请再次查看您的PR内容,确认是否包含任何使用方式/API/配置参数的变更,如:新增API
、新增配置参数
、修改默认配置
等操作。
如果是,请确保在提交之前,在仓库nacos-group/nacos-group.github.io中的docs/next/
目录下添加或更新文档(markdown格式)。
…on line 159 in SQL file
Please do not create a Pull Request without creating an issue first.
What is the purpose of the change
Fix missing semicolon on line 64 and remove extra comma on line 159 in mysql-schema.sql file Although the pull request#12860 has been accepted, it seems that line 159 of the mysql-schema.sql file seems to have an extra comma, and I found a new problem: line 64 is missing a semicolon
Brief changelog
①Line 64: ) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='config_info_gray' -----》 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='config_info_tag';
②Line 159:
publish_type
varchar(50) DEFAULT 'formal' COMMENT 'publish type gray or formal',, -----》publish_type
varchar(50) DEFAULT 'formal' COMMENT 'publish type gray or formal',Verifying this change
Follow this checklist to help us incorporate your contribution quickly and easily:
[ISSUE #123] Fix UnknownException when host config not exist
. Each commit in the pull request should have a meaningful subject line and body.mvn -B clean package apache-rat:check findbugs:findbugs -Dmaven.test.skip=true
to make sure basic checks pass. Runmvn clean install -DskipITs
to make sure unit-test pass. Runmvn clean test-compile failsafe:integration-test
to make sure integration-test pass.