-
Notifications
You must be signed in to change notification settings - Fork 4k
/
Copy pathquery_result.cc
1060 lines (961 loc) · 37.3 KB
/
query_result.cc
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) 2015, 2024, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
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, version 2.0, 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include "sql/query_result.h"
#include <fcntl.h>
#include <sys/stat.h>
#include "my_config.h"
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <algorithm>
#include <climits>
#include <cstring>
#include "lex_string.h"
#include "my_dbug.h"
#include "my_sys.h"
#include "my_thread_local.h"
#include "mysql/psi/mysql_file.h"
#include "mysql/strings/m_ctype.h"
#include "mysql/udf_registration_types.h"
#include "mysql_com.h"
#include "nulls.h"
#include "sql/derror.h" // ER_THD
#include "sql/item.h"
#include "sql/item_func.h"
#include "sql/mysqld.h" // key_select_to_file
#include "sql/parse_tree_nodes.h" // PT_select_var
#include "sql/protocol.h"
#include "sql/sp_rcontext.h" // sp_rcontext
#include "sql/sql_class.h" // THD
#include "sql/sql_const.h"
#include "sql/sql_error.h"
#include "sql/sql_exchange.h"
#include "sql/sql_outfile_defaults.h"
#include "sql/system_variables.h"
#include "sql/visible_fields.h"
#include "sql_string.h"
#include "strmake.h"
#include "strxnmov.h"
#include "template_utils.h" // pointer_cast
using std::min;
uint Query_result::field_count(const mem_root_deque<Item *> &fields) const {
return CountVisibleFields(fields);
}
bool Query_result_send::send_result_set_metadata(
THD *thd, const mem_root_deque<Item *> &list, uint flags) {
bool res;
if (!(res = thd->send_result_metadata(list, flags)))
is_result_set_started = true;
return res;
}
void Query_result_send::abort_result_set(THD *thd) {
DBUG_TRACE;
if (is_result_set_started && thd->sp_runtime_ctx) {
/*
We're executing a stored procedure, have an open result
set and an SQL exception condition. In this situation we
must abort the current statement, silence the error and
start executing the continue/exit handler if one is found.
Before aborting the statement, let's end the open result set, as
otherwise the client will hang due to the violation of the
client/server protocol.
*/
thd->sp_runtime_ctx->end_partial_result_set = true;
}
}
/* Send data to client. Returns 0 if ok */
bool Query_result_send::send_data(THD *thd,
const mem_root_deque<Item *> &items) {
Protocol *protocol = thd->get_protocol();
DBUG_TRACE;
protocol->start_row();
if (thd->send_result_set_row(items)) {
protocol->abort_row();
return true;
}
thd->inc_sent_row_count(1);
return protocol->end_row();
}
bool Query_result_send::send_eof(THD *thd) {
/*
Don't send EOF if we're in error condition (which implies we've already
sent or are sending an error)
*/
if (thd->is_error()) return true;
::my_eof(thd);
is_result_set_started = false;
return false;
}
bool File_information::do_contextualize() {
if (filetype_str != nullptr) {
if (my_strcasecmp(system_charset_info, filetype_str, "csv") == 0) {
filetype = FILETYPE_CSV;
} else if (my_strcasecmp(system_charset_info, filetype_str, "text") == 0) {
filetype = FILETYPE_TEXT;
} else if (my_strcasecmp(system_charset_info, filetype_str, "json") == 0) {
filetype = FILETYPE_JSON;
} else if (my_strcasecmp(system_charset_info, filetype_str, "parquet") ==
0) {
filetype = FILETYPE_PARQUET;
} else if (my_strcasecmp(system_charset_info, filetype_str, "xml") == 0) {
filetype = FILETYPE_XML;
} else {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), filetype_str,
"exporting query result to object storage");
return true;
}
}
return false;
}
void File_information::assign_default_values() {
if (filetype == FILETYPE_PARQUET && compression == nullptr) {
compression = &default_compression;
}
}
void Line_separators::assign_default_values(enum_destination dumpfile,
enum_filetype filetype_arg) {
if (dumpfile != OBJECT_STORE_DEST && line_start == nullptr) {
line_start = &my_empty_string;
}
if (line_term == nullptr) {
if (filetype_arg == FILETYPE_TEXT || filetype_arg == FILETYPE_CSV) {
line_term = &default_line_term_text_csv;
} else if (filetype_arg == FILETYPE_XML) {
line_term = &default_xml_row_term;
}
}
}
void Field_separators::assign_default_values(enum_filetype filetype_arg) {
if (escaped == nullptr &&
(filetype_arg == FILETYPE_TEXT || filetype_arg == FILETYPE_CSV ||
filetype_arg == FILETYPE_XML)) {
escaped = &default_escaped;
}
if (enclosed == nullptr) {
if (filetype_arg == FILETYPE_TEXT || filetype_arg == FILETYPE_CSV ||
filetype_arg == FILETYPE_XML) {
enclosed = &my_empty_string;
} else if (filetype_arg == FILETYPE_CSV) {
enclosed = &default_enclosed_csv;
}
}
if (field_term == nullptr) {
if (filetype_arg == FILETYPE_TEXT || filetype_arg == FILETYPE_XML) {
field_term = &default_field_term_text;
} else if (filetype_arg == FILETYPE_CSV) {
field_term = &default_field_term_csv;
}
}
}
sql_exchange::sql_exchange(const char *name,
enum enum_destination dumpfile_flag)
: field(),
line(),
uri_info(),
file_info(dumpfile_flag),
file_name(name),
dumpfile(dumpfile_flag) {}
sql_exchange::sql_exchange(const char *name,
enum enum_destination dumpfile_flag,
enum_filetype filetype)
: field(),
line(),
uri_info(),
file_info(filetype),
file_name(name),
dumpfile(dumpfile_flag) {}
sql_exchange::sql_exchange(enum enum_destination dumpfile_flag)
: field(),
line(),
uri_info(),
file_info(dumpfile_flag),
dumpfile(dumpfile_flag) {}
bool sql_exchange::escaped_given(void) {
return (field.escaped != &default_escaped);
}
void sql_exchange::assign_default_values() {
file_info.assign_default_values();
field.assign_default_values(file_info.filetype);
line.assign_default_values(dumpfile, file_info.filetype);
}
bool sql_exchange::do_contextualize(Parse_context *pc) {
if (file_info.do_contextualize()) {
return true;
}
if (file_info.filetype == FILETYPE_PARQUET) {
if (field.field_term != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0),
"COLUMNS or FIELDS TERMINATED BY", "PARQUET format");
return true;
}
if (field.enclosed != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0),
"COLUMNS or FIELDS ENCLOSED BY", "PARQUET format");
return true;
}
if (field.escaped != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0),
"COLUMNS or FIELDS ESCAPED BY", "PARQUET format");
return true;
}
if (field.date_format != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "DATE FORMAT",
"PARQUET format");
return true;
}
if (field.time_format != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "TIME FORMAT",
"PARQUET format");
return true;
}
if (field.trim_spaces != enum_trim_spaces::DEFAULT_TRIM_SPACES) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "TRIM SPACES",
"PARQUET format");
return true;
}
if (file_info.with_header != enum_with_header::DEFAULT_HEADER) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "HEADER",
"PARQUET format");
return true;
}
if (field.null_value != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "NULL AS",
"PARQUET format");
return true;
}
if (field.empty_value != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "EMPTY VALUE",
"PARQUET format");
return true;
}
if (field.not_enclosed) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0),
"COLUMNS or FIELDS NOT ENCLOSED", "PARQUET format");
return true;
}
if (line.line_term != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "LINES TERMINATED BY",
"PARQUET format");
return true;
}
if (file_info.cs != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "CHARACTER SET",
"PARQUET format");
return true;
}
}
auto *thd = pc->thd;
if (dumpfile == OBJECT_STORE_DEST) {
if (file_info.filetype == FILETYPE_CSV ||
file_info.filetype == FILETYPE_TEXT) {
if (file_info.compression != nullptr) {
push_warning_printf(thd, Sql_condition::SL_WARNING, ER_CLAUSE_IGNORED,
ER_THD(thd, ER_CLAUSE_IGNORED), "COMPRESSION",
"OUTFILE");
}
if (field.empty_value != nullptr) {
push_warning_printf(thd, Sql_condition::SL_WARNING, ER_CLAUSE_IGNORED,
ER_THD(thd, ER_CLAUSE_IGNORED), "EMPTY VALUE",
"OUTFILE");
}
if (field.not_enclosed) {
push_warning_printf(thd, Sql_condition::SL_WARNING, ER_CLAUSE_IGNORED,
ER_THD(thd, ER_CLAUSE_IGNORED), "NOT ENCLOSED BY",
"OUTFILE");
}
if (field.enclosed != nullptr) {
push_warning_printf(thd, Sql_condition::SL_WARNING, ER_CLAUSE_IGNORED,
ER_THD(thd, ER_CLAUSE_IGNORED),
"ENCLOSED BY or OPTIONALLY ENCLOSED BY", "OUTFILE");
}
if (field.escaped != nullptr) {
push_warning_printf(thd, Sql_condition::SL_WARNING, ER_CLAUSE_IGNORED,
ER_THD(thd, ER_CLAUSE_IGNORED), "ESCAPED BY",
"OUTFILE");
}
if (field.trim_spaces != enum_trim_spaces::DEFAULT_TRIM_SPACES) {
push_warning_printf(thd, Sql_condition::SL_WARNING, ER_CLAUSE_IGNORED,
ER_THD(thd, ER_CLAUSE_IGNORED), "TRIM SPACES",
"OUTFILE");
}
if (field.date_format != nullptr) {
push_warning_printf(thd, Sql_condition::SL_WARNING, ER_CLAUSE_IGNORED,
ER_THD(thd, ER_CLAUSE_IGNORED), "DATE FORMAT",
"OUTFILE");
}
if (field.time_format != nullptr) {
push_warning_printf(thd, Sql_condition::SL_WARNING, ER_CLAUSE_IGNORED,
ER_THD(thd, ER_CLAUSE_IGNORED), "TIME FORMAT",
"OUTFILE");
}
if (file_info.cs != nullptr) {
push_warning_printf(thd, Sql_condition::SL_WARNING, ER_CLAUSE_IGNORED,
ER_THD(thd, ER_CLAUSE_IGNORED), "CHARACTER SET",
"OUTFILE");
}
}
if (line.line_start != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "LINES STARTING BY",
"exporting query result to object storage");
return true;
}
if (file_info.filetype == FILETYPE_XML) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "XML",
"exporting query result to object storage");
return true;
}
} else {
if (field.not_enclosed) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "NOT ENCLOSED",
"exporting query result to disk");
return true;
}
if (field.date_format != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "DATE FORMAT",
"exporting query result to disk");
return true;
}
if (field.time_format != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "TIME FORMAT",
"exporting query result to disk");
return true;
}
if (field.trim_spaces != enum_trim_spaces::DEFAULT_TRIM_SPACES) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "TRIM SPACES",
"exporting query result to disk");
return true;
}
if (file_info.with_header != enum_with_header::DEFAULT_HEADER) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "HEADER",
"exporting query result to disk");
return true;
}
if (field.null_value != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "NULL AS",
"exporting query result to disk");
return true;
}
if (field.empty_value != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "EMPTY VALUE",
"exporting query result to disk");
return true;
}
if (file_info.compression != nullptr) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "COMPRESSION",
"exporting query result to disk");
return true;
}
if (file_info.filetype == FILETYPE_CSV) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "CSV FORMAT",
"exporting query result to disk");
return true;
}
if (file_info.filetype == FILETYPE_PARQUET) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "PARQUET",
"exporting query result to disk");
return true;
}
if (file_info.filetype == FILETYPE_JSON) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "JSON format",
"exporting query result to disk");
return true;
}
if (file_info.filetype == FILETYPE_XML) {
my_error(ER_INVALID_CLAUSE_IN_CONTEXT, MYF(0), "XML format",
"exporting query result to disk");
return true;
}
}
if (field.not_enclosed && field.enclosed != nullptr) {
my_error(ER_INVALID_CLAUSE_COMBINATION, MYF(0), "NOT ENCLOSED",
"OPTIONALLY ENCLOSED BY");
return true;
}
return false;
}
/************************************************************************
Handling writing to file
************************************************************************/
bool Query_result_to_file::check_supports_cursor() const {
my_error(ER_SP_BAD_CURSOR_SELECT, MYF(0));
return true;
}
bool Query_result_to_file::send_eof(THD *thd) {
bool error = (end_io_cache(&cache) != 0);
if (mysql_file_close(file, MYF(MY_WME)) || thd->is_error()) error = true;
if (!error) {
::my_ok(thd, row_count);
}
file = -1;
return error;
}
void Query_result_to_file::cleanup() {
DBUG_TRACE;
DBUG_PRINT("print_select_into_flush_stats",
("[select_to_file][flush_count] %03lu\n", cache.disk_writes));
/* In case of error send_eof() may be not called: close the file here. */
if (file >= 0) {
(void)end_io_cache(&cache);
mysql_file_close(file, MYF(0));
file = -1;
}
path[0] = '\0';
row_count = 0;
}
/**
* \brief Returns true incase of an error.
*/
bool Query_result_to_object_store::send_eof(THD *thd) {
if (thd->is_error()) return true;
::my_ok(thd, thd->current_found_rows);
return false;
}
/**
* \brief Reset the number of affected rows
*/
void Query_result_to_object_store::cleanup() {
current_thd->set_sent_row_count(0);
}
/***************************************************************************
** Export of select to textfile
***************************************************************************/
// This is a hack to make it compile. File permissions are different on Windows.
#ifdef _WIN32
#define S_IRUSR 00400
#define S_IWUSR 00200
#define S_IRGRP 00040
#endif
/*
Create file with IO cache
SYNOPSIS
create_file()
thd Thread handle
path File name
exchange Exchange class
cache IO cache
RETURN
>= 0 File handle
-1 Error
*/
static File create_file(THD *thd, char *path, sql_exchange *exchange,
IO_CACHE *cache) {
File file;
const uint option = MY_UNPACK_FILENAME | MY_RELATIVE_PATH;
if (!dirname_length(exchange->file_name)) {
strxnmov(path, FN_REFLEN - 1, mysql_real_data_home,
thd->db().str ? thd->db().str : "", NullS);
(void)fn_format(path, exchange->file_name, path, "", option);
} else
(void)fn_format(path, exchange->file_name, mysql_real_data_home, "",
option);
if (!is_secure_file_path(path)) {
/* Write only allowed to dir or subdir specified by secure_file_priv */
my_error(ER_OPTION_PREVENTS_STATEMENT, MYF(0), "--secure-file-priv");
return -1;
}
if (!access(path, F_OK)) {
my_error(ER_FILE_EXISTS_ERROR, MYF(0), exchange->file_name);
return -1;
}
/* Create the file world readable */
if ((file = mysql_file_create(key_select_to_file, path,
S_IRUSR | S_IWUSR | S_IRGRP, O_WRONLY | O_EXCL,
MYF(MY_WME))) < 0)
return file;
#ifdef HAVE_FCHMOD
(void)fchmod(file, S_IRUSR | S_IWUSR | S_IRGRP); // Because of umask()
#else
(void)chmod(path, S_IRUSR | S_IWUSR | S_IRGRP);
#endif
if (init_io_cache(cache, file, thd->variables.select_into_buffer_size,
WRITE_CACHE, 0L, true, MYF(MY_WME))) {
mysql_file_close(file, MYF(0));
/* Delete file on error, it was just created */
mysql_file_delete(key_select_to_file, path, MYF(0));
return -1;
}
if (thd->variables.select_into_disk_sync) {
cache->disk_sync = true;
if (thd->variables.select_into_disk_sync_delay)
cache->disk_sync_delay = thd->variables.select_into_disk_sync_delay;
}
return file;
}
bool Query_result_export::prepare(THD *thd, const mem_root_deque<Item *> &list,
Query_expression *u) {
bool blob_flag = false;
bool string_results = false, non_string_results = false;
unit = u;
if (strlen(exchange->file_name) + NAME_LEN >= FN_REFLEN)
strmake(path, exchange->file_name, FN_REFLEN - 1);
write_cs = (exchange->file_info.cs != nullptr) ? exchange->file_info.cs
: &my_charset_bin;
/* Check if there is any blobs in data */
for (Item *item : VisibleFields(list)) {
if (item->max_length >= MAX_BLOB_WIDTH) {
blob_flag = true;
break;
}
if (item->result_type() == STRING_RESULT)
string_results = true;
else
non_string_results = true;
}
if (exchange->field.escaped->numchars() > 1 ||
exchange->field.enclosed->numchars() > 1) {
my_error(ER_WRONG_FIELD_TERMINATORS, MYF(0));
return true;
}
if (exchange->field.escaped->length() > 1 ||
exchange->field.enclosed->length() > 1 ||
!my_isascii(exchange->field.escaped->ptr()[0]) ||
!my_isascii(exchange->field.enclosed->ptr()[0]) ||
!exchange->field.field_term->is_ascii() ||
!exchange->line.line_term->is_ascii() ||
!exchange->line.line_start->is_ascii()) {
/*
Current LOAD DATA INFILE recognizes field/line separators "as is" without
converting from client charset to data file charset. So, it is supposed,
that input file of LOAD DATA INFILE consists of data in one charset and
separators in other charset. For the compatibility with that [buggy]
behaviour SELECT INTO OUTFILE implementation has been saved "as is" too,
but the new warning message has been added:
Non-ASCII separator arguments are not fully supported
*/
push_warning(thd, Sql_condition::SL_WARNING,
WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED,
ER_THD(thd, WARN_NON_ASCII_SEPARATOR_NOT_IMPLEMENTED));
}
field_term_length = exchange->field.field_term->length();
field_term_char = field_term_length
? (int)(uchar)(*exchange->field.field_term)[0]
: INT_MAX;
if (!exchange->line.line_term->length())
exchange->line.line_term =
exchange->field.field_term; // Use this if it exists
field_sep_char = (exchange->field.enclosed->length()
? (int)(uchar)(*exchange->field.enclosed)[0]
: field_term_char);
if (exchange->field.escaped->length() &&
(exchange->escaped_given() ||
!(thd->variables.sql_mode & MODE_NO_BACKSLASH_ESCAPES)))
escape_char = (int)(uchar)(*exchange->field.escaped)[0];
else
escape_char = -1;
is_ambiguous_field_sep = (strchr(ESCAPE_CHARS, field_sep_char) != nullptr);
is_unsafe_field_sep = (strchr(NUMERIC_CHARS, field_sep_char) != nullptr);
line_sep_char = (exchange->line.line_term->length()
? (int)(uchar)(*exchange->line.line_term)[0]
: INT_MAX);
if (!field_term_length) exchange->field.opt_enclosed = false;
if (!exchange->field.enclosed->length())
exchange->field.opt_enclosed = true; // A little quicker loop
fixed_row_size =
(!field_term_length && !exchange->field.enclosed->length() && !blob_flag);
if ((is_ambiguous_field_sep && exchange->field.enclosed->is_empty() &&
(string_results || is_unsafe_field_sep)) ||
(exchange->field.opt_enclosed && non_string_results &&
field_term_length && strchr(NUMERIC_CHARS, field_term_char))) {
push_warning(thd, Sql_condition::SL_WARNING, ER_AMBIGUOUS_FIELD_TERM,
ER_THD(thd, ER_AMBIGUOUS_FIELD_TERM));
is_ambiguous_field_term = true;
} else
is_ambiguous_field_term = false;
return false;
}
bool Query_result_export::start_execution(THD *thd) {
if ((file = create_file(thd, path, exchange, &cache)) < 0) return true;
return false;
}
#define NEED_ESCAPING(x) \
((int)(uchar)(x) == escape_char || \
(enclosed ? (int)(uchar)(x) == field_sep_char \
: (int)(uchar)(x) == field_term_char) || \
(int)(uchar)(x) == line_sep_char || !(x))
bool Query_result_export::send_data(THD *thd,
const mem_root_deque<Item *> &items) {
DBUG_TRACE;
char buff[MAX_FIELD_WIDTH], null_buff[2], space[MAX_FIELD_WIDTH];
char cvt_buff[MAX_FIELD_WIDTH];
String cvt_str(cvt_buff, sizeof(cvt_buff), write_cs);
bool space_inited = false;
String tmp(buff, sizeof(buff), &my_charset_bin), *res;
tmp.length(0);
row_count++;
size_t used_length = 0;
uint items_left = CountVisibleFields(items);
if (my_b_write(&cache,
pointer_cast<const uchar *>(exchange->line.line_start->ptr()),
exchange->line.line_start->length()))
goto err;
for (Item *item : VisibleFields(items)) {
Item_result result_type = item->result_type();
if (item->actual_data_type() == MYSQL_TYPE_BIT) {
/* BIT is output as binary string */
result_type = STRING_RESULT;
}
bool enclosed =
(exchange->field.enclosed->length() &&
(!exchange->field.opt_enclosed || result_type == STRING_RESULT));
res = item->val_str(&tmp);
if (res && !my_charset_same(write_cs, res->charset()) &&
!my_charset_same(write_cs, &my_charset_bin)) {
const char *well_formed_error_pos;
const char *cannot_convert_error_pos;
const char *from_end_pos;
const char *error_pos;
size_t bytes;
uint64 estimated_bytes =
((uint64)res->length() / res->charset()->mbminlen + 1) *
write_cs->mbmaxlen +
1;
estimated_bytes = std::min(estimated_bytes, uint64(UINT_MAX32));
if (cvt_str.mem_realloc((uint32)estimated_bytes)) {
my_error(ER_OUTOFMEMORY, MYF(ME_FATALERROR), (uint32)estimated_bytes);
goto err;
}
bytes = well_formed_copy_nchars(
write_cs, cvt_str.ptr(), cvt_str.alloced_length(), res->charset(),
res->ptr(), res->length(),
UINT_MAX32, // copy all input chars,
// i.e. ignore nchars parameter
&well_formed_error_pos, &cannot_convert_error_pos, &from_end_pos);
error_pos = well_formed_error_pos ? well_formed_error_pos
: cannot_convert_error_pos;
if (error_pos) {
char printable_buff[32];
convert_to_printable(printable_buff, sizeof(printable_buff), error_pos,
res->ptr() + res->length() - error_pos,
res->charset(), 6);
push_warning_printf(thd, Sql_condition::SL_WARNING,
ER_TRUNCATED_WRONG_VALUE_FOR_FIELD,
ER_THD(thd, ER_TRUNCATED_WRONG_VALUE_FOR_FIELD),
"string", printable_buff, item->item_name.ptr(),
static_cast<long>(row_count));
} else if (from_end_pos < res->ptr() + res->length()) {
/*
result is longer than UINT_MAX32 and doesn't fit into String
*/
push_warning_printf(thd, Sql_condition::SL_WARNING, WARN_DATA_TRUNCATED,
ER_THD(thd, WARN_DATA_TRUNCATED), item->full_name(),
static_cast<long>(row_count));
}
cvt_str.length(bytes);
res = &cvt_str;
}
if (res && enclosed) {
if (my_b_write(
&cache,
pointer_cast<const uchar *>(exchange->field.enclosed->ptr()),
exchange->field.enclosed->length()))
goto err;
}
if (!res) { // NULL
if (!fixed_row_size) {
if (escape_char != -1) // Use \N syntax
{
null_buff[0] = escape_char;
null_buff[1] = 'N';
if (my_b_write(&cache, (uchar *)null_buff, 2)) goto err;
} else if (my_b_write(&cache, pointer_cast<const uchar *>("NULL"), 4))
goto err;
} else {
used_length = 0; // Fill with space
}
} else {
if (fixed_row_size)
used_length = min<size_t>(res->length(), item->max_length);
else
used_length = res->length();
if ((result_type == STRING_RESULT || is_unsafe_field_sep) &&
escape_char != -1) {
const char *pos, *start, *end;
bool escape_4_bytes = false;
int in_escapable_4_bytes = 0;
const CHARSET_INFO *res_charset = res->charset();
const CHARSET_INFO *character_set_client =
thd->variables.character_set_client;
bool check_following_byte =
(res_charset == &my_charset_bin) &&
character_set_client->escape_with_backslash_is_dangerous;
/*
The judgement of mbmaxlenlen == 2 is for gb18030 only.
Since there are several charsets with mbmaxlen == 4,
so we have to use mbmaxlenlen == 2 here, which is only true
for gb18030 currently.
*/
assert(character_set_client->mbmaxlen == 2 ||
my_mbmaxlenlen(character_set_client) == 2 ||
!character_set_client->escape_with_backslash_is_dangerous);
for (start = pos = res->ptr(), end = pos + used_length; pos != end;
pos++) {
bool need_escape = false;
if (use_mb(res_charset)) {
int l;
if ((l = my_ismbchar(res_charset, pos, end))) {
pos += l - 1;
continue;
}
}
/*
Special case when dumping BINARY/VARBINARY/BLOB values
for the clients with character sets big5, cp932, gbk, sjis
and gb18030, which can have the escape character
(0x5C "\" by default) as the second byte of a multi-byte sequence.
The escape character had better be single-byte character,
non-ASCII characters are not prohibited, but not fully supported.
If
- pos[0] is a valid multi-byte head (e.g 0xEE) and
- pos[1] is 0x00, which will be escaped as "\0",
then we'll get "0xEE + 0x5C + 0x30" in the output file.
If this file is later loaded using this sequence of commands:
mysql> create table t1 (a varchar(128)) character set big5;
mysql> LOAD DATA INFILE 'dump.txt' INTO TABLE t1;
then 0x5C will be misinterpreted as the second byte
of a multi-byte character "0xEE + 0x5C", instead of
escape character for 0x00.
To avoid this confusion, we'll escape the multi-byte
head character too, so the sequence "0xEE + 0x00" will be
dumped as "0x5C + 0xEE + 0x5C + 0x30".
Note, in the condition below we only check if
mbcharlen is equal to 2, because there are no
character sets with mbmaxlen longer than 2
and with escape_with_backslash_is_dangerous set.
assert before the loop makes that sure.
But gb18030 is an exception. First of all, 2-byte codes
would be affected by the issue above without doubt.
Then, 4-byte gb18030 codes would be affected as well.
Supposing the input is GB+81358130, and the
field_term_char is set to '5', escape char is 0x5C by default.
When we come to the first byte 0x81, if we don't escape it but
escape the second byte 0x35 as it's the field_term_char,
we would get 0x81 0x5C 0x35 0x81 0x30 for the gb18030 character.
That would be the same issue as mentioned above.
Also, if we just escape the leading 2 bytes, we would get
0x5C 0x81 0x5C 0x35 0x81 0x30 in this case.
The reader of this sequence would assume that 0x81 0x30
is the starting of a new gb18030 character, which would
result in further confusion.
Once we find any byte of the 4-byte gb18030 character should
be escaped, we have to escape all the 4 bytes.
So for GB+81358130, we will get:
0x5C 0x81 0x5C 0x35 0x5C 0x81 0x30
The byte 0x30 shouldn't be escaped(no matter it's the second
or fourth byte in the sequence), since '\0' would be treated
as 0x00, which is not what we expect. And 0x30 would be treated as
an ASCII char when we read it, which is correct.
*/
assert(in_escapable_4_bytes >= 0);
if (in_escapable_4_bytes > 0) {
assert(check_following_byte);
/* We should escape or not escape all the 4 bytes. */
need_escape = escape_4_bytes;
} else if (NEED_ESCAPING(*pos)) {
need_escape = true;
if (my_mbmaxlenlen(character_set_client) == 2 &&
my_mbcharlen_ptr(character_set_client, pos, end) == 4) {
in_escapable_4_bytes = 4;
escape_4_bytes = true;
}
} else if (check_following_byte) {
int len = my_mbcharlen_ptr(character_set_client, pos, end);
if (len == 2 && pos + 1 < end && NEED_ESCAPING(pos[1]))
need_escape = true;
else if (len == 4 && my_mbmaxlenlen(character_set_client) == 2 &&
pos + 3 < end) {
in_escapable_4_bytes = 4;
escape_4_bytes = (NEED_ESCAPING(pos[1]) ||
NEED_ESCAPING(pos[2]) || NEED_ESCAPING(pos[3]));
need_escape = escape_4_bytes;
}
}
/* Mark how many coming bytes should be escaped, only for gb18030 */
if (in_escapable_4_bytes > 0) {
in_escapable_4_bytes--;
/*
Note that '0' (0x30) in the middle of a 4-byte sequence
can't be escaped. Please read more details from above comments.
2-byte codes won't be affected by this issue.
*/
if (pos[0] == 0x30) need_escape = false;
}
if (need_escape &&
/*
Don't escape field_term_char by doubling - doubling is only
valid for ENCLOSED BY characters:
*/
(enclosed || !is_ambiguous_field_term ||
(int)(uchar)*pos != field_term_char)) {
char tmp_buff[2];
tmp_buff[0] =
((int)(uchar)*pos == field_sep_char && is_ambiguous_field_sep)
? field_sep_char
: escape_char;
tmp_buff[1] = *pos ? *pos : '0';
if (my_b_write(&cache, pointer_cast<const uchar *>(start),
(uint)(pos - start)) ||
my_b_write(&cache, (uchar *)tmp_buff, 2))
goto err;
start = pos + 1;
}
}
/* Assert that no escape mode is active here */
assert(in_escapable_4_bytes == 0);
if (my_b_write(&cache, pointer_cast<const uchar *>(start),
(uint)(pos - start)))
goto err;
} else if (my_b_write(&cache, (uchar *)res->ptr(), used_length))
goto err;
}
if (fixed_row_size) { // Fill with space
if (item->max_length > used_length) {
/* QQ: Fix by adding a my_b_fill() function */
if (!space_inited) {
space_inited = true;
memset(space, ' ', sizeof(space));
}
size_t length = item->max_length - used_length;
for (; length > sizeof(space); length -= sizeof(space)) {
if (my_b_write(&cache, (uchar *)space, sizeof(space))) goto err;
}
if (my_b_write(&cache, (uchar *)space, length)) goto err;
}
}
if (res && enclosed) {
if (my_b_write(
&cache,
pointer_cast<const uchar *>(exchange->field.enclosed->ptr()),
exchange->field.enclosed->length()))
goto err;
}
if (--items_left) {
if (my_b_write(
&cache,
pointer_cast<const uchar *>(exchange->field.field_term->ptr()),
field_term_length))
goto err;
}
}
if (my_b_write(&cache,
pointer_cast<const uchar *>(exchange->line.line_term->ptr()),
exchange->line.line_term->length()))
goto err;
return false;
err:
return true;
}
void Query_result_export::cleanup() {
current_thd->set_sent_row_count(row_count);
Query_result_to_file::cleanup();
}
/***************************************************************************
** Dump of query to a binary file
***************************************************************************/
bool Query_result_dump::prepare(THD *, const mem_root_deque<Item *> &,
Query_expression *u) {
unit = u;
return false;
}
bool Query_result_dump::start_execution(THD *thd) {
if ((file = create_file(thd, path, exchange, &cache)) < 0) return true;
return false;
}
bool Query_result_dump::send_data(THD *, const mem_root_deque<Item *> &items) {
char buff[MAX_FIELD_WIDTH];
String tmp(buff, sizeof(buff), &my_charset_bin), *res;
tmp.length(0);
DBUG_TRACE;
if (row_count++ > 1) {
my_error(ER_TOO_MANY_ROWS, MYF(0));
goto err;
}
for (Item *item : VisibleFields(items)) {
res = item->val_str(&tmp);
if (!res) // If NULL
{
if (my_b_write(&cache, pointer_cast<const uchar *>(""), 1)) goto err;
} else if (my_b_write(&cache, (uchar *)res->ptr(), res->length())) {
char errbuf[MYSYS_STRERROR_SIZE];
my_error(ER_ERROR_ON_WRITE, MYF(0), path, my_errno(),
my_strerror(errbuf, sizeof(errbuf), my_errno()));
goto err;
}
}
return false;
err:
return true;
}
/***************************************************************************
Dump of select to variables
***************************************************************************/
bool Query_dumpvar::prepare(THD *, const mem_root_deque<Item *> &list,
Query_expression *u) {