-
Notifications
You must be signed in to change notification settings - Fork 9
/
spd_db_mysql.h
1862 lines (1834 loc) · 39.7 KB
/
spd_db_mysql.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* Copyright (C) 2012-2019 Kentoku Shiba
Copyright (C) 2019 MariaDB corp
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 */
class spider_db_mbase_util: public spider_db_util
{
public:
spider_db_mbase_util();
virtual ~spider_db_mbase_util();
int append_name(
spider_string *str,
const char *name,
uint name_length
);
int append_name_with_charset(
spider_string *str,
const char *name,
uint name_length,
CHARSET_INFO *name_charset
);
int append_escaped_name(
spider_string *str,
const char *name,
uint name_length
);
int append_escaped_name_with_charset(
spider_string *str,
const char *name,
uint name_length,
CHARSET_INFO *name_charset
);
bool is_name_quote(
const char head_code
);
int append_escaped_name_quote(
spider_string *str
);
int append_column_value(
ha_spider *spider,
spider_string *str,
Field *field,
const uchar *new_ptr,
CHARSET_INFO *access_charset
);
int append_from_with_alias(
spider_string *str,
const char **table_names,
uint *table_name_lengths,
const char **table_aliases,
uint *table_alias_lengths,
uint table_count,
int *table_name_pos,
bool over_write
);
int append_trx_isolation(
spider_string *str,
int trx_isolation
);
int append_autocommit(
spider_string *str,
bool autocommit
);
int append_sql_log_off(
spider_string *str,
bool sql_log_off
);
int append_wait_timeout(
spider_string *str,
int wait_timeout
);
virtual int append_sql_mode_internal(
spider_string *str,
sql_mode_t sql_mode
);
int append_sql_mode(
spider_string *str,
sql_mode_t sql_mode
);
int append_time_zone(
spider_string *str,
Time_zone *time_zone
);
int append_loop_check(
spider_string *str,
SPIDER_CONN *conn
);
int append_start_transaction(
spider_string *str
);
int append_xa_start(
spider_string *str,
XID *xid
);
int append_lock_table_head(
spider_string *str
);
int append_lock_table_body(
spider_string *str,
const char *db_name,
uint db_name_length,
CHARSET_INFO *db_name_charset,
const char *table_name,
uint table_name_length,
CHARSET_INFO *table_name_charset,
int lock_type
);
int append_lock_table_tail(
spider_string *str
);
int append_unlock_table(
spider_string *str
);
int open_item_func(
Item_func *item_func,
ha_spider *spider,
spider_string *str,
const char *alias,
uint alias_length,
bool use_fields,
spider_fields *fields
);
#ifdef HANDLER_HAS_DIRECT_AGGREGATE
int open_item_sum_func(
Item_sum *item_sum,
ha_spider *spider,
spider_string *str,
const char *alias,
uint alias_length,
bool use_fields,
spider_fields *fields
);
#endif
int append_escaped_util(
spider_string *to,
String *from
);
#ifdef SPIDER_HAS_GROUP_BY_HANDLER
int append_table(
ha_spider *spider,
spider_fields *fields,
spider_string *str,
TABLE_LIST *table_list,
TABLE_LIST **used_table_list,
uint *current_pos,
TABLE_LIST **cond_table_list_ptr,
bool top_down,
bool first
);
int append_tables_top_down(
ha_spider *spider,
spider_fields *fields,
spider_string *str,
TABLE_LIST *table_list,
TABLE_LIST **used_table_list,
uint *current_pos,
TABLE_LIST **cond_table_list_ptr
);
int append_tables_top_down_check(
TABLE_LIST *table_list,
TABLE_LIST **used_table_list,
uint *current_pos
);
int append_embedding_tables(
ha_spider *spider,
spider_fields *fields,
spider_string *str,
TABLE_LIST *table_list,
TABLE_LIST **used_table_list,
uint *current_pos,
TABLE_LIST **cond_table_list_ptr
);
int append_from_and_tables(
ha_spider *spider,
spider_fields *fields,
spider_string *str,
TABLE_LIST *table_list,
uint table_count
);
int reappend_tables(
spider_fields *fields,
SPIDER_LINK_IDX_CHAIN *link_idx_chain,
spider_string *str
);
int append_where(
spider_string *str
);
int append_having(
spider_string *str
);
#endif
bool tables_on_different_db_are_joinable();
bool socket_has_default_value();
bool database_has_default_value();
bool default_file_has_default_value();
bool host_has_default_value();
bool port_has_default_value();
bool append_charset_name_before_string();
};
class spider_db_mysql_util: public spider_db_mbase_util
{
public:
spider_db_mysql_util();
~spider_db_mysql_util();
int append_column_value(
ha_spider *spider,
spider_string *str,
Field *field,
const uchar *new_ptr,
CHARSET_INFO *access_charset
);
};
class spider_db_mariadb_util: public spider_db_mbase_util
{
public:
spider_db_mariadb_util();
~spider_db_mariadb_util();
int append_sql_mode_internal(
spider_string *str,
sql_mode_t sql_mode
);
int append_column_value(
ha_spider *spider,
spider_string *str,
Field *field,
const uchar *new_ptr,
CHARSET_INFO *access_charset
);
};
class spider_mbase_sql: public spider_db_sql
{
public:
spider_mbase_sql(
uint dbton_id_arg
);
virtual ~spider_mbase_sql();
virtual int append_create_or_replace() = 0;
virtual int append_create_or_replace_table() = 0;
int append_if_not_exists();
int append_table_option_name(
int symbol_tok,
union YYSTYPE *yylval_tok
);
int append_table_option_value(
int symbol_tok,
union YYSTYPE *yylval_tok
);
int append_table_option_character_set();
int append_table_option_data_directory();
int append_table_option_index_directory();
};
class spider_mysql_sql: public spider_mbase_sql
{
public:
spider_mysql_sql();
~spider_mysql_sql();
int append_create_or_replace();
int append_create_or_replace_table();
};
class spider_mariadb_sql: public spider_mbase_sql
{
public:
spider_mariadb_sql();
~spider_mariadb_sql();
int append_create_or_replace();
int append_create_or_replace_table();
int append_table_option_with_system_versioning();
};
class spider_db_mbase_row: public spider_db_row
{
public:
MYSQL_ROW row;
MYSQL_ROW row_first;
ulong *lengths;
ulong *lengths_first;
uint field_count;
uint record_size;
bool cloned;
spider_db_mbase_row(
uint dbton_id
);
virtual ~spider_db_mbase_row();
int store_to_field(
Field *field,
CHARSET_INFO *access_charset
);
int append_to_str(
spider_string *str
);
int append_escaped_to_str(
spider_string *str,
uint dbton_id
);
void first();
void next();
bool is_null();
int val_int();
double val_real();
my_decimal *val_decimal(
my_decimal *decimal_value,
CHARSET_INFO *access_charset
);
SPIDER_DB_ROW *clone();
int store_to_tmp_table(
TABLE *tmp_table,
spider_string *str
);
uint get_byte_size();
};
class spider_db_mysql_row: public spider_db_mbase_row
{
public:
spider_db_mysql_row();
~spider_db_mysql_row();
};
class spider_db_mariadb_row: public spider_db_mbase_row
{
public:
spider_db_mariadb_row();
~spider_db_mariadb_row();
};
class spider_db_mbase_result: public spider_db_result
{
public:
MYSQL_RES *db_result;
spider_db_mbase_row row;
MYSQL_ROW_OFFSET first_row;
int store_error_num;
spider_db_mbase_result(
SPIDER_DB_CONN *in_db_conn
);
virtual ~spider_db_mbase_result();
bool has_result();
void free_result();
SPIDER_DB_ROW *current_row();
SPIDER_DB_ROW *fetch_row();
SPIDER_DB_ROW *fetch_row_from_result_buffer(
spider_db_result_buffer *spider_res_buf
);
SPIDER_DB_ROW *fetch_row_from_tmp_table(
TABLE *tmp_table
);
int fetch_table_status(
int mode,
ha_statistics &stat
);
int fetch_simple_action(
uint simple_action,
uint position,
void *param
);
int fetch_table_records(
int mode,
ha_rows &records
);
#ifdef HA_HAS_CHECKSUM_EXTENDED
int fetch_table_checksum(
ha_spider *spider
);
#endif
int fetch_table_cardinality(
int mode,
TABLE *table,
longlong *cardinality,
uchar *cardinality_upd,
int bitmap_size
);
int fetch_table_mon_status(
int &status
);
int fetch_show_master_status(
const char **binlog_file_name,
const char **binlog_pos
);
int fetch_select_binlog_gtid_pos(
const char **gtid_pos
);
longlong num_rows();
uint num_fields();
void move_to_pos(
longlong pos
);
int get_errno();
#ifdef SPIDER_HAS_DISCOVER_TABLE_STRUCTURE
int fetch_columns_for_discover_table_structure(
spider_string *str,
CHARSET_INFO *access_charset
);
int fetch_index_for_discover_table_structure(
spider_string *str,
CHARSET_INFO *access_charset
);
int fetch_table_for_discover_table_structure(
spider_string *str,
SPIDER_SHARE *spider_share,
CHARSET_INFO *access_charset
);
#endif
};
class spider_db_mysql_result: public spider_db_mbase_result
{
public:
spider_db_mysql_result(
SPIDER_DB_CONN *in_db_conn
);
~spider_db_mysql_result();
};
class spider_db_mariadb_result: public spider_db_mbase_result
{
public:
spider_db_mariadb_result(
SPIDER_DB_CONN *in_db_conn
);
~spider_db_mariadb_result();
};
class spider_db_mbase: public spider_db_conn
{
protected:
int stored_error;
spider_db_mbase_util *spider_db_mbase_utility;
public:
MYSQL *db_conn;
HASH lock_table_hash;
bool lock_table_hash_inited;
uint lock_table_hash_id;
const char *lock_table_hash_func_name;
const char *lock_table_hash_file_name;
ulong lock_table_hash_line_no;
DYNAMIC_ARRAY handler_open_array;
bool handler_open_array_inited;
uint handler_open_array_id;
const char *handler_open_array_func_name;
const char *handler_open_array_file_name;
ulong handler_open_array_line_no;
spider_db_mbase(
SPIDER_CONN *conn,
spider_db_mbase_util *spider_db_mbase_utility
);
virtual ~spider_db_mbase();
int init();
bool is_connected();
void bg_connect();
int connect(
char *tgt_host,
char *tgt_username,
char *tgt_password,
long tgt_port,
char *tgt_socket,
char *server_name,
int connect_retry_count,
longlong connect_retry_interval
);
int ping();
void bg_disconnect();
void disconnect();
int set_net_timeout();
int exec_query(
const char *query,
uint length,
int quick_mode
);
int get_errno();
const char *get_error();
bool is_server_gone_error(
int error_num
);
bool is_dup_entry_error(
int error_num
);
bool is_xa_nota_error(
int error_num
);
int print_warnings(
struct tm *l_time
);
spider_db_result *store_result(
spider_db_result_buffer **spider_res_buf,
st_spider_db_request_key *request_key,
int *error_num
);
spider_db_result *use_result(
ha_spider *spider,
st_spider_db_request_key *request_key,
int *error_num
);
int next_result();
uint affected_rows();
uint matched_rows();
bool inserted_info(
spider_db_handler *handler,
ha_copy_info *copy_info
);
ulonglong last_insert_id();
int set_character_set(
const char *csname
);
int select_db(
const char *dbname
);
int consistent_snapshot(
int *need_mon
);
bool trx_start_in_bulk_sql();
int start_transaction(
int *need_mon
);
int commit(
int *need_mon
);
int rollback(
int *need_mon
);
bool xa_start_in_bulk_sql();
int xa_start(
XID *xid,
int *need_mon
);
int xa_end(
XID *xid,
int *need_mon
);
int xa_prepare(
XID *xid,
int *need_mon
);
int xa_commit(
XID *xid,
int *need_mon
);
int xa_rollback(
XID *xid,
int *need_mon
);
bool set_trx_isolation_in_bulk_sql();
int set_trx_isolation(
int trx_isolation,
int *need_mon
);
bool set_autocommit_in_bulk_sql();
int set_autocommit(
bool autocommit,
int *need_mon
);
bool set_sql_log_off_in_bulk_sql();
int set_sql_log_off(
bool sql_log_off,
int *need_mon
);
bool set_wait_timeout_in_bulk_sql();
int set_wait_timeout(
int wait_timeout,
int *need_mon
);
bool set_sql_mode_in_bulk_sql();
int set_sql_mode(
sql_mode_t sql_mode,
int *need_mon
);
bool set_time_zone_in_bulk_sql();
int set_time_zone(
Time_zone *time_zone,
int *need_mon
);
bool set_loop_check_in_bulk_sql();
int set_loop_check(
int *need_mon
);
int fin_loop_check();
int exec_simple_sql_with_result(
SPIDER_TRX *trx,
SPIDER_SHARE *share,
const char *sql,
uint sql_length,
int all_link_idx,
int *need_mon,
SPIDER_DB_RESULT **res
);
int show_master_status(
SPIDER_TRX *trx,
SPIDER_SHARE *share,
int all_link_idx,
int *need_mon,
TABLE *table,
spider_string *str,
int mode,
SPIDER_DB_RESULT **res1,
SPIDER_DB_RESULT **res2
);
int select_binlog_gtid_pos(
SPIDER_TRX *trx,
SPIDER_SHARE *share,
int all_link_idx,
int *need_mon,
TABLE *table,
spider_string *str,
const char *binlog_file_name,
uint binlog_file_name_length,
const char *binlog_pos,
uint binlog_pos_length,
SPIDER_DB_RESULT **res
);
#if defined(HS_HAS_SQLCOM) && defined(HAVE_HANDLERSOCKET)
int append_sql(
char *sql,
ulong sql_length,
st_spider_db_request_key *request_key
);
int append_open_handler(
uint handler_id,
const char *db_name,
const char *table_name,
const char *index_name,
const char *sql,
st_spider_db_request_key *request_key
);
int append_select(
uint handler_id,
spider_string *sql,
SPIDER_DB_HS_STRING_REF_BUFFER *keys,
int limit,
int skip,
st_spider_db_request_key *request_key
);
int append_insert(
uint handler_id,
SPIDER_DB_HS_STRING_REF_BUFFER *upds,
st_spider_db_request_key *request_key
);
int append_update(
uint handler_id,
spider_string *sql,
SPIDER_DB_HS_STRING_REF_BUFFER *keys,
SPIDER_DB_HS_STRING_REF_BUFFER *upds,
int limit,
int skip,
bool increment,
bool decrement,
st_spider_db_request_key *request_key
);
int append_delete(
uint handler_id,
spider_string *sql,
SPIDER_DB_HS_STRING_REF_BUFFER *keys,
int limit,
int skip,
st_spider_db_request_key *request_key
);
void reset_request_queue();
#endif
size_t escape_string(
char *to,
const char *from,
size_t from_length
);
bool have_lock_table_list();
int append_lock_tables(
spider_string *str
);
int append_unlock_tables(
spider_string *str
);
uint get_lock_table_hash_count();
void reset_lock_table_hash();
uint get_opened_handler_count();
void reset_opened_handler();
void set_dup_key_idx(
ha_spider *spider,
int link_idx
);
bool cmp_request_key_to_snd(
st_spider_db_request_key *request_key
);
};
class spider_db_mysql: public spider_db_mbase
{
public:
spider_db_mysql(
SPIDER_CONN *conn
);
~spider_db_mysql();
};
class spider_db_mariadb: public spider_db_mbase
{
public:
spider_db_mariadb(
SPIDER_CONN *conn
);
~spider_db_mariadb();
};
class spider_mbase_share: public spider_db_share
{
protected:
spider_db_mbase_util *spider_db_mbase_utility;
public:
spider_string *table_select;
int table_select_pos;
spider_string *key_select;
int *key_select_pos;
spider_string *key_hint;
spider_string *show_table_status;
spider_string *show_records;
spider_string *show_index;
spider_string *table_names_str;
spider_string *db_names_str;
spider_string *db_table_str;
#ifdef SPIDER_HAS_HASH_VALUE_TYPE
my_hash_value_type *db_table_str_hash_value;
#endif
uint table_nm_max_length;
uint db_nm_max_length;
spider_string *column_name_str;
bool same_db_table_name;
int first_all_link_idx;
spider_mbase_share(
st_spider_share *share,
uint dbton_id,
spider_db_mbase_util *spider_db_mbase_utility
);
virtual ~spider_mbase_share();
int init();
uint get_column_name_length(
uint field_index
);
int append_column_name(
spider_string *str,
uint field_index
);
int append_column_name_with_alias(
spider_string *str,
uint field_index,
const char *alias,
uint alias_length
);
int append_table_name(
spider_string *str,
int all_link_idx
);
int append_table_name_with_adjusting(
spider_string *str,
int all_link_idx
);
int append_from_with_adjusted_table_name(
spider_string *str,
int *table_name_pos
);
bool need_change_db_table_name();
#ifdef SPIDER_HAS_DISCOVER_TABLE_STRUCTURE
int discover_table_structure(
SPIDER_TRX *trx,
SPIDER_SHARE *spider_share,
spider_string *str
);
#endif
#ifdef HA_HAS_CHECKSUM_EXTENDED
bool checksum_support();
#endif
protected:
int create_table_names_str();
void free_table_names_str();
int create_column_name_str();
void free_column_name_str();
int convert_key_hint_str();
int append_show_table_status();
void free_show_table_status();
int append_show_records();
void free_show_records();
int append_show_index();
void free_show_index();
int append_table_select();
int append_key_select(
uint idx
);
};
class spider_mysql_share: public spider_mbase_share
{
public:
spider_mysql_share(
st_spider_share *share
);
~spider_mysql_share();
};
class spider_mariadb_share: public spider_mbase_share
{
public:
spider_mariadb_share(
st_spider_share *share
);
~spider_mariadb_share();
};
class spider_mbase_handler: public spider_db_handler
{
protected:
spider_db_mbase_util *spider_db_mbase_utility;
spider_string sql;
spider_string sql_part;
spider_string sql_part2;
spider_string ha_sql;
int where_pos;
int order_pos;
int limit_pos;
public:
int table_name_pos;
protected:
int ha_read_pos;
int ha_next_pos;
int ha_where_pos;
int ha_limit_pos;
int ha_table_name_pos;
uint ha_sql_handler_id;
spider_string insert_sql;
int insert_pos;
int insert_table_name_pos;
spider_string update_sql;
TABLE *upd_tmp_tbl;
TMP_TABLE_PARAM upd_tmp_tbl_prm;
spider_string tmp_sql;
int tmp_sql_pos1; /* drop db nm pos at tmp_table_join */
int tmp_sql_pos2; /* create db nm pos at tmp_table_join */
int tmp_sql_pos3; /* insert db nm pos at tmp_table_join */
int tmp_sql_pos4; /* insert val pos at tmp_table_join */
int tmp_sql_pos5; /* end of drop tbl at tmp_table_join */
spider_string dup_update_sql;
spider_string **query;
spider_string *exec_sql;
spider_string *exec_insert_sql;
spider_string *exec_update_sql;
spider_string *exec_tmp_sql;
spider_string *exec_ha_sql;
bool reading_from_bulk_tmp_table;
bool filled_up;
#if defined(HS_HAS_SQLCOM) && defined(HAVE_HANDLERSOCKET)
SPIDER_DB_HS_STRING_REF_BUFFER hs_upds;
#endif
SPIDER_INT_HLD *union_table_name_pos_first;
SPIDER_INT_HLD *union_table_name_pos_current;
public:
spider_mbase_share *mysql_share;
SPIDER_LINK_FOR_HASH *link_for_hash;
uchar *minimum_select_bitmap;
uchar direct_insert_kind;
spider_mbase_handler(
ha_spider *spider,
spider_mbase_share *share,
spider_db_mbase_util *spider_db_mbase_utility
);
virtual ~spider_mbase_handler();
int init();
int append_index_hint(
spider_string *str,
int link_idx,
ulong sql_type
);
int append_table_name_with_adjusting(
spider_string *str,
int link_idx,
ulong sql_type
);
int append_key_column_types(
const key_range *start_key,
spider_string *str
);
int append_key_join_columns_for_bka(
const key_range *start_key,
spider_string *str,
const char **table_aliases,
uint *table_alias_lengths
);
int append_tmp_table_and_sql_for_bka(
const key_range *start_key
);
int reuse_tmp_table_and_sql_for_bka();
void create_tmp_bka_table_name(
char *tmp_table_name,
int *tmp_table_name_length,
int link_idx
);
int append_create_tmp_bka_table(
const key_range *start_key,
spider_string *str,
char *tmp_table_name,
int tmp_table_name_length,
int *db_name_pos,
CHARSET_INFO *table_charset
);
int append_drop_tmp_bka_table(
spider_string *str,
char *tmp_table_name,
int tmp_table_name_length,
int *db_name_pos,
int *drop_table_end_pos,
bool with_semicolon
);
int append_insert_tmp_bka_table(
const key_range *start_key,
spider_string *str,
char *tmp_table_name,
int tmp_table_name_length,
int *db_name_pos
);
int append_union_table_and_sql_for_bka(
const key_range *start_key
);
int reuse_union_table_and_sql_for_bka();
int append_insert_for_recovery(
ulong sql_type,
int link_idx
);
int append_update(
const TABLE *table,
my_ptrdiff_t ptr_diff
);
int append_update(
const TABLE *table,
my_ptrdiff_t ptr_diff,
int link_idx
);
int append_delete(
const TABLE *table,
my_ptrdiff_t ptr_diff
);
int append_delete(
const TABLE *table,
my_ptrdiff_t ptr_diff,
int link_idx
);
int append_insert_part();
int append_insert(
spider_string *str,
int link_idx
);
int append_update_part();
int append_update(
spider_string *str,
int link_idx
);
int append_delete_part();
int append_delete(
spider_string *str
);
#if defined(HS_HAS_SQLCOM) && defined(HAVE_HANDLERSOCKET)
#ifdef HANDLER_HAS_DIRECT_UPDATE_ROWS
int append_increment_update_set_part();
int append_increment_update_set(
spider_string *str
);
#endif
#endif
int append_update_set_part();
int append_update_set(
spider_string *str
);
#ifdef HANDLER_HAS_DIRECT_UPDATE_ROWS
int append_direct_update_set_part();
int append_direct_update_set(
spider_string *str
);
int append_dup_update_pushdown_part(
const char *alias,
uint alias_length
);
int append_update_columns_part(
const char *alias,
uint alias_length
);
int check_update_columns_part();
int append_update_columns(
spider_string *str,
const char *alias,
uint alias_length
);