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
|
/* Copyright (c) 2016, 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 */
#ifndef SQL_DD_SHOW_H
#define SQL_DD_SHOW_H
class Item;
class String;
class THD;
class Query_block;
class Table_ident;
struct YYLTYPE;
typedef YYLTYPE POS;
namespace dd {
namespace info_schema {
/**
Build a substitute query for SHOW CHARSETS.
For command like,
@code
SHOW CHARACTER SET [ LIKE 'pattern' | WHERE expr ]
@endcode
We build following,
@code
SELECT * FROM
(SELECT CHARACTER_SET_NAME as `Charset`,
DESCRIPTION as `Description`,
DEFAULT_COLLATE_NAME as `Default collation`,
MAXLEN as `Maxlen`
FROM information_schema.character_sets) character_sets
[ WHERE Charset LIKE "<value>" | WHERE @<where_clause@> ]
ORDER BY `Charset`;
@endcode
@param pos - YYLTYPE position of parsing context.
@param thd - Current thread.
@param wild - The value of LIKE clause.
@param where_cond - @<where_clause@> clause provided by user.
@returns pointer to Query_block on success, NULL otherwise.
*/
Query_block *build_show_character_set_query(const POS &pos, THD *thd,
const String *wild,
Item *where_cond);
/**
Build a substitute query for SHOW COLLATION.
For command like,
@code
SHOW COLLATION [ LIKE 'pattern' | WHERE expr ]
@endcode
We build following,
@code
SELECT * FROM
(SELECT COLLATION_NAME as `Collation`,
CHARACTER_SET_NAME as `Charset`,
ID as `Id`,
IS_COMPILED as `Compiled`,
SORTLEN as `Sortlen`,
PAD_ATTRIBUTE as `Pad_attribute`,
FROM information_schema.collations) collations
[ WHERE Collation LIKE "<value>" | WHERE @<where_clause@> ]
ORDER BY `Collation`;
@endcode
@param pos - YYLTYPE position of parsing context.
@param thd - Current thread.
@param wild - The value of LIKE clause.
@param where_cond - @<where_clause@> clause provided by user.
@returns pointer to Query_block on success, NULL otherwise.
*/
Query_block *build_show_collation_query(const POS &pos, THD *thd,
const String *wild, Item *where_cond);
/**
Build a substitute query for SHOW DATABASES.
For command like,
@code
SHOW DATABASES [ LIKE 'pattern' | WHERE expr ]
@endcode
We build following,
@code
SELECT Database FROM
(SELECT SCHEMA_NAME as `Database`,
FROM information_schema.schemata) schemata
[ WHERE Database LIKE "<value>" | WHERE @<where_clause@> ]
ORDER BY `Database`;
@endcode
@param pos - YYLTYPE position of parsing context.
@param thd - Current thread.
@param wild - The value of LIKE clause.
@param where_cond - @<where_clause@> clause provided by user.
@returns pointer to Query_block on success, NULL otherwise.
*/
Query_block *build_show_databases_query(const POS &pos, THD *thd, String *wild,
Item *where_cond);
/**
Build a substitute query for SHOW TABLES / TABLE STATUS.
For command like,
@code
SHOW [FULL] TABLES [{FROM | IN} db_name]
[LIKE 'pattern' | WHERE expr]
OR
SHOW TABLE STATUS [{FROM | IN} db_name]
[LIKE 'pattern' | WHERE expr]
@endcode
We build following,
@code
SELECT `Table`,
`Table_type`, <-- only with 'FULL'
// For SHOW TABLE STATUS
`Engine`,
`Version`,
`Row_format`,
`Rows`,
`Avg_row_length`,
`Data_length`,
`Max_data_length`,
`Index_length`,
`Data_free`,
`Auto_increment`,
`Create_time`,
`Update_time`,
`Check_time`,
`Collation`,
`Checksum`,
`Create_options`,
`Comment`
FROM
(SELECT TABLE_SCHEMA AS `Database`,
TABLE_NAME as `Table`,
TABLE_TYPE AS `Table_type`, <-- only with 'FULL'
// For SHOW TABLE STATUS
ENGINE AS `Engine`,
VERSION AS `Version`,
ROW_FORMAT AS `Row_format`,
TABLE_ROWS AS `Rows`,
AVG_ROW_LENGTH AS `Avg_row_length`,
DATA_LENGTH AS `Data_length`,
MAX_DATA_LENGTH AS `Max_data_length`,
INDEX_LENGTH AS `Index_length`,
DATA_FREE AS `Data_free`,
AUTO_INCREMENT AS `Auto_increment`,
CREATE_TIME AS `Create_time`,
UPDATE_TIME AS `Update_time`,
CHECK_TIME AS `Check_time`,
TABLE_COLLATION AS `Collation`,
CHECKSUM AS `Checksum`,
CREATE_OPTIONS AS `Create_options`,
TABLE_COMMENT AS `Comment`
FROM information_schema.tables) tables
WHERE Database == '<value>' <-- Default DB or IN clause
AND
[ Table LIKE "<value>" | @<where_clause@> ]
ORDER BY `Table`;
@endcode
Note that the thd->lex->verbose == true would mean user has
provide keyword 'FULL'.
@param pos - YYLTYPE position of parsing context.
@param thd - Current thread.
@param wild - The value of LIKE clause.
@param where_cond - @<where_clause@> clause provided by user.
@param include_status_fields - If we are handling SHOW TABLE STATUS
@returns pointer to Query_block on success, NULL otherwise.
*/
Query_block *build_show_tables_query(const POS &pos, THD *thd, String *wild,
Item *where_cond,
bool include_status_fields);
/**
Build a substitute query for SHOW COLUMNS/FIELDS OR DESCRIBE.
For command like,
@code
SHOW [FULL] COLUMNS
{FROM | IN} tbl_name
[{FROM | IN} db_name]
[LIKE 'pattern' | WHERE expr]
OR
DESCRIBE tbl_name
@endcode
We build following,
@code
SELECT Field,
Type,
Collation, <-- only with 'FULL'
Null,
Key,
Default,
Extra,
Privileges, <-- only with 'FULL'
Comment <-- only with 'FULL'
FROM
(SELECT TABLE_SCHEMA AS Database,
TABLE_NAME AS Table,
COLUMN_NAME AS Field,
COLUMN_TYPE AS Type,
COLLATION_NAME AS Collation, <-- only with 'FULL'
IS_NULLABLE AS Null,
COLUMN_KEY AS Key,
COLUMN_DEFAULT AS Default,
EXTRA AS Extra,
PRIVILEGES AS Privileges, <-- only with 'FULL'
COLUMN_COMMENT AS Comment, <-- only with 'FULL'
ORDINAL_POSITION AS Oridinal_position
FROM information_schema.columns) columns
WHERE Database == '<value>' <-- Default DB or db_name
AND
Table == 'value' <-- tbl_name
AND
[ Field LIKE "<value>" | @<where_clause@> ]
ORDER BY `Ordinal_position`;
@endcode
Note that the thd->lex->verbose == true would mean user has
provide keyword 'FULL'.
@param pos - YYLTYPE position of parsing context.
@param thd - Current thread.
@param table_ident - Database and Table name of table being used.
@param wild - The value of LIKE clause.
@param where_cond - @<where_clause@> clause provided by user.
@returns pointer to Query_block on success, NULL otherwise.
*/
Query_block *build_show_columns_query(const POS &pos, THD *thd,
Table_ident *table_ident,
const String *wild, Item *where_cond);
/**
Build a substitute query for SHOW INDEX|KEYS|INDEXES
For command like,
@code
SHOW {INDEX | INDEXES | KEYS}
{FROM | IN} tbl_name
[{FROM | IN} db_name]
[WHERE expr]
@endcode
We build following,
@code
SELECT Table,
Non_unique,
Key_name,
Seq_in_index,
Column_name,
Collation,
Cardinality,
Sub_part,
Packed,
Null,
Index_type,
Comment,
Index_comment,
Visible
FROM
(SELECT Database,
Table,
Non_unique,
Key_name,
Seq_in_index,
Column_name,
Collation,
Cardinality,
Sub_part,
Packed,
Null,
Index_type,
Comment,
Index_comment,
Visible,
INDEX_ORDINAL_POSITION,
COLUMN_ORDINAL_POSITION
FROM information_schema.show_statistics) statistics
WHERE Database == '<value>' <-- Default DB or db_name
AND
Table == 'value' <-- tbl_name
AND
[ @<where_clause@> ]
ORDER BY INDEX_ORDINAL_POSITION, COLUMN_ORDINAL_POSITION
@endcode
@param pos - YYLTYPE position of parsing context.
@param thd - Current thread.
@param table_ident - Database and Table name of table being used.
@param where_cond - @<where_clause@> clause provided by user.
@returns pointer to Query_block on success, NULL otherwise.
*/
Query_block *build_show_keys_query(const POS &pos, THD *thd,
Table_ident *table_ident, Item *where_cond);
/**
Build a substitute query for SHOW TRIGGERS
For command like,
@code
SHOW TRIGGERS [{FROM | IN} db_name]
[LIKE 'pattern' | WHERE expr]
@endcode
We build following,
@code
SELECT
Trigger,
Event,
Table,
Statement,
Timing,
Created,
sql_mode,
Definer,
character_set_client,
collation_connection,
Database_collation AS `Database Collation`
FROM
(SELECT
EVENT_OBJECT_SCHEMA AS `Database`
TRIGGER_NAME AS `Trigger`,
EVENT_MANIPULATION AS `Event`,
EVENT_OBJECT_TABLE AS `Table`,
ACTION_STATEMENT AS `Statement`,
ACTION_TIMING AS `Timing`,
CREATED AS `Created`,
SQL_MODE AS `sql_mode`,
DEFINER AS `Definer`,
CHARACTER_SET_CLIENT AS `character_set_client`,
COLLATION_CONNECTION AS `collation_connection`,
DATABASE_COLLATION AS `Database_collation`,
ACTION_ORDER AS `action_order`
FROM information_schema.triggers) triggers
WHERE Database == '<value>' <-- Default DB or IN clause
AND
[ Table LIKE "<value>" | @<where_clause@> ]
ORDER BY `Table`, `Event`, `Timing`, `action_order`;
@endcode
@param pos - YYLTYPE position of parsing context.
@param thd - Current thread.
@param wild - The value of LIKE clause.
@param where_cond - @<where_clause@> clause provided by user.
@returns pointer to Query_block on success, NULL otherwise.
*/
Query_block *build_show_triggers_query(const POS &pos, THD *thd, String *wild,
Item *where_cond);
/**
Build a substitute query for SHOW PROCEDURE/FUNCTION STATUS
For command like,
@code
SHOW [PROCEDURE|FUNCTION] STATUS
[LIKE 'pattern' | WHERE expr]
@endcode
We build following,
@code
SELECT
Db,
Name,
Type,
Definer,
Modified,
Created,
Security_type,
Comment,
character_set_client,
collation_connection,
Database_collation AS `Database Collation`
FROM
(SELECT
ROUTINE_SCHEMA AS `Db`,
ROUTINE_NAME AS `Name`,
ROUTINE_TYPE AS `Type`,
DEFINER AS `Definer`,
LAST_ALTERED AS `Modified`,
CREATED AS `Created`,
SECURITY_TYPE AS `Security_type`,
ROUTINE_COMMENT AS `Comment`,
CHARACTER_SET_CLIENT AS `character_set_client,
COLLATION_CONNECTION AS `collation_connection,
DATABASE_COLLATION AS `Database Collation`
FROM information_schema.routines) routines
WHERE Db == '<value>' <-- Default DB or IN clause
AND
[ Name LIKE "<value>" | @<where_clause@> ]
ORDER BY `Db`, `Name`;
@endcode
@param pos - YYLTYPE position of parsing context.
@param thd - Current thread.
@param wild - The value of LIKE clause.
@param where_cond - @<where_clause@> clause provided by user.
@returns pointer to Query_block on success, NULL otherwise.
*/
Query_block *build_show_procedures_query(const POS &pos, THD *thd, String *wild,
Item *where_cond);
/**
Build a substitute query for SHOW EVENTS
For command like,
@code
SHOW EVENTS [{FROM | IN} schema_name]
[LIKE 'pattern' | WHERE expr]
@endcode
We build following,
@code
SELECT
Db,
Name,
Definer,
Time zone,
Type,
Execute at,
Interval value,
Interval field,
Starts,
Ends,
Status,
Originator,
character_set_client,
collation_connection,
Database_collation AS Database Collation
FROM
(SELECT
EVENT_SCHEMA AS `Db`,
EVENT_NAME AS `Name`,
DEFINER AS `Definer`,
TIME_ZONE AS `Time zone`,
EVENT_TYPE AS `Type`,
EXECUTE_AT AS `Execute at`,
INTERVAL_VALUE AS `Interval value`,
INTERVAL_FIELD AS `Interval field`,
STARTS AS `Starts`,
ENDS AS `Ends`,
STATUS AS `Status`,
ORIGINATOR AS `Originator`,
CHARACTER_SET_CLIENT AS `character_set_client`,
COLLATION_CONNECTION AS `collation_connection`,
DATABASE_COLLATION AS `Database Collation`
FROM information_schema.events) as events
WHERE Db == '<value>' <-- Default DB or IN clause
AND
[ Name LIKE "<value>" | @<where_clause@> ]
ORDER BY `Db`, `Name`;
@endcode
@param pos - YYLTYPE position of parsing context.
@param thd - Current thread.
@param wild - The value of LIKE clause.
@param where_cond - @<where_clause@> clause provided by user.
@returns pointer to Query_block on success, NULL otherwise.
*/
Query_block *build_show_events_query(const POS &pos, THD *thd, String *wild,
Item *where_cond);
} // namespace info_schema
} // namespace dd
#endif /* SQL_DD_SHOW_H */
|