summaryrefslogtreecommitdiff
path: root/storage/spider/spd_include.h
diff options
context:
space:
mode:
authorKentoku SHIBA <kentokushiba@gmail.com>2014-03-25 05:22:28 +0900
committerKentoku SHIBA <kentokushiba@gmail.com>2014-03-25 05:22:28 +0900
commita99b54cf1ff885545f5cc895ac43a6affc2c08bd (patch)
tree59b4e97737e3255f1f6247cc5c3745d4b400d063 /storage/spider/spd_include.h
parent088b981e2af7050a6d029a4f92ced61dd8644d17 (diff)
downloadmariadb-git-a99b54cf1ff885545f5cc895ac43a6affc2c08bd.tar.gz
dry access
Diffstat (limited to 'storage/spider/spd_include.h')
-rw-r--r--storage/spider/spd_include.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/storage/spider/spd_include.h b/storage/spider/spd_include.h
index d983d19d330..97dc130600e 100644
--- a/storage/spider/spd_include.h
+++ b/storage/spider/spd_include.h
@@ -13,7 +13,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
-#define SPIDER_DETAIL_VERSION "3.1.12"
+#define SPIDER_DETAIL_VERSION "3.1.13"
#define SPIDER_HEX_VERSION 0x0301
#if MYSQL_VERSION_ID < 50500
@@ -137,7 +137,7 @@
#define SPIDER_SET_FILE_POS(A) \
{(A)->thd = current_thd; (A)->func_name = __func__; (A)->file_name = __FILE__; (A)->line_no = __LINE__;}
#define SPIDER_CLEAR_FILE_POS(A) \
- {(A)->thd = NULL; (A)->func_name = NULL; (A)->file_name = NULL; (A)->line_no = 0;}
+ {DBUG_PRINT("info", ("spider thd=%p func_name=%s file_name=%s line_no=%lu", (A)->thd, (A)->func_name ? (A)->func_name : "NULL", (A)->file_name ? (A)->file_name : "NULL", (A)->line_no)); (A)->thd = NULL; (A)->func_name = NULL; (A)->file_name = NULL; (A)->line_no = 0;}
class ha_spider;
typedef struct st_spider_share SPIDER_SHARE;