Documentation Home
MySQL 9.2 Reference Manual
Related Documentation Download this Manual
PDF (US Ltr) - 40.8Mb
PDF (A4) - 40.9Mb
Man Pages (TGZ) - 259.7Kb
Man Pages (Zip) - 366.9Kb
Info (Gzip) - 4.1Mb
Info (Zip) - 4.1Mb


25.6.17.38 The ndbinfo hash_maps Table

  • id

    The hash map's unique ID

  • version

    Hash map version (integer)

  • state

    Hash map state; seeObject::State for values and descriptions.

  • fq_name

    The hash map's fully qualified name

Thehash_maps table is actually a view consisting of the four columns having the same names of thedict_obj_info table, as shown here:

CREATE VIEW hash_maps AS  SELECT id, version, state, fq_name  FROM dict_obj_info  WHERE type=24;  # Hash map; defined in dict_obj_types

See the description ofdict_obj_info for more information.