greenlion / warp

WarpSQL Server, an open source OLAP focused distribution of the world's most popular open source database bundled with OLAP performance related plugins such as the WARP storage engine..
http://warpsql.blog
Other
41 stars 2 forks source link

Compile issues on latest Ubuntu LTS in DEBUG mode #71

Closed greenlion closed 3 years ago

greenlion commented 3 years ago

-Wall on the GCC included in this version adds new warnings and warnings are treated as errors when compiling for debug.

Temporary fix: Fix the CMakeLists.txt to remove the errors that were added to -Wall

Permanent fix: Make code changes to resolve these problems (requires modifying FastBit quite a bit..

greenlion commented 3 years ago

temporary fix (add to ha_warp.h and warp_rewrite.h):

pragma GCC diagnostic push

pragma GCC diagnostic ignored "-Wsuggest-override"

pragma GCC diagnostic push

pragma GCC diagnostic ignored "-Wswitch"

greenlion commented 3 years ago

Fixed in parallel_query branch.