mirror of
https://git.freebsd.org/ports.git
synced 2025-05-29 09:26:27 -04:00
MariaDB is one of the most popular database servers in the world. It's made by the original developers of MySQL and guaranteed to stay open source. Notable users include Wikipedia, Facebook and Google. MariaDB turns data into structured information in a wide array of applications, ranging from banking to websites. It is an enhanced, drop-in replacement for MySQL. MariaDB is used because it is fast, scalable and robust, with a rich ecosystem of storage engines, plugins and many other tools make it very versatile for a wide variety of use cases. MariaDB is developed as open source software and as a relational database it provides an SQL interface for accessing data. This latest versions of MariaDB also include GIS and JSON features. WWW: http://mariadb.org/ Reviewed by: koobs (mentor), feld (mentor) Approved by: koobs (mentor), feld (mentor) Differential Revision: D3953
52 lines
1.8 KiB
C++
52 lines
1.8 KiB
C++
Fix clang build error
|
|
|
|
--- sql/sql_trigger.cc.orig 2015-10-15 15:43:47 UTC
|
|
+++ sql/sql_trigger.cc
|
|
@@ -192,32 +192,32 @@ static File_option triggers_file_paramet
|
|
{
|
|
{
|
|
{ C_STRING_WITH_LEN("triggers") },
|
|
- my_offsetof(class Table_triggers_list, definitions_list),
|
|
+ static_cast<int>(my_offsetof(class Table_triggers_list, definitions_list)),
|
|
FILE_OPTIONS_STRLIST
|
|
},
|
|
{
|
|
{ C_STRING_WITH_LEN("sql_modes") },
|
|
- my_offsetof(class Table_triggers_list, definition_modes_list),
|
|
+ static_cast<int>(my_offsetof(class Table_triggers_list, definition_modes_list)),
|
|
FILE_OPTIONS_ULLLIST
|
|
},
|
|
{
|
|
{ C_STRING_WITH_LEN("definers") },
|
|
- my_offsetof(class Table_triggers_list, definers_list),
|
|
+ static_cast<int>(my_offsetof(class Table_triggers_list, definers_list)),
|
|
FILE_OPTIONS_STRLIST
|
|
},
|
|
{
|
|
{ C_STRING_WITH_LEN("client_cs_names") },
|
|
- my_offsetof(class Table_triggers_list, client_cs_names),
|
|
+ static_cast<int>(my_offsetof(class Table_triggers_list, client_cs_names)),
|
|
FILE_OPTIONS_STRLIST
|
|
},
|
|
{
|
|
{ C_STRING_WITH_LEN("connection_cl_names") },
|
|
- my_offsetof(class Table_triggers_list, connection_cl_names),
|
|
+ static_cast<int>(my_offsetof(class Table_triggers_list, connection_cl_names)),
|
|
FILE_OPTIONS_STRLIST
|
|
},
|
|
{
|
|
{ C_STRING_WITH_LEN("db_cl_names") },
|
|
- my_offsetof(class Table_triggers_list, db_cl_names),
|
|
+ static_cast<int>(my_offsetof(class Table_triggers_list, db_cl_names)),
|
|
FILE_OPTIONS_STRLIST
|
|
},
|
|
{ { 0, 0 }, 0, FILE_OPTIONS_STRING }
|
|
@@ -226,7 +226,7 @@ static File_option triggers_file_paramet
|
|
File_option sql_modes_parameters=
|
|
{
|
|
{ C_STRING_WITH_LEN("sql_modes") },
|
|
- my_offsetof(class Table_triggers_list, definition_modes_list),
|
|
+ static_cast<int>(my_offsetof(class Table_triggers_list, definition_modes_list)),
|
|
FILE_OPTIONS_ULLLIST
|
|
};
|
|
|