summaryrefslogtreecommitdiff
path: root/storage/spider/spd_direct_sql.h
diff options
context:
space:
mode:
authorKentoku SHIBA <kentokushiba@gmail.com>2013-05-13 05:08:51 +0900
committerKentoku SHIBA <kentokushiba@gmail.com>2013-05-13 05:08:51 +0900
commit5aaefbec7b384950831da2c200cd4d82b54f9c7b (patch)
tree9e67bd0fc84adc49ea9f35a92bf9d1aac8179521 /storage/spider/spd_direct_sql.h
parent2d33547475ced9604d26c1e41298a87dfd44d015 (diff)
downloadmariadb-git-5aaefbec7b384950831da2c200cd4d82b54f9c7b.tar.gz
Merage Spider Storage Engine
Diffstat (limited to 'storage/spider/spd_direct_sql.h')
-rw-r--r--storage/spider/spd_direct_sql.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/storage/spider/spd_direct_sql.h b/storage/spider/spd_direct_sql.h
new file mode 100644
index 00000000000..f20e9de6373
--- /dev/null
+++ b/storage/spider/spd_direct_sql.h
@@ -0,0 +1,67 @@
+/* Copyright (C) 2009-2013 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
+ the Free Software Foundation; version 2 of the License.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
+
+uint spider_udf_calc_hash(
+ char *key,
+ uint mod
+);
+
+int spider_udf_direct_sql_create_table_list(
+ SPIDER_DIRECT_SQL *direct_sql,
+ char *table_name_list,
+ uint table_name_list_length
+);
+
+int spider_udf_direct_sql_create_conn_key(
+ SPIDER_DIRECT_SQL *direct_sql
+);
+
+SPIDER_CONN *spider_udf_direct_sql_create_conn(
+ const SPIDER_DIRECT_SQL *direct_sql,
+ int *error_num
+);
+
+SPIDER_CONN *spider_udf_direct_sql_get_conn(
+ const SPIDER_DIRECT_SQL *direct_sql,
+ SPIDER_TRX *trx,
+ int *error_num
+);
+
+int spider_udf_direct_sql_get_server(
+ SPIDER_DIRECT_SQL *direct_sql
+);
+
+int spider_udf_parse_direct_sql_param(
+ SPIDER_TRX *trx,
+ SPIDER_DIRECT_SQL *direct_sql,
+ const char *param,
+ int param_length
+);
+
+int spider_udf_set_direct_sql_param_default(
+ SPIDER_TRX *trx,
+ SPIDER_DIRECT_SQL *direct_sql
+);
+
+void spider_udf_free_direct_sql_alloc(
+ SPIDER_DIRECT_SQL *direct_sql,
+ my_bool bg
+);
+
+#ifndef WITHOUT_SPIDER_BG_SEARCH
+int spider_udf_bg_direct_sql(
+ SPIDER_DIRECT_SQL *direct_sql
+);
+#endif