[License] Modify the license of thirdparties (#4740)

About MySQL and LZO
This commit is contained in:
Mingyu Chen
2020-10-15 22:28:49 +08:00
committed by GitHub
parent 5909677cb3
commit ce270f0139

View File

@ -49,8 +49,10 @@ source: https://github.com/nemequ/lzo
LZO is under GNU General Public License Version 2(GPL-2), which is not compatible with Apache 2.0 License.
So LZO is an optional feature when building Doris from source. You can disable the LZO support by adding
`--without-lzo` argument in `build.sh` script.
So LZO is an optional feature when building Doris from source. And default is disabled.
You can also enable the LZO support by adding env variable:
`WITH_LZO=1 sh build.sh`.
Disable LZO support does not affect normal use of Doris.
@ -60,7 +62,10 @@ source: https://github.com/mysql/mysql-server
MySQL is under GNU General Public License Version 2(GPL-2), which is not compatible with Apache 2.0 License.
So MySQL is an optional feature when building Doris from source. You can disable the MySQL support by adding
`--without-mysql` argument in `build.sh` script.
So MySQL is an optional feature when building Doris from source. And default is disabled.
You can also enable the MySQL support by adding env variable:
`WITH_MYSQL=1 sh build.sh`
Disable MySQL support with disable the feature of visiting a MySQL table as an external table in Doris.
But you can visit MySQL external table via ODBC.