Commit 08644b73 authored by MySQL Build Team's avatar MySQL Build Team

Backport of "Bug #50409 Solaris 8 compatibility broken by assumption about...

Backport of "Bug #50409 Solaris 8 compatibility broken by assumption about printstack() being present"
parent d72e1f77
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
(defined(__alpha__) && defined(__GNUC__)) (defined(__alpha__) && defined(__GNUC__))
#define HAVE_STACKTRACE 1 #define HAVE_STACKTRACE 1
#endif #endif
#elif defined(__WIN__) || defined(__sun) #elif defined(__WIN__) || defined(HAVE_PRINTSTACK)
#define HAVE_STACKTRACE 1 #define HAVE_STACKTRACE 1
#endif #endif
......
...@@ -80,7 +80,6 @@ class ha_innobase: public handler ...@@ -80,7 +80,6 @@ class ha_innobase: public handler
ulong innobase_update_autoinc(ulonglong auto_inc); ulong innobase_update_autoinc(ulonglong auto_inc);
void innobase_initialize_autoinc(); void innobase_initialize_autoinc();
dict_index_t* innobase_get_index(uint keynr); dict_index_t* innobase_get_index(uint keynr);
ulonglong innobase_get_int_col_max_value(const Field* field);
/* Init values for the class: */ /* Init values for the class: */
public: public:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment