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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401
|
/* Copyright (c) 2017, 2025, 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 */
/**
@file storage/perfschema/pfs_plugin_table.cc
The performance schema implementation of plugin table.
*/
#include "storage/perfschema/pfs_plugin_table.h"
#include <mysql/components/services/pfs_plugin_table_service.h>
#include <list>
#include <string>
#include "sql/field.h"
#include "sql/pfs_priv_util.h"
#include "sql/plugin_table.h"
#include "sql/table.h"
#include "storage/perfschema/pfs_column_values.h"
#include "storage/perfschema/table_helper.h"
#include "storage/perfschema/table_plugin_table.h"
/* clang-format off */
/**
@page PAGE_PFS_TABLE_PLUGIN_SERVICE Plugin table service
Performance Schema plugin table service is a mechanism which provides
plugins/components a way to expose their own tables in Performance Schema.
@subpage SERVICE_INTRODUCTION
@subpage SERVICE_INTERFACE
@subpage EXAMPLE_PLUGIN_COMPONENT
@page SERVICE_INTRODUCTION Service Introduction
This service is named as <i>pfs_plugin_table</i> and it exposes two major
methods which are\n
- @c add_tables : plugin/component to add tables in performance schema
- @c delete_tables : plugin/component to delete tables from performance schema
There are three major actors in its implementation:
- PFS_engine_table_proxy \n
This structure is collection of function pointers which are to be
implemented by plugins/components who wish to expose table in
performance_schema.
- PFS_engine_table_share_proxy \n
This structure is to keep the required information which would be used
to register a table in performance_schema. Table share in pfs would be
initialized using instance of PFS_engine_table_share_proxy and it would
be passed by plugin while registering table.
- Table_Handle \n
An instance of this structure will be created when a table is opened
in performance_schema. This will be used to keep current status of
table during operation being performed on table.
@section Block Diagram
Following diagram shows the block diagram of PFS services functionality, to
add a plugin table in performance schema, exposed via mysql-server component.
@startuml
actor client as "Plugin/component"
participant registry_service as "MySQL server registry service"
box "Performance Schema Storage Engine" #LightBlue
participant pfs_service as "pfs_plugin_table Service\n(mysql-server component)"
participant pfs as "PFS Implementation"
endbox
== Initialization ==
client -> client :
note right: Initialize PFS_engine_table_share_proxy \n with required information.
== Acquire pfs service ==
client -> registry_service : Get registry service handle
client -> registry_service : Acquire pfs service handle
== pfs service call to add a table ==
client -> pfs_service : PFS Service Call \n[add_tables()]
pfs_service -> pfs : PFS Implementation Call\n[pfs_add_tables()]
pfs -> pfs_service : Return result
pfs_service -> client : Return result
== Operations on table ==
== pfs service call to delete a table ==
client -> pfs_service : PFS Service Call \n[delete_tables()]
pfs_service -> pfs : PFS Implementation Call\n[pfs_delete_tables()]
pfs -> pfs_service : Return result
pfs_service -> client : Return result
== Release pfs service ==
client -> registry_service : Release pfs service handle
client -> registry_service : Release registry service handle
== Cleanup ==
client -> client :
note right: Clean-up PFS_engine_table_share_proxy.
@enduml
@page SERVICE_INTERFACE Service Interface
This interface is provided to plugins/components, using which they can expose
their tables in performance schema. This interface consists of mainly two
structures
- <b>PFS_engine_table_proxy</b> \n
This structure is collection of function pointers which are to be
implemented by plugins/components who wish to expose table in
performance_schema.\n\n
Control flow will be redirected to these functions' implementations when
query reaches to Performance Schema storage engine to perform some
operation on the table added by plugin/component.
- <b>PFS_engine_table_share_proxy</b> \n
An instance of this structure is to keep the required information which
would be used to register a table in performance_schema. Table share, for
the table added by plugin/component, in performance schema would be
initialized using this instance
and it would be provided by plugin/component
while registering table.
Plugin/component is responsible to maintain buffers which would be used to
store table data. During insert/fetch/delete etc, these buffers will be used.
@section Flow Diagram
Following flow diagram shows the execution of a select query executed on
a table which is added in performance schema by plugin/component.
@startuml
actor client as "Client"
box "MySQL Server" #LightBlue
participant server as "MySQL server"
participant pfs as "Performance schema\n storage engine"
participant pfs_table as "Performance schema\n plugin table"
endbox
participant plugin as "Plugin/Component code"
== query start ==
client -> server :
note right: Query to plugin table \n in performance schema
== Opening table ==
server -> pfs : ha_perfschema::open()
activate pfs_table
server -> pfs : ha_perfschema::rnd_init()
pfs -> pfs_table : table_plugin_table::create()
pfs_table -> plugin : open_table()
plugin -> plugin :
note right: Create an instance of \n PSI_table_handle
pfs_table <-- plugin : return PSI_table_handle
pfs <-- pfs_table : return table_plugin_table instance
pfs -> pfs_table : rnd_init()
pfs_table -> plugin : rnd_init (PSI_table_handle*)
pfs_table <-- plugin: return
pfs <-- pfs_table : return
server <-- pfs : return
== For each row ==
server -> pfs : ha_perfschema::rnd_next()
pfs -> pfs_table : rnd_next()
pfs_table -> plugin : rnd_next(PSI_table_handle*)
plugin -> plugin :
note right: read row from \n stats buffer to table_handle
pfs_table <-- plugin : return
pfs <-- pfs_table : return
pfs -> pfs_table : read_row_values()
pfs_table -> plugin : read_row_values()
plugin -> plugin :
note right: read a column value \n from table_handle to field
pfs_table <-- plugin : return
pfs_table <-- pfs_table :
note right: loop till all \n fields are read
pfs <-- pfs_table : result set row
server <-- pfs : result set row
client <-- server : result set row
== Closing table ==
server -> pfs : ha_perfschema::rnd_end()
pfs -> pfs_table : rnd_end()
pfs_table -> plugin : rnd_end(PSI_table_handle);
server -> pfs : ha_perfschema::close()
pfs -> pfs_table : delete table instance
pfs_table -> plugin : close_table()
plugin -> plugin :
note right: delete PSI_table_handle instance
deactivate pfs_table
pfs_table <-- plugin : return
pfs <-- pfs_table : return
server <-- pfs : return
== query end ==
client <-- server :
note right: query end
@enduml
*/
/* clang-format on */
struct PSI_POS;
struct PSI_RECORD;
bool plugin_table_service_initialized = false;
/**
* Traverse all fields one by one and pass the values to be inserted to
* plugin's/component's write_row() implementation.
*
* @param pfs_table PFS table handle.
* @param table Server table in which data is to be inserted.
* @param buf Buffer (not used)
* @param fields Array of fields in the table
*/
static int write_row(PFS_engine_table *pfs_table, TABLE *table,
unsigned char *buf [[maybe_unused]], Field **fields) {
int result = 0;
Field *f;
auto *temp = (table_plugin_table *)pfs_table;
for (; (f = *fields); fields++) {
if (bitmap_is_set(table->write_set, f->field_index())) {
result = temp->m_st_table->write_column_value(
temp->plugin_table_handle, (PSI_field *)f, f->field_index());
if (result) {
return result;
}
}
}
/* After all the columns values are written, write the row */
return temp->m_st_table->write_row_values(temp->plugin_table_handle);
}
/**
* Initialize table share when table is being added.
*
* @param share table share to be initialized
* @param proxy_share Proxy shared passed from plugin/component
*
* return 0 for success
*/
static int initialize_table_share(PFS_engine_table_share *share,
PFS_engine_table_share_proxy *proxy_share) {
/* Set acl */
switch (proxy_share->m_acl) {
case READONLY:
share->m_acl = &pfs_readonly_acl;
break;
case TRUNCATABLE:
share->m_acl = &pfs_truncatable_acl;
break;
case UPDATABLE:
share->m_acl = &pfs_updatable_acl;
break;
case EDITABLE:
share->m_acl = &pfs_editable_acl;
break;
default: /* Unknown ACL */
share->m_acl = &pfs_unknown_acl;
break;
}
/* Open table pointer to open a table with share provided */
share->m_open_table = table_plugin_table::create;
share->m_write_row = write_row;
share->m_delete_all_rows = proxy_share->delete_all_rows;
share->m_get_row_count = proxy_share->get_row_count;
share->m_ref_length = proxy_share->m_ref_length;
share->m_thr_lock_ptr = new THR_LOCK();
share->m_table_def =
new Plugin_table("performance_schema", proxy_share->m_table_name,
proxy_share->m_table_definition,
"ENGINE = 'PERFORMANCE_SCHEMA'", nullptr);
/*
The innodb_redo_log_files table should be available when PFS is disabled.
But the PFS_engine_table_share_proxy structure does not provide m_perpetual
flag that is generally used for this purpose. So a check is added below to
see if the table name is innodb_redo_log_files and then set
share->m_perpetual to true to make innodb_redo_log_files available when PFS
is disabled. This needs to go away.
TODO : Add extra flag member in struct PFS_engine_table_share_proxy and
adjust pfs_plugin_table_v1 to pfs_plugin_table_v2. This addition of the flag
would allow any plugin/component that uses PFS_engine_table_share_proxy to
have an option of making the table available when PFS is disabled. Once that
is implemented, the below check can be removed. OR, this flag should be
removed in future, and each table can test its own logic to decide whether
to open a table or not, instead of using the perpetual=true/false property.
*/
share->m_perpetual =
strcmp(proxy_share->m_table_name, "innodb_redo_log_files") == 0;
/* List of call back function pointers pointing to the interface functions
* implemented by plugin/component.
*/
memcpy(&share->m_st_table, &proxy_share->m_proxy_engine_table,
sizeof(PFS_engine_table_proxy));
/*Initialize table share locks */
thr_lock_init(share->m_thr_lock_ptr);
share->m_ref_count = 0;
return 0;
}
/**
* Destroy a table share
*
* @param share share to be destroyed.
*/
static void destroy_table_share(PFS_engine_table_share *share) {
assert(share);
thr_lock_delete(share->m_thr_lock_ptr);
delete share->m_table_def;
delete share->m_thr_lock_ptr;
delete share;
}
/**
* Add plugin/component tables in performance schema.
*
* @param st_share_list List of PFS_engine_table_share_proxy instances
* initialized/populated by plugin/component.
* @param share_list_count Number of shares in the list
*
* @return 0 for success.
*/
static int pfs_add_tables_v1(PFS_engine_table_share_proxy **st_share_list,
uint share_list_count) {
PFS_engine_table_share_proxy *temp_st_share;
/* A list of table shares 'to be added' */
std::list<PFS_engine_table_share *> share_list;
/* ============== CRITICAL SECTION 1 (begin) ================= */
pfs_external_table_shares.lock_share_list();
/* Check if any of the table already exist in PFS or there are duplicate
* table names in share list.
* This would cause traversing share list once more but its beneficial in case
* when duplicate name was found at the end of the list when all earlier
* shares are initialized.
*/
for (uint i = 0; i < share_list_count; i++) {
temp_st_share = st_share_list[i];
assert(temp_st_share && temp_st_share->m_table_name &&
temp_st_share->m_table_name_length > 0);
/* If table already exists either in
* - Native PFS tables list
* - Other (non native) PFS tables list (including purgatory)
*/
if (PFS_engine_table::find_engine_table_share(
temp_st_share->m_table_name) ||
pfs_external_table_shares.find_share(temp_st_share->m_table_name,
true)) {
pfs_external_table_shares.unlock_share_list();
return ER_TABLE_EXISTS_ERROR;
}
}
/* Now traverse the share list again to initialize and add table shares to
PFS shares list.
*/
for (uint i = 0; i < share_list_count; i++) {
temp_st_share = st_share_list[i];
/* Create a new instance of table_share */
auto *temp_share = new PFS_engine_table_share();
/* Initialize table share for this new table */
if (initialize_table_share(temp_share, temp_st_share)) {
/* Delete all the initialized table shares till now */
for (auto *share : share_list) {
pfs_external_table_shares.remove_share(share);
destroy_table_share(share);
}
pfs_external_table_shares.unlock_share_list();
return 1;
}
/* Add share to PFS shares list */
pfs_external_table_shares.add_share(temp_share);
share_list.push_back(temp_share);
}
/* Unlock mutex on PFS share list now because while creating table (by DD API)
same mutex will be locked again while searching a share in PFS share list
*/
pfs_external_table_shares.unlock_share_list();
/* ============== CRITICAL SECTION 1 (end) ================= */
/* At this point, all the shares have been added to PFS share list. Now
traverse the share list again and create tables using DD API
*/
for (uint i = 0; i < share_list_count; i++) {
temp_st_share = st_share_list[i];
const Plugin_table t(PERFORMANCE_SCHEMA_str.str,
temp_st_share->m_table_name,
temp_st_share->m_table_definition,
"engine = 'performance_schema'", nullptr);
if (create_native_table_for_pfs(&t)) {
/* ============== CRITICAL SECTION 2 (begin) ================= */
pfs_external_table_shares.lock_share_list();
/* Delete all the initialized table share till now */
for (auto *share : share_list) {
pfs_external_table_shares.remove_share(share);
destroy_table_share(share);
}
pfs_external_table_shares.unlock_share_list();
/* ============== CRITICAL SECTION 2 (end) ================= */
return 1;
}
}
return 0;
}
/**
* Delete plugin/component tables form performance schema.
*
* @param st_share_list List of PFS_engine_table_share_proxy instances
* initialized/populated by plugin/component.
* @param share_list_count Number of shares in the list
*
* @return 0 for success
*/
static int pfs_delete_tables_v1(PFS_engine_table_share_proxy **st_share_list,
uint share_list_count) {
/* A list of shares 'to be removed' */
std::list<PFS_engine_table_share *> share_list;
/* ============== CRITICAL SECTION 1 (begin) ================= */
pfs_external_table_shares.lock_share_list();
/* Check if any of the table, in the list, doesn't exist. */
for (uint i = 0; i < share_list_count; i++) {
PFS_engine_table_share_proxy *temp_st_share = st_share_list[i];
assert(temp_st_share && temp_st_share->m_table_name &&
temp_st_share->m_table_name_length > 0);
/* Search table share for the table in other list (including purgatory) */
PFS_engine_table_share *temp_share =
pfs_external_table_shares.find_share(temp_st_share->m_table_name, true);
if (temp_share != nullptr) {
/* If share found in global list,
* - Move it to purgatory.
* - Add it to the list of shares to be removed.
*/
temp_share->m_in_purgatory = true;
share_list.push_back(temp_share);
}
}
pfs_external_table_shares.unlock_share_list();
/* ============== CRITICAL SECTION 1 ( end ) ================= */
/* At this point, all 'to be removed' shares are moved to purgatory. So no
* new thread would be able to search them in global shares list, therefore
* no new query could be run on these tables.
*
* Now traverse share_list and drop tables using DD API.
*/
for (auto *share : share_list) {
if (drop_native_table_for_pfs(PERFORMANCE_SCHEMA_str.str,
share->m_table_def->get_name())) {
return 1;
}
}
/* ============== CRITICAL SECTION 2 (begin) ================= */
pfs_external_table_shares.lock_share_list();
/* At this point tables have been dropped. So we can remove shares from
* PFS shares list.
*/
for (auto *share : share_list) {
pfs_external_table_shares.remove_share(share);
destroy_table_share(share);
}
pfs_external_table_shares.unlock_share_list();
/* ============== CRITICAL SECTION 2 ( end ) ================= */
return 0;
}
/* Helper functions to store/fetch value into/from a field */
/**************************************
* Type TINYINT *
**************************************/
void set_field_tinyint_v1(PSI_field *f, PSI_tinyint value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_tiny(f_ptr, value.val);
}
}
void set_field_utinyint_v1(PSI_field *f, PSI_utinyint value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_utiny(f_ptr, value.val);
}
}
void get_field_tinyint_v1(PSI_field *f, PSI_tinyint *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_tiny(f_ptr);
value->is_null = false;
}
void get_field_utinyint_v1(PSI_field *f, PSI_utinyint *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_utiny(f_ptr);
value->is_null = false;
}
void read_key_tinyint_v1(PSI_key_reader *reader, PSI_plugin_key_tinyint *key,
int find_flag) {
auto *pfs_reader = (PFS_key_reader *)reader;
const auto e_find_flag = (enum ha_rkey_function)find_flag;
char temp_value{0};
key->m_find_flags =
pfs_reader->read_int8(e_find_flag, key->m_is_null, &temp_value);
key->m_value = temp_value;
}
void read_key_utinyint_v1(PSI_key_reader *reader, PSI_plugin_key_utinyint *key,
int find_flag) {
auto *pfs_reader = (PFS_key_reader *)reader;
const auto e_find_flag = (enum ha_rkey_function)find_flag;
unsigned char temp_value{0};
key->m_find_flags =
pfs_reader->read_uint8(e_find_flag, key->m_is_null, &temp_value);
key->m_value = temp_value;
}
bool match_key_tinyint_v1(bool record_null, long record_value,
PSI_plugin_key_tinyint *key) {
return PFS_key_long::stateless_match(
record_null, record_value, key->m_is_null, key->m_value,
(enum ha_rkey_function)key->m_find_flags);
}
bool match_key_utinyint_v1(bool record_null, unsigned long record_value,
PSI_plugin_key_utinyint *key) {
return PFS_key_ulong::stateless_match(
record_null, record_value, key->m_is_null, key->m_value,
(enum ha_rkey_function)key->m_find_flags);
}
/**************************************
* Type SMALLINT *
**************************************/
void set_field_smallint_v1(PSI_field *f, PSI_smallint value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_short(f_ptr, value.val);
}
}
void set_field_usmallint_v1(PSI_field *f, PSI_usmallint value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_ushort(f_ptr, value.val);
}
}
void get_field_smallint_v1(PSI_field *f, PSI_smallint *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_short(f_ptr);
value->is_null = false;
}
void get_field_usmallint_v1(PSI_field *f, PSI_usmallint *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_ushort(f_ptr);
value->is_null = false;
}
void read_key_smallint_v1(PSI_key_reader *reader, PSI_plugin_key_smallint *key,
int find_flag) {
auto *pfs_reader = (PFS_key_reader *)reader;
const auto e_find_flag = (enum ha_rkey_function)find_flag;
short temp_value{0};
key->m_find_flags =
pfs_reader->read_int16(e_find_flag, key->m_is_null, &temp_value);
key->m_value = temp_value;
}
void read_key_usmallint_v1(PSI_key_reader *reader,
PSI_plugin_key_usmallint *key, int find_flag) {
auto *pfs_reader = (PFS_key_reader *)reader;
const auto e_find_flag = (enum ha_rkey_function)find_flag;
unsigned short temp_value{0};
key->m_find_flags =
pfs_reader->read_uint16(e_find_flag, key->m_is_null, &temp_value);
key->m_value = temp_value;
}
bool match_key_smallint_v1(bool record_null, long record_value,
PSI_plugin_key_smallint *key) {
return PFS_key_long::stateless_match(
record_null, record_value, key->m_is_null, key->m_value,
(enum ha_rkey_function)key->m_find_flags);
}
bool match_key_usmallint_v1(bool record_null, unsigned long record_value,
PSI_plugin_key_usmallint *key) {
return PFS_key_ulong::stateless_match(
record_null, record_value, key->m_is_null, key->m_value,
(enum ha_rkey_function)key->m_find_flags);
}
/**************************************
* Type MEDIUMINT *
**************************************/
void set_field_mediumint_v1(PSI_field *f, PSI_mediumint value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_medium(f_ptr, value.val);
}
}
void set_field_umediumint_v1(PSI_field *f, PSI_umediumint value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_umedium(f_ptr, value.val);
}
}
void get_field_mediumint_v1(PSI_field *f, PSI_mediumint *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_medium(f_ptr);
value->is_null = false;
}
void get_field_umediumint_v1(PSI_field *f, PSI_umediumint *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_umedium(f_ptr);
value->is_null = false;
}
void read_key_mediumint_v1(PSI_key_reader *reader,
PSI_plugin_key_mediumint *key, int find_flag) {
auto *pfs_reader = (PFS_key_reader *)reader;
const auto e_find_flag = (enum ha_rkey_function)find_flag;
long temp_value{0};
key->m_find_flags =
pfs_reader->read_int24(e_find_flag, key->m_is_null, &temp_value);
key->m_value = temp_value;
}
void read_key_umediumint_v1(PSI_key_reader *reader,
PSI_plugin_key_umediumint *key, int find_flag) {
auto *pfs_reader = (PFS_key_reader *)reader;
const auto e_find_flag = (enum ha_rkey_function)find_flag;
unsigned long temp_value{0};
key->m_find_flags =
pfs_reader->read_uint24(e_find_flag, key->m_is_null, &temp_value);
key->m_value = temp_value;
}
bool match_key_mediumint_v1(bool record_null, long record_value,
PSI_plugin_key_mediumint *key) {
return PFS_key_long::stateless_match(
record_null, record_value, key->m_is_null, key->m_value,
(enum ha_rkey_function)key->m_find_flags);
}
bool match_key_umediumint_v1(bool record_null, unsigned long record_value,
PSI_plugin_key_umediumint *key) {
return PFS_key_ulong::stateless_match(
record_null, record_value, key->m_is_null, key->m_value,
(enum ha_rkey_function)key->m_find_flags);
}
/**************************************
* Type INTEGER (INT) *
**************************************/
void set_field_integer_v1(PSI_field *f, PSI_int value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_long(f_ptr, value.val);
}
}
void set_field_uinteger_v1(PSI_field *f, PSI_uint value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_ulong(f_ptr, value.val);
}
}
void get_field_integer_v1(PSI_field *f, PSI_int *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_long(f_ptr);
value->is_null = false;
}
void get_field_uinteger_v1(PSI_field *f, PSI_int *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_ulong(f_ptr);
value->is_null = false;
}
void read_key_integer_v1(PSI_key_reader *reader, PSI_plugin_key_integer *key,
int find_flag) {
auto *pfs_reader = (PFS_key_reader *)reader;
const auto e_find_flag = (enum ha_rkey_function)find_flag;
long temp_value{0};
key->m_find_flags =
pfs_reader->read_long(e_find_flag, key->m_is_null, &temp_value);
key->m_value = temp_value;
}
void read_key_uinteger_v1(PSI_key_reader *reader, PSI_plugin_key_uinteger *key,
int find_flag) {
auto *pfs_reader = (PFS_key_reader *)reader;
const auto e_find_flag = (enum ha_rkey_function)find_flag;
unsigned long temp_value{0};
key->m_find_flags =
pfs_reader->read_ulong(e_find_flag, key->m_is_null, &temp_value);
key->m_value = temp_value;
}
bool match_key_integer_v1(bool record_null, long record_value,
PSI_plugin_key_integer *key) {
return PFS_key_long::stateless_match(
record_null, record_value, key->m_is_null, key->m_value,
(enum ha_rkey_function)key->m_find_flags);
}
bool match_key_uinteger_v1(bool record_null, unsigned long record_value,
PSI_plugin_key_uinteger *key) {
return PFS_key_ulong::stateless_match(
record_null, record_value, key->m_is_null, key->m_value,
(enum ha_rkey_function)key->m_find_flags);
}
/**************************************
* Type BIGINT *
**************************************/
void set_field_bigint_v1(PSI_field *f, PSI_bigint value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_longlong(f_ptr, value.val);
}
}
void set_field_ubigint_v1(PSI_field *f, PSI_ubigint value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_ulonglong(f_ptr, value.val);
}
}
void get_field_bigint_v1(PSI_field *f, PSI_bigint *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_longlong(f_ptr);
value->is_null = false;
}
void get_field_ubigint_v1(PSI_field *f, PSI_ubigint *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_ulonglong(f_ptr);
value->is_null = false;
}
void read_key_bigint_v1(PSI_key_reader *reader, PSI_plugin_key_bigint *key,
int find_flag) {
auto *pfs_reader = (PFS_key_reader *)reader;
const auto e_find_flag = (enum ha_rkey_function)find_flag;
long long temp_value{0};
key->m_find_flags =
pfs_reader->read_longlong(e_find_flag, key->m_is_null, &temp_value);
key->m_value = temp_value;
}
void read_key_ubigint_v1(PSI_key_reader *reader, PSI_plugin_key_ubigint *key,
int find_flag) {
auto *pfs_reader = (PFS_key_reader *)reader;
const auto e_find_flag = (enum ha_rkey_function)find_flag;
unsigned long long temp_value{0};
key->m_find_flags =
pfs_reader->read_ulonglong(e_find_flag, key->m_is_null, &temp_value);
key->m_value = temp_value;
}
bool match_key_bigint_v1(bool record_null, long long record_value,
PSI_plugin_key_bigint *key) {
return PFS_key_longlong::stateless_match(
record_null, record_value, key->m_is_null, key->m_value,
(enum ha_rkey_function)key->m_find_flags);
}
bool match_key_ubigint_v1(bool record_null, unsigned long long record_value,
PSI_plugin_key_ubigint *key) {
return PFS_key_ulonglong::stateless_match(
record_null, record_value, key->m_is_null, key->m_value,
(enum ha_rkey_function)key->m_find_flags);
}
/**************************************
* Type DECIMAL *
**************************************/
void set_field_decimal_v1(PSI_field *f, PSI_double value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_decimal(f_ptr, value.val);
}
}
void get_field_decimal_v1(PSI_field *f, PSI_double *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_decimal(f_ptr);
value->is_null = false;
}
/**************************************
* Type FLOAT *
**************************************/
void set_field_float_v1(PSI_field *f, PSI_double value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_float(f_ptr, value.val);
}
}
void get_field_float_v1(PSI_field *f, PSI_double *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_float(f_ptr);
value->is_null = false;
}
/**************************************
* Type DOUBLE *
**************************************/
void set_field_double_v1(PSI_field *f, PSI_double value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_double(f_ptr, value.val);
}
}
void get_field_double_v1(PSI_field *f, PSI_double *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_double(f_ptr);
value->is_null = false;
}
/**************************************
* Type CHAR *
**************************************/
void set_field_char_utf8mb4_v1(PSI_field *f, const char *value, uint len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (len > 0) {
set_field_char_utf8mb4(f_ptr, value, len);
} else {
f_ptr->set_null();
}
}
void get_field_char_utf8mb4_v1(PSI_field *f, char *val, uint *len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
/* If NULL is provided */
if (f_ptr->is_null()) {
*len = 0;
val[0] = '\0';
return;
}
get_field_char_utf8mb4(f_ptr, val, len);
}
/**************************************
* Type VARCAHAR *
**************************************/
void set_field_varchar_utf8mb4_len_v1(PSI_field *f, const char *str, uint len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (len > 0) {
set_field_varchar_utf8mb4(f_ptr, str, len);
} else {
f_ptr->set_null();
}
}
void set_field_varchar_utf8mb4_v1(PSI_field *f, const char *str) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (str != nullptr) {
set_field_varchar_utf8mb4(f_ptr, str);
} else {
f_ptr->set_null();
}
}
void get_field_varchar_utf8mb4_v1(PSI_field *f, char *val, uint *len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
/* If NULL is provided */
if (f_ptr->is_null()) {
*len = 0;
val[0] = '\0';
return;
}
get_field_varchar_utf8mb4(f_ptr, val, len);
}
/**************************************
* Type BLOB/TEXT *
**************************************/
void set_field_blob_v1(PSI_field *f, const char *val, uint len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (len > 0) {
set_field_blob(f_ptr, val, len);
} else {
f_ptr->set_null();
}
}
void get_field_blob_v1(PSI_field *f, char *val, uint *len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
/* If NULL is provided */
if (f_ptr->is_null()) {
*len = 0;
val[0] = '\0';
return;
}
get_field_blob(f_ptr, val, len);
}
/**************************************
* Type TEXT *
**************************************/
void set_field_text_v1(PSI_field *f, const char *val, uint len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (val != nullptr) {
set_field_text(f_ptr, val, len, &my_charset_utf8mb4_bin);
} else {
f_ptr->set_null();
}
}
void get_field_text_v1(PSI_field *f, char *val, uint *len) {
get_field_blob_v1(f, val, len);
}
/**************************************
* Type ENUM *
**************************************/
void set_field_enum_v1(PSI_field *f, PSI_enum value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_enum(f_ptr, value.val);
}
}
void get_field_enum_v1(PSI_field *f, PSI_enum *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_enum(f_ptr);
value->is_null = false;
}
/**************************************
* Type DATE *
**************************************/
void set_field_date_v1(PSI_field *f, const char *value, uint len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (len > 0) {
set_field_date(f_ptr, value, len);
} else {
f_ptr->set_null();
}
}
void get_field_date_v1(PSI_field *f, char *val, uint *len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
/* If NULL is provided */
if (f_ptr->is_null()) {
*len = 0;
val[0] = '\0';
return;
}
get_field_date(f_ptr, val, len);
}
/**************************************
* Type TIME *
**************************************/
void set_field_time_v1(PSI_field *f, const char *value, uint len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (len > 0) {
set_field_time(f_ptr, value, len);
} else {
f_ptr->set_null();
}
}
void get_field_time_v1(PSI_field *f, char *val, uint *len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
/* If NULL is provided */
if (f_ptr->is_null()) {
*len = 0;
val[0] = '\0';
return;
}
get_field_time(f_ptr, val, len);
}
/**************************************
* Type DATETIME *
**************************************/
void set_field_datetime_v1(PSI_field *f, const char *value, uint len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (len > 0) {
set_field_datetime(f_ptr, value, len);
} else {
f_ptr->set_null();
}
}
void get_field_datetime_v1(PSI_field *f, char *val, uint *len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
/* If NULL is provided */
if (f_ptr->is_null()) {
*len = 0;
val[0] = '\0';
return;
}
get_field_datetime(f_ptr, val, len);
}
/**************************************
* Type TIMESTAMP *
**************************************/
void set_field_timestamp_v1(PSI_field *f, const char *value, uint len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (len > 0) {
set_field_timestamp(f_ptr, value, len);
} else {
f_ptr->set_null();
}
}
void set_field_timestamp2_v1(PSI_field *f, ulonglong value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value > 0) {
set_field_timestamp(f_ptr, value);
} else {
f_ptr->set_null();
}
}
void get_field_timestamp_v1(PSI_field *f, char *val, uint *len) {
auto *f_ptr = reinterpret_cast<Field *>(f);
/* If NULL is provided */
if (f_ptr->is_null()) {
*len = 0;
val[0] = '\0';
return;
}
get_field_timestamp(f_ptr, val, len);
}
/**************************************
* Type YEAR *
**************************************/
void set_field_year_v1(PSI_field *f, PSI_year value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (value.is_null) {
f_ptr->set_null();
} else {
set_field_year(f_ptr, value.val);
}
}
void get_field_year_v1(PSI_field *f, PSI_year *value) {
auto *f_ptr = reinterpret_cast<Field *>(f);
if (f_ptr->is_null()) {
value->is_null = true;
return;
}
value->val = get_field_year(f_ptr);
value->is_null = false;
}
/**************************************
* NULL *
**************************************/
void set_field_null_v1(PSI_field *f) {
auto *f_ptr = reinterpret_cast<Field *>(f);
f_ptr->set_null();
}
unsigned int get_parts_found_v1(PSI_key_reader *reader) {
auto *pfs_reader = (PFS_key_reader *)reader;
return pfs_reader->m_parts_found;
}
void read_key_string_v1(PSI_key_reader *reader, PSI_plugin_key_string *key,
int find_flag) {
auto *pfs_reader = (PFS_key_reader *)reader;
const auto e_find_flag = (enum ha_rkey_function)find_flag;
key->m_find_flags = PFS_key_pstring::stateless_read(
*pfs_reader, e_find_flag, key->m_is_null, key->m_value_buffer,
&key->m_value_buffer_length, key->m_value_buffer_capacity);
}
bool match_key_string_v1(bool record_null, const char *record_string_value,
unsigned int record_string_length,
PSI_plugin_key_string *key) {
return PFS_key_pstring::stateless_match(
record_null, record_string_value, record_string_length,
key->m_value_buffer, key->m_value_buffer_length, key->m_is_null,
(enum ha_rkey_function)key->m_find_flags);
}
void init_pfs_plugin_table() {
assert(!plugin_table_service_initialized);
/* Asserts that ERRORS defined in pfs_plugin_table_service.h are in
accordance with ERRORS defined in my_base.h
*/
static_assert((PFS_HA_ERR_WRONG_COMMAND == HA_ERR_WRONG_COMMAND) &&
(PFS_HA_ERR_RECORD_DELETED == HA_ERR_RECORD_DELETED) &&
(PFS_HA_ERR_END_OF_FILE == HA_ERR_END_OF_FILE) &&
(PFS_HA_ERR_NO_REFERENCED_ROW == HA_ERR_NO_REFERENCED_ROW) &&
(PFS_HA_ERR_FOUND_DUPP_KEY == HA_ERR_FOUND_DUPP_KEY) &&
(PFS_HA_ERR_RECORD_FILE_FULL == HA_ERR_RECORD_FILE_FULL));
pfs_external_table_shares.init_mutex();
plugin_table_service_initialized = true;
}
void cleanup_pfs_plugin_table() {
if (plugin_table_service_initialized) {
pfs_external_table_shares.destroy_mutex();
plugin_table_service_initialized = false;
}
}
/* clang-format off */
/* Initialization of service methods to actual PFS implementation */
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_table_v1)
pfs_add_tables_v1, pfs_delete_tables_v1, get_parts_found_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_tiny_v1)
set_field_tinyint_v1, set_field_utinyint_v1, get_field_tinyint_v1,
get_field_utinyint_v1, read_key_tinyint_v1, read_key_utinyint_v1,
match_key_tinyint_v1, match_key_utinyint_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_small_v1)
set_field_smallint_v1, set_field_usmallint_v1, get_field_smallint_v1,
get_field_usmallint_v1, read_key_smallint_v1, read_key_usmallint_v1,
match_key_smallint_v1, match_key_usmallint_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_medium_v1)
set_field_mediumint_v1, set_field_umediumint_v1, get_field_mediumint_v1,
get_field_umediumint_v1, read_key_mediumint_v1, read_key_umediumint_v1,
match_key_mediumint_v1, match_key_umediumint_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_integer_v1)
set_field_integer_v1, set_field_uinteger_v1, get_field_integer_v1,
get_field_uinteger_v1, read_key_integer_v1, read_key_uinteger_v1,
match_key_integer_v1, match_key_uinteger_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_bigint_v1)
set_field_bigint_v1, set_field_ubigint_v1, get_field_bigint_v1,
get_field_ubigint_v1, read_key_bigint_v1, read_key_ubigint_v1,
match_key_bigint_v1, match_key_ubigint_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_decimal_v1)
set_field_decimal_v1, get_field_decimal_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_float_v1)
set_field_float_v1, get_field_float_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_double_v1)
set_field_double_v1, get_field_double_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_string_v2)
set_field_char_utf8mb4_v1,
get_field_char_utf8mb4_v1,
read_key_string_v1,
match_key_string_v1,
get_field_varchar_utf8mb4_v1,
set_field_varchar_utf8mb4_v1,
set_field_varchar_utf8mb4_len_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_blob_v1)
set_field_blob_v1, get_field_blob_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_enum_v1)
set_field_enum_v1, get_field_enum_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_date_v1)
set_field_date_v1, get_field_date_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_time_v1)
set_field_time_v1, get_field_time_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_datetime_v1)
set_field_datetime_v1, get_field_datetime_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_timestamp_v1)
set_field_timestamp_v1, get_field_timestamp_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_timestamp_v2)
set_field_timestamp_v1, set_field_timestamp2_v1, get_field_timestamp_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_year_v1)
set_field_year_v1, get_field_year_v1
END_SERVICE_IMPLEMENTATION();
BEGIN_SERVICE_IMPLEMENTATION(performance_schema, pfs_plugin_column_text_v1)
set_field_text_v1, get_field_text_v1
END_SERVICE_IMPLEMENTATION();
/* clang-format on */
|