summaryrefslogtreecommitdiff
path: root/storage/spider/spd_db_conn.h
diff options
context:
space:
mode:
authorKentoku <kentokushiba@gmail.com>2018-11-20 00:21:36 +0900
committerSachin <sachin.setiya@mariadb.com>2019-02-03 15:58:45 +0530
commit4a28a79e48c29b4938188136178e6f2ebd6ff7fe (patch)
tree1db038e1e7f7e3d62c621f829c7637971175fa14 /storage/spider/spd_db_conn.h
parent74eb4fc9fc80a2836375b5ee380e55100e2cd1d3 (diff)
downloadmariadb-git-4a28a79e48c29b4938188136178e6f2ebd6ff7fe.tar.gz
Update Spider to version 3.3.14. Add direct left outer join/right outer join/inner join feature
Diffstat (limited to 'storage/spider/spd_db_conn.h')
-rw-r--r--storage/spider/spd_db_conn.h23
1 files changed, 21 insertions, 2 deletions
diff --git a/storage/spider/spd_db_conn.h b/storage/spider/spd_db_conn.h
index 879ab3540c1..6ff35b794cd 100644
--- a/storage/spider/spd_db_conn.h
+++ b/storage/spider/spd_db_conn.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2008-2017 Kentoku Shiba
+/* Copyright (C) 2008-2018 Kentoku Shiba
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -412,7 +412,20 @@ int spider_db_unlock_tables(
int spider_db_append_name_with_quote_str(
spider_string *str,
- char *name,
+ const char *name,
+ uint dbton_id
+);
+
+int spider_db_append_name_with_quote_str(
+ spider_string *str,
+ LEX_CSTRING &name,
+ uint dbton_id
+);
+
+int spider_db_append_name_with_quote_str_internal(
+ spider_string *str,
+ const char *name,
+ int length,
uint dbton_id
);
@@ -859,6 +872,12 @@ int spider_db_print_item_type(
spider_fields *fields
);
+int spider_db_print_item_type_default(
+ Item *item,
+ ha_spider *spider,
+ spider_string *str
+);
+
int spider_db_open_item_cond(
Item_cond *item_cond,
ha_spider *spider,