Created
December 18, 2014 16:33
-
-
Save abg/64b189aaf7e92ee8792c to your computer and use it in GitHub Desktop.
mysql_bug_75245_5622.patch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- a/storage/innobase/handler/ha_innodb.cc | |
+++ b/storage/innobase/handler/ha_innodb.cc | |
@@ -17158,6 +17158,10 @@ ib_warn_row_too_big(const dict_table_t* table) | |
THD* thd = current_thd; | |
+ if(thd == NULL) { | |
+ return; | |
+ } | |
+ | |
push_warning_printf( | |
thd, Sql_condition::WARN_LEVEL_WARN, HA_ERR_TO_BIG_ROW, | |
"Row size too large (> %lu). Changing some columns to TEXT" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment