mirror of
https://git.freebsd.org/ports.git
synced 2025-05-28 00:46:27 -04:00
PR: 193539 Submitted by: spil.oss (gmail) MariaDB is a database server that offers drop-in replacement functionality for MySQL. MariaDB is built by some of the original authors of MySQL, with assistance from the broader community of Free and open source software developers. In addition to the core functionality of MySQL, MariaDB offers a rich set of feature enhancements including alternate storage engines, server optimizations, and patches.
50 lines
1.8 KiB
C++
50 lines
1.8 KiB
C++
--- sql/sql_trigger.cc.orig 2013-05-21 22:09:51.000000000 +0000
|
|
+++ sql/sql_trigger.cc 2013-09-26 13:15:55.450195525 +0000
|
|
@@ -192,32 +192,32 @@
|
|
{
|
|
{
|
|
{ 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 @@
|
|
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
|
|
};
|
|
|