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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>7.3.41. object_inspect — Groonga v10.1.1-31-g1e46ba6 documentation</title>
<link rel="stylesheet" href="../../_static/groonga.css" type="text/css" />
<link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
<script id="documentation_options" data-url_root="../../" src="../../_static/documentation_options.js"></script>
<script src="../../_static/jquery.js"></script>
<script src="../../_static/underscore.js"></script>
<script src="../../_static/doctools.js"></script>
<script src="../../_static/language_data.js"></script>
<link rel="shortcut icon" href="../../_static/favicon.ico"/>
<link rel="index" title="Index" href="../../genindex.html" />
<link rel="search" title="Search" href="../../search.html" />
<link rel="next" title="7.3.42. object_list" href="object_list.html" />
<link rel="prev" title="7.3.40. object_exist" href="object_exist.html" />
</head><body>
<div class="header">
<h1 class="title">
<a id="top-link" href="../../index.html">
<span class="project">groonga</span>
<span class="separator">-</span>
<span class="description">An open-source fulltext search engine and column store.</span>
</a>
</h1>
<div class="other-language-links">
<ul>
<li><a href="../../../../ja/html/reference/commands/object_inspect.html">日本語</a></li>
</ul>
</div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="object_list.html" title="7.3.42. object_list"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="object_exist.html" title="7.3.40. object_exist"
accesskey="P">previous</a> |</li>
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v10.1.1-31-g1e46ba6 documentation</a> »</li>
<li class="nav-item nav-item-1"><a href="../../reference.html" ><span class="section-number">7. </span>Reference manual</a> »</li>
<li class="nav-item nav-item-2"><a href="../command.html" accesskey="U"><span class="section-number">7.3. </span>Command</a> »</li>
<li class="nav-item nav-item-this"><a href=""><span class="section-number">7.3.41. </span><code class="docutils literal notranslate"><span class="pre">object_inspect</span></code></a></li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="object-inspect">
<h1><span class="section-number">7.3.41. </span><code class="docutils literal notranslate"><span class="pre">object_inspect</span></code><a class="headerlink" href="#object-inspect" title="Permalink to this headline">¶</a></h1>
<div class="section" id="summary">
<h2><span class="section-number">7.3.41.1. </span>Summary<a class="headerlink" href="#summary" title="Permalink to this headline">¶</a></h2>
<div class="versionadded">
<p><span class="versionmodified added">New in version 6.0.0.</span></p>
</div>
<p><code class="docutils literal notranslate"><span class="pre">object_inspect</span></code> inspects an object. You can confirm details of an
object.</p>
<p>For example:</p>
<blockquote>
<div><ul class="simple">
<li><p>If the object is a table, you can confirm the number of records in
the table.</p></li>
<li><p>If the object is a column, you can confirm the type of value of
the column.</p></li>
</ul>
</div></blockquote>
</div>
<div class="section" id="syntax">
<h2><span class="section-number">7.3.41.2. </span>Syntax<a class="headerlink" href="#syntax" title="Permalink to this headline">¶</a></h2>
<p>This command takes only one optional parameter:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>object_inspect [name=null]
</pre></div>
</div>
</div>
<div class="section" id="usage">
<h2><span class="section-number">7.3.41.3. </span>Usage<a class="headerlink" href="#usage" title="Permalink to this headline">¶</a></h2>
<p>You can inspect an object in the database specified by <code class="docutils literal notranslate"><span class="pre">name</span></code>:</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>table_create Users TABLE_HASH_KEY ShortText
# [[0, 1337566253.89858, 0.000355720520019531], true]
load --table Users
[
{"_key": "Alice"}
]
# [[0, 1337566253.89858, 0.000355720520019531], 1]
object_inspect Users
# [
# [
# 0,
# 1337566253.89858,
# 0.000355720520019531
# ],
# {
# "disk_usage": 16842752,
# "name": "Users",
# "n_records": 1,
# "value": {
# "type": null
# },
# "key": {
# "total_size": 5,
# "max_total_size": 4294967295,
# "type": {
# "size": 4096,
# "type": {
# "id": 32,
# "name": "type"
# },
# "id": 14,
# "name": "ShortText"
# }
# },
# "type": {
# "id": 48,
# "name": "table:hash_key"
# },
# "id": 256
# }
# ]
</pre></div>
</div>
<p>The <code class="docutils literal notranslate"><span class="pre">object_inspect</span> <span class="pre">Users</span></code> returns the following information:</p>
<blockquote>
<div><ul class="simple">
<li><p>The name of the table: <code class="docutils literal notranslate"><span class="pre">"name":</span> <span class="pre">Users</span></code></p></li>
<li><p>The total used key size: <code class="docutils literal notranslate"><span class="pre">"key":</span> <span class="pre">{"total_size":</span> <span class="pre">5}</span></code>
(<code class="docutils literal notranslate"><span class="pre">"Alice"</span></code> is 5 byte data)</p></li>
<li><p>The maximum total key size: <code class="docutils literal notranslate"><span class="pre">"key":</span> <span class="pre">{"max_total_size":</span> <span class="pre">4294967295}</span></code></p></li>
<li><p>and so on.</p></li>
</ul>
</div></blockquote>
<p>You can inspect the database by not specifying <code class="docutils literal notranslate"><span class="pre">name</span></code>:</p>
<p>Execution example:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>object_inspect
# [
# [
# 0,
# 1337566253.89858,
# 0.000355720520019531
# ],
# {
# "disk_usage": 22347776,
# "name_table": {
# "disk_usage": 1052672,
# "name": "",
# "n_records": 256,
# "value": null,
# "key": {
# "type": null
# },
# "type": {
# "id": 50,
# "name": "table:dat_key"
# },
# "id": 0
# },
# "type": {
# "id": 55,
# "name": "db"
# }
# }
# ]
</pre></div>
</div>
<p>The <code class="docutils literal notranslate"><span class="pre">object_inspect</span></code> returns the following information:</p>
<blockquote>
<div><ul class="simple">
<li><p>The table type for object name management:
<code class="docutils literal notranslate"><span class="pre">"key":</span> <span class="pre">{"type":</span> <span class="pre">{"name":</span> <span class="pre">"table:dat_key"}}</span></code></p></li>
<li><p>and so on.</p></li>
</ul>
</div></blockquote>
</div>
<div class="section" id="parameters">
<h2><span class="section-number">7.3.41.4. </span>Parameters<a class="headerlink" href="#parameters" title="Permalink to this headline">¶</a></h2>
<p>This section describes all parameters.</p>
<div class="section" id="required-parameters">
<h3><span class="section-number">7.3.41.4.1. </span>Required parameters<a class="headerlink" href="#required-parameters" title="Permalink to this headline">¶</a></h3>
<p>There is no required parameter.</p>
</div>
<div class="section" id="optional-parameters">
<h3><span class="section-number">7.3.41.4.2. </span>Optional parameters<a class="headerlink" href="#optional-parameters" title="Permalink to this headline">¶</a></h3>
<p>There is only one optional parameter.</p>
<div class="section" id="name">
<span id="object-inspect-name"></span><h4><span class="section-number">7.3.41.4.2.1. </span><code class="docutils literal notranslate"><span class="pre">name</span></code><a class="headerlink" href="#name" title="Permalink to this headline">¶</a></h4>
<p>Specifies the object name to be inspected.</p>
<p>If <code class="docutils literal notranslate"><span class="pre">name</span></code> isn’t specified, the database is inspected.</p>
</div>
</div>
</div>
<div class="section" id="return-value">
<h2><span class="section-number">7.3.41.5. </span>Return value<a class="headerlink" href="#return-value" title="Permalink to this headline">¶</a></h2>
<p>The command returns an object (nested key and value pairs) that
includes details of the object (such as table) as body:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[HEADER, object]
</pre></div>
</div>
<p>See <a class="reference internal" href="../command/output_format.html"><span class="doc">Output format</span></a> for <code class="docutils literal notranslate"><span class="pre">HEADER</span></code>.</p>
<p>The format of the details is depends on object type. For example,
table has key information but function doesn’t have key information.</p>
<div class="section" id="database">
<span id="object-inspect-return-value-database"></span><h3><span class="section-number">7.3.41.5.1. </span>Database<a class="headerlink" href="#database" title="Permalink to this headline">¶</a></h3>
<p>Database inspection returns the following information:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>{
"type": {
"id": DATABASE_TYPE_ID,
"name": DATABASE_TYPE_NAME
},
"name_table": DATABASE_NAME_TABLE
}
</pre></div>
</div>
<div class="section" id="database-type-id">
<span id="object-inspect-return-value-database-type-id"></span><h4><span class="section-number">7.3.41.5.1.1. </span><code class="docutils literal notranslate"><span class="pre">DATABASE_TYPE_ID</span></code><a class="headerlink" href="#database-type-id" title="Permalink to this headline">¶</a></h4>
<p><code class="docutils literal notranslate"><span class="pre">DATABASE_TYPE_ID</span></code> is always <code class="docutils literal notranslate"><span class="pre">55</span></code>.</p>
</div>
<div class="section" id="database-type-name">
<span id="object-inspect-return-value-database-type-name"></span><h4><span class="section-number">7.3.41.5.1.2. </span><code class="docutils literal notranslate"><span class="pre">DATABASE_TYPE_NAME</span></code><a class="headerlink" href="#database-type-name" title="Permalink to this headline">¶</a></h4>
<p><code class="docutils literal notranslate"><span class="pre">DATABASE_TYPE_NAME</span></code> is always <code class="docutils literal notranslate"><span class="pre">"db"</span></code>.</p>
</div>
<div class="section" id="database-name-table">
<span id="object-inspect-return-value-database-name-table"></span><h4><span class="section-number">7.3.41.5.1.3. </span><code class="docutils literal notranslate"><span class="pre">DATABASE_NAME_TABLE</span></code><a class="headerlink" href="#database-name-table" title="Permalink to this headline">¶</a></h4>
<p><code class="docutils literal notranslate"><span class="pre">DATABASE_NAME_TABLE</span></code> is a table for managing object names in the
database. The table is <a class="reference internal" href="../tables.html#table-pat-key"><span class="std std-ref">TABLE_PAT_KEY</span></a> or
<a class="reference internal" href="../tables.html#table-dat-key"><span class="std std-ref">TABLE_DAT_KEY</span></a>. Normally, it’s <a class="reference internal" href="../tables.html#table-dat-key"><span class="std std-ref">TABLE_DAT_KEY</span></a>.</p>
<p>See <a class="reference internal" href="#object-inspect-return-value-table"><span class="std std-ref">Table</span></a> for format details.</p>
</div>
</div>
<div class="section" id="table">
<span id="object-inspect-return-value-table"></span><h3><span class="section-number">7.3.41.5.2. </span>Table<a class="headerlink" href="#table" title="Permalink to this headline">¶</a></h3>
<p>Table inspection returns the following information:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>{
"id": TABLE_ID,
"name": TABLE_NAME,
"type": {
"id": TABLE_TYPE_ID,
"name": TABLE_TYPE_NAME
},
"key": {
"type": TABLE_KEY_TYPE,
"total_size": TABLE_KEY_TOTAL_SIZE
"max_total_size": TABLE_KEY_MAX_TOTAL_SIZE
},
"value": {
"type": TABLE_VALUE_TYPE,
},
"n_records": TABLE_N_RECORDS
}
</pre></div>
</div>
<p>There are some exceptions:</p>
<blockquote>
<div><ul class="simple">
<li><p><a class="reference internal" href="../tables.html#table-no-key"><span class="std std-ref">TABLE_NO_KEY</span></a> doesn’t return key information because it
doesn’t have key.</p></li>
<li><p><a class="reference internal" href="../tables.html#table-dat-key"><span class="std std-ref">TABLE_DAT_KEY</span></a> doesn’t return value information because it
doesn’t have value.</p></li>
</ul>
</div></blockquote>
<div class="section" id="table-id">
<span id="object-inspect-return-value-table-id"></span><h4><span class="section-number">7.3.41.5.2.1. </span><code class="docutils literal notranslate"><span class="pre">TABLE_ID</span></code><a class="headerlink" href="#table-id" title="Permalink to this headline">¶</a></h4>
<p>The ID of the inspected table.</p>
</div>
<div class="section" id="table-name">
<span id="object-inspect-return-value-table-name"></span><h4><span class="section-number">7.3.41.5.2.2. </span><code class="docutils literal notranslate"><span class="pre">TABLE_NAME</span></code><a class="headerlink" href="#table-name" title="Permalink to this headline">¶</a></h4>
<p>The name of the inspected table.</p>
</div>
<div class="section" id="table-type-id">
<span id="object-inspect-return-value-table-type-id"></span><h4><span class="section-number">7.3.41.5.2.3. </span><code class="docutils literal notranslate"><span class="pre">TABLE_TYPE_ID</span></code><a class="headerlink" href="#table-type-id" title="Permalink to this headline">¶</a></h4>
<p>The type ID of the inspected table.</p>
<p>Here is a list of type IDs:</p>
<table class="docutils align-default">
<colgroup>
<col style="width: 50%" />
<col style="width: 50%" />
</colgroup>
<thead>
<tr class="row-odd"><th class="head"><p>Table type</p></th>
<th class="head"><p>ID</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p><a class="reference internal" href="../tables.html#table-hash-key"><span class="std std-ref">TABLE_HASH_KEY</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">48</span></code></p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="../tables.html#table-pat-key"><span class="std std-ref">TABLE_PAT_KEY</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">49</span></code></p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="../tables.html#table-dat-key"><span class="std std-ref">TABLE_DAT_KEY</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">50</span></code></p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="../tables.html#table-no-key"><span class="std std-ref">TABLE_NO_KEY</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">51</span></code></p></td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="table-type-name">
<span id="object-inspect-return-value-table-type-name"></span><h4><span class="section-number">7.3.41.5.2.4. </span><code class="docutils literal notranslate"><span class="pre">TABLE_TYPE_NAME</span></code><a class="headerlink" href="#table-type-name" title="Permalink to this headline">¶</a></h4>
<p>The type name of the inspected table.</p>
<p>Here is a list of type names:</p>
<table class="docutils align-default">
<colgroup>
<col style="width: 50%" />
<col style="width: 50%" />
</colgroup>
<thead>
<tr class="row-odd"><th class="head"><p>Table type</p></th>
<th class="head"><p>Name</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p><a class="reference internal" href="../tables.html#table-hash-key"><span class="std std-ref">TABLE_HASH_KEY</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"table:hash_key"</span></code></p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="../tables.html#table-pat-key"><span class="std std-ref">TABLE_PAT_KEY</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"table:pat_key"</span></code></p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="../tables.html#table-dat-key"><span class="std std-ref">TABLE_DAT_KEY</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"table:dat_key"</span></code></p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="../tables.html#table-no-key"><span class="std std-ref">TABLE_NO_KEY</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"table:no_key"</span></code></p></td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="table-key-type">
<span id="object-inspect-return-value-table-key-type"></span><h4><span class="section-number">7.3.41.5.2.5. </span><code class="docutils literal notranslate"><span class="pre">TABLE_KEY_TYPE</span></code><a class="headerlink" href="#table-key-type" title="Permalink to this headline">¶</a></h4>
<p>The type of key of the inspected table.</p>
<p>See <a class="reference internal" href="#object-inspect-return-value-type"><span class="std std-ref">Type</span></a> for format details.</p>
</div>
<div class="section" id="table-key-total-size">
<span id="object-inspect-return-value-table-total-key-size"></span><h4><span class="section-number">7.3.41.5.2.6. </span><code class="docutils literal notranslate"><span class="pre">TABLE_KEY_TOTAL_SIZE</span></code><a class="headerlink" href="#table-key-total-size" title="Permalink to this headline">¶</a></h4>
<p>The total key size of the inspected table in bytes.</p>
</div>
<div class="section" id="table-key-max-total-size">
<span id="object-inspect-return-value-table-max-total-key-size"></span><h4><span class="section-number">7.3.41.5.2.7. </span><code class="docutils literal notranslate"><span class="pre">TABLE_KEY_MAX_TOTAL_SIZE</span></code><a class="headerlink" href="#table-key-max-total-size" title="Permalink to this headline">¶</a></h4>
<p>The maximum total key size of the inspected table in bytes.</p>
</div>
<div class="section" id="table-value-type">
<span id="object-inspect-return-value-table-value-type"></span><h4><span class="section-number">7.3.41.5.2.8. </span><code class="docutils literal notranslate"><span class="pre">TABLE_VALUE_TYPE</span></code><a class="headerlink" href="#table-value-type" title="Permalink to this headline">¶</a></h4>
<p>The type of value of the inspected table.</p>
<p>See <a class="reference internal" href="#object-inspect-return-value-type"><span class="std std-ref">Type</span></a> for format details.</p>
</div>
<div class="section" id="table-n-records">
<span id="object-inspect-return-value-table-n-records"></span><h4><span class="section-number">7.3.41.5.2.9. </span><code class="docutils literal notranslate"><span class="pre">TABLE_N_RECORDS</span></code><a class="headerlink" href="#table-n-records" title="Permalink to this headline">¶</a></h4>
<p>The number of records of the inspected table.</p>
<p>It’s a 64bit unsigned integer value.</p>
</div>
</div>
<div class="section" id="column">
<span id="object-inspect-return-value-column"></span><h3><span class="section-number">7.3.41.5.3. </span>Column<a class="headerlink" href="#column" title="Permalink to this headline">¶</a></h3>
<div class="versionadded">
<p><span class="versionmodified added">New in version 7.0.2.</span></p>
</div>
<p>Data column (scalar column and vector column) returns the following
information:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>{
"id": COLUMN_ID,
"name": COLUMN_NAME
"table": COLUMN_TABLE,
"full_name": COLUMN_FULL_NAME,
"type": {
"name": COLUMN_TYPE_NAME,
"raw": {
"id": COLUMN_TYPE_RAW_ID,
"name": COLUMN_TYPE_RAW_NAME
}
},
"value": {
"type": COLUMN_VALUE_TYPE,
"compress": DATA_COLUMN_VALUE_COMPRESS_METHOD,
}
}
</pre></div>
</div>
<p>Index column is similar to data column but there are some differences.</p>
<blockquote>
<div><ul class="simple">
<li><p>Index column doesn’t have <code class="docutils literal notranslate"><span class="pre">value.compress</span></code> key.</p></li>
<li><p>Index column has <code class="docutils literal notranslate"><span class="pre">value.section</span></code> key.</p></li>
<li><p>Index column has <code class="docutils literal notranslate"><span class="pre">value.weight</span></code> key.</p></li>
<li><p>Index column has <code class="docutils literal notranslate"><span class="pre">value.position</span></code> key.</p></li>
<li><p>Index column has <code class="docutils literal notranslate"><span class="pre">value.size</span></code> key.</p></li>
<li><p>Index column has <code class="docutils literal notranslate"><span class="pre">value.statistics</span></code> key.</p></li>
<li><p>Index column has <code class="docutils literal notranslate"><span class="pre">sources</span></code> key.</p></li>
</ul>
</div></blockquote>
<p>Index column returns the following information:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>{
"id": COLUMN_ID,
"name": COLUMN_NAME
"table": COLUMN_TABLE,
"full_name": COLUMN_FULL_NAME,
"type": {
"name": COLUMN_TYPE_NAME,
"raw": {
"id": COLUMN_TYPE_RAW_ID,
"name": COLUMN_TYPE_RAW_NAME
}
},
"value": {
"type": COLUMN_VALUE_TYPE,
"section": INDEX_COLUMN_VALUE_SECTION,
"weight": INDEX_COLUMN_VALUE_WEIGHT,
"position": INDEX_COLUMN_VALUE_POSITION,
"size": INDEX_COLUMN_VALUE_SIZE,
"statistics": {
"max_section_id": INDEX_COLUMN_VALUE_STATISTICS_MAX_SECTION_ID,
"n_garbage_segments": INDEX_COLUMN_VALUE_STATISTICS_N_GARBAGE_SEGMENTS,
"max_array_segment_id": INDEX_COLUMN_VALUE_STATISTICS_MAX_ARRAY_SEGMENT_ID,
"n_array_segments": INDEX_COLUMN_VALUE_STATISTICS_N_ARRAY_SEGMENTS,
"max_buffer_segment_id": INDEX_COLUMN_VALUE_STATISTICS_MAX_BUFFER_SEGMENT_ID,
"n_buffer_segments": INDEX_COLUMN_VALUE_STATISTICS_N_BUFFER_SEGMENTS,
"max_in_use_physical_segment_id": INDEX_COLUMN_VALUE_STATISTICS_MAX_IN_USE_PHYSICAL_SEGMENT_ID,
"n_unmanaged_segments": INDEX_COLUMN_VALUE_STATISTICS_N_UNMANAGED_SEGMENTS,
"total_chunk_size": INDEX_COLUMN_VALUE_STATISTICS_TOTAL_CHUNK_SIZE,
"max_in_use_chunk_id": INDEX_COLUMN_VALUE_STATISTICS_MAX_IN_USE_CHUNK_ID,
"n_garbage_chunks": INDEX_COLUMN_VALUE_STATISTICS_N_GARBAGE_CHUNKS
"next_physical_segment_id": INDEX_COLUMN_VALUE_STATISTICS_NEXT_PHYSICAL_SEGMENT_ID
"max_n_physical_segments": INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS
}
},
"sources": [
{
"id": INDEX_COLUMN_SOURCE_ID,
"name": INDEX_COLUMN_SOURCE_NAME,
"table": INDEX_COLUMN_SOURCE_TABLE,
"full_name": INDEX_COLUMN_SOURCE_FULL_NAME
},
...
]
}
</pre></div>
</div>
<div class="section" id="column-id">
<span id="object-inspect-return-value-column-id"></span><h4><span class="section-number">7.3.41.5.3.1. </span><code class="docutils literal notranslate"><span class="pre">COLUMN_ID</span></code><a class="headerlink" href="#column-id" title="Permalink to this headline">¶</a></h4>
<p>The ID of the inspected column.</p>
</div>
<div class="section" id="column-name">
<span id="object-inspect-return-value-column-name"></span><h4><span class="section-number">7.3.41.5.3.2. </span><code class="docutils literal notranslate"><span class="pre">COLUMN_NAME</span></code><a class="headerlink" href="#column-name" title="Permalink to this headline">¶</a></h4>
<p>The name of the inspected column.</p>
<p>It doesn’t include table name. It’s just only column name.</p>
<p>If you want full column name (<code class="docutils literal notranslate"><span class="pre">TABLE_NAME.COLUMN_NAME</span></code> style), use
<a class="reference internal" href="#object-inspect-return-value-column-full-name"><span class="std std-ref">COLUMN_FULL_NAME</span></a> instead.</p>
</div>
<div class="section" id="column-table">
<span id="object-inspect-return-value-column-table"></span><h4><span class="section-number">7.3.41.5.3.3. </span><code class="docutils literal notranslate"><span class="pre">COLUMN_TABLE</span></code><a class="headerlink" href="#column-table" title="Permalink to this headline">¶</a></h4>
<p>The table of the inspected column.</p>
<p>See <a class="reference internal" href="#object-inspect-return-value-table"><span class="std std-ref">Table</span></a> for format details.</p>
</div>
<div class="section" id="column-full-name">
<span id="object-inspect-return-value-column-full-name"></span><h4><span class="section-number">7.3.41.5.3.4. </span><code class="docutils literal notranslate"><span class="pre">COLUMN_FULL_NAME</span></code><a class="headerlink" href="#column-full-name" title="Permalink to this headline">¶</a></h4>
<p>The full name of the inspected column.</p>
<p>It includes both table name and column name as
<code class="docutils literal notranslate"><span class="pre">TABLE_NAME.COLUMN_NAME</span></code> format.</p>
<p>If you just want only column name, use
<a class="reference internal" href="#object-inspect-return-value-column-name"><span class="std std-ref">COLUMN_NAME</span></a> instead.</p>
</div>
<div class="section" id="column-type-name">
<span id="object-inspect-return-value-column-type-name"></span><h4><span class="section-number">7.3.41.5.3.5. </span><code class="docutils literal notranslate"><span class="pre">COLUMN_TYPE_NAME</span></code><a class="headerlink" href="#column-type-name" title="Permalink to this headline">¶</a></h4>
<p>The type name of the inspected column.</p>
<p>Here is a list of type names:</p>
<table class="docutils align-default">
<colgroup>
<col style="width: 50%" />
<col style="width: 50%" />
</colgroup>
<thead>
<tr class="row-odd"><th class="head"><p>Column type</p></th>
<th class="head"><p>Name</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p><a class="reference internal" href="../columns/scalar.html"><span class="doc">Scalar column</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"scalar"</span></code></p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="../columns/vector.html"><span class="doc">Vector column</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"vector"</span></code></p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="../columns/index.html"><span class="doc">Index column</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"index"</span></code></p></td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="column-type-raw-id">
<span id="object-inspect-return-value-column-type-raw-id"></span><h4><span class="section-number">7.3.41.5.3.6. </span><code class="docutils literal notranslate"><span class="pre">COLUMN_TYPE_RAW_ID</span></code><a class="headerlink" href="#column-type-raw-id" title="Permalink to this headline">¶</a></h4>
<p>The raw type ID of the inspected column.</p>
<p>Here is a list of raw type IDs:</p>
<table class="docutils align-default">
<colgroup>
<col style="width: 50%" />
<col style="width: 50%" />
</colgroup>
<thead>
<tr class="row-odd"><th class="head"><p>Raw column type</p></th>
<th class="head"><p>ID</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p>Fix size column</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">64</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>Variable size column</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">65</span></code></p></td>
</tr>
<tr class="row-even"><td><p>Index column</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">72</span></code></p></td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="column-type-raw-name">
<span id="object-inspect-return-value-column-type-raw-name"></span><h4><span class="section-number">7.3.41.5.3.7. </span><code class="docutils literal notranslate"><span class="pre">COLUMN_TYPE_RAW_NAME</span></code><a class="headerlink" href="#column-type-raw-name" title="Permalink to this headline">¶</a></h4>
<p>The raw type name of the inspected column.</p>
<p>Here is a list of raw type names:</p>
<table class="docutils align-default">
<colgroup>
<col style="width: 50%" />
<col style="width: 50%" />
</colgroup>
<thead>
<tr class="row-odd"><th class="head"><p>Raw column type</p></th>
<th class="head"><p>Name</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p>Fix size column</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"column:fix_size"</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>Variable size column</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"column:var_size"</span></code></p></td>
</tr>
<tr class="row-even"><td><p>Index column</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"column:index"</span></code></p></td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="column-value-type">
<span id="object-inspect-return-value-column-value-type"></span><h4><span class="section-number">7.3.41.5.3.8. </span><code class="docutils literal notranslate"><span class="pre">COLUMN_VALUE_TYPE</span></code><a class="headerlink" href="#column-value-type" title="Permalink to this headline">¶</a></h4>
<p>The type of value of the inspected column.</p>
<p>See <a class="reference internal" href="#object-inspect-return-value-type"><span class="std std-ref">Type</span></a> for format details.</p>
</div>
<div class="section" id="data-column-value-compress-method">
<span id="object-inspect-return-value-data-column-value-compress-method"></span><h4><span class="section-number">7.3.41.5.3.9. </span><code class="docutils literal notranslate"><span class="pre">DATA_COLUMN_VALUE_COMPRESS_METHOD</span></code><a class="headerlink" href="#data-column-value-compress-method" title="Permalink to this headline">¶</a></h4>
<p>The compress method of value of the inspected data column.</p>
<p>Here is a list of compress methods:</p>
<table class="docutils align-default">
<colgroup>
<col style="width: 50%" />
<col style="width: 50%" />
</colgroup>
<thead>
<tr class="row-odd"><th class="head"><p>Compress method</p></th>
<th class="head"><p>Value</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p>zlib</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"zlib"</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>LZ4</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"lz4"</span></code></p></td>
</tr>
<tr class="row-even"><td><p>Zstandard</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"zstd"</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>None</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">null</span></code></p></td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="index-column-value-section">
<span id="object-inspect-return-value-index-column-value-section"></span><h4><span class="section-number">7.3.41.5.3.10. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_SECTION</span></code><a class="headerlink" href="#index-column-value-section" title="Permalink to this headline">¶</a></h4>
<p>Whether the inspected column is created with <code class="docutils literal notranslate"><span class="pre">WITH_SECTION</span></code> flag or
not. The value is <code class="docutils literal notranslate"><span class="pre">true</span></code> if <code class="docutils literal notranslate"><span class="pre">WITH_SECTION</span></code> was specified,
<code class="docutils literal notranslate"><span class="pre">false</span></code> otherwise.</p>
<div class="admonition seealso">
<p class="admonition-title">See also</p>
<p><a class="reference internal" href="column_create.html#column-create-flags"><span class="std std-ref">flags</span></a></p>
</div>
</div>
<div class="section" id="index-column-value-weight">
<span id="object-inspect-return-value-index-column-value-weight"></span><h4><span class="section-number">7.3.41.5.3.11. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_WEIGHT</span></code><a class="headerlink" href="#index-column-value-weight" title="Permalink to this headline">¶</a></h4>
<p>Whether the inspected column is created with <code class="docutils literal notranslate"><span class="pre">WITH_WEIGHT</span></code> flag or
not. The value is <code class="docutils literal notranslate"><span class="pre">true</span></code> if <code class="docutils literal notranslate"><span class="pre">WITH_WEIGHT</span></code> was specified,
<code class="docutils literal notranslate"><span class="pre">false</span></code> otherwise.</p>
<div class="admonition seealso">
<p class="admonition-title">See also</p>
<p><a class="reference internal" href="column_create.html#column-create-flags"><span class="std std-ref">flags</span></a></p>
</div>
</div>
<div class="section" id="index-column-value-position">
<span id="object-inspect-return-value-index-column-value-position"></span><h4><span class="section-number">7.3.41.5.3.12. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_POSITION</span></code><a class="headerlink" href="#index-column-value-position" title="Permalink to this headline">¶</a></h4>
<p>Whether the inspected column is created with <code class="docutils literal notranslate"><span class="pre">WITH_POSITION</span></code> flag or
not. The value is <code class="docutils literal notranslate"><span class="pre">true</span></code> if <code class="docutils literal notranslate"><span class="pre">WITH_POSITION</span></code> was specified,
<code class="docutils literal notranslate"><span class="pre">false</span></code> otherwise.</p>
<div class="admonition seealso">
<p class="admonition-title">See also</p>
<p><a class="reference internal" href="column_create.html#column-create-flags"><span class="std std-ref">flags</span></a></p>
</div>
</div>
<div class="section" id="index-column-value-size">
<span id="object-inspect-return-value-index-column-value-size"></span><h4><span class="section-number">7.3.41.5.3.13. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_SIZE</span></code><a class="headerlink" href="#index-column-value-size" title="Permalink to this headline">¶</a></h4>
<p>The size of the inspected index column. Index size can be specified by
<a class="reference internal" href="column_create.html#column-create-flags"><span class="std std-ref">flags</span></a>.</p>
<p>Here is a list of index column sizes:</p>
<table class="docutils align-default">
<colgroup>
<col style="width: 50%" />
<col style="width: 50%" />
</colgroup>
<thead>
<tr class="row-odd"><th class="head"><p>Index column size</p></th>
<th class="head"><p>Value</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">INDEX_SMALL</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"small"</span></code></p></td>
</tr>
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">INDEX_MEDIUM</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"medium"</span></code></p></td>
</tr>
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">INDEX_LARGE</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"large"</span></code></p></td>
</tr>
<tr class="row-odd"><td><p>Default</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">"normal"</span></code></p></td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="index-column-value-statistics-max-section-id">
<span id="object-inspect-return-value-index-column-value-statistics-max-section-id"></span><h4><span class="section-number">7.3.41.5.3.14. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_MAX_SECTION_ID</span></code><a class="headerlink" href="#index-column-value-statistics-max-section-id" title="Permalink to this headline">¶</a></h4>
<p>The max section ID in the inspected index column.</p>
<p>It’s always <code class="docutils literal notranslate"><span class="pre">0</span></code> for index column that is created without
<code class="docutils literal notranslate"><span class="pre">WITH_SECTION</span></code> flag.</p>
<p>It’s <code class="docutils literal notranslate"><span class="pre">0</span></code> or larger for index column that is created with
<code class="docutils literal notranslate"><span class="pre">WITH_SECTION</span></code> flag. It’s <code class="docutils literal notranslate"><span class="pre">0</span></code> for empty <code class="docutils literal notranslate"><span class="pre">WITH_SECTION</span></code> index
column. It’s <code class="docutils literal notranslate"><span class="pre">1</span></code> or larger for non-empty <code class="docutils literal notranslate"><span class="pre">WITH_SECTION</span></code> index
column.</p>
<p>The max value for <code class="docutils literal notranslate"><span class="pre">WITH_SECTION</span></code> index column is the number of
source columns.</p>
</div>
<div class="section" id="index-column-value-statistics-n-garbage-segments">
<span id="object-inspect-return-value-index-column-value-statistics-n-garbage-segments"></span><h4><span class="section-number">7.3.41.5.3.15. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_N_GARBAGE_SEGMENTS</span></code><a class="headerlink" href="#index-column-value-statistics-n-garbage-segments" title="Permalink to this headline">¶</a></h4>
<p>The number of garbage segments in the inspected index column.</p>
<p>Index column reuses segment (internal allocated space) that is no
longer used. It’s called “garbage segment”.</p>
<p>The max value is the max number of segments. See
<a class="reference internal" href="#object-inspect-return-value-index-column-value-statistics-n-physical-segments"><span class="std std-ref">INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS</span></a>
for the max number of segments.</p>
</div>
<div class="section" id="index-column-value-statistics-max-array-segment-id">
<span id="object-inspect-return-value-index-column-value-statistics-max-array-segment-id"></span><h4><span class="section-number">7.3.41.5.3.16. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_MAX_ARRAY_SEGMENT_ID</span></code><a class="headerlink" href="#index-column-value-statistics-max-array-segment-id" title="Permalink to this headline">¶</a></h4>
<p>The max ID of segment used for “array” in the inspected index column.</p>
<p>“array” is used for managing “buffer”.</p>
<p>The max value is the max number of segments. See
<a class="reference internal" href="#object-inspect-return-value-index-column-value-statistics-n-physical-segments"><span class="std std-ref">INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS</span></a>
for the max number of segments.</p>
</div>
<div class="section" id="index-column-value-statistics-n-array-segments">
<span id="object-inspect-return-value-index-column-value-statistics-n-array-segments"></span><h4><span class="section-number">7.3.41.5.3.17. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_N_ARRAY_SEGMENTS</span></code><a class="headerlink" href="#index-column-value-statistics-n-array-segments" title="Permalink to this headline">¶</a></h4>
<p>The number of segments used for “array” in the inspected index column.</p>
<p>“array” is used for managing “buffer”.</p>
<p>The max value is <code class="docutils literal notranslate"><span class="pre">the</span> <span class="pre">max</span> <span class="pre">number</span> <span class="pre">of</span> <span class="pre">segments</span> <span class="pre">-</span> <span class="pre">the</span> <span class="pre">number</span> <span class="pre">of</span> <span class="pre">segments</span>
<span class="pre">used</span> <span class="pre">for</span> <span class="pre">"buffer"</span></code>. See
<a class="reference internal" href="#object-inspect-return-value-index-column-value-statistics-n-physical-segments"><span class="std std-ref">INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS</span></a>
for the max number of segments.</p>
</div>
<div class="section" id="index-column-value-statistics-max-buffer-segment-id">
<span id="object-inspect-return-value-index-column-value-statistics-max-buffer-segment-id"></span><h4><span class="section-number">7.3.41.5.3.18. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_MAX_BUFFER_SEGMENT_ID</span></code><a class="headerlink" href="#index-column-value-statistics-max-buffer-segment-id" title="Permalink to this headline">¶</a></h4>
<p>The max ID of segment used for “buffer” in the inspected index column.</p>
<p>“buffer” is used for storing posting lists.</p>
<p>The max value is the max number of segments. See
<a class="reference internal" href="#object-inspect-return-value-index-column-value-statistics-n-physical-segments"><span class="std std-ref">INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS</span></a>
for the max number of segments.</p>
</div>
<div class="section" id="index-column-value-statistics-n-buffer-segments">
<span id="object-inspect-return-value-index-column-value-statistics-n-buffer-segments"></span><h4><span class="section-number">7.3.41.5.3.19. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_N_BUFFER_SEGMENTS</span></code><a class="headerlink" href="#index-column-value-statistics-n-buffer-segments" title="Permalink to this headline">¶</a></h4>
<p>The number of segments used for “buffer” in the inspected index column.</p>
<p>“buffer” is used for storing posting lists.</p>
<p>The max value is <code class="docutils literal notranslate"><span class="pre">the</span> <span class="pre">max</span> <span class="pre">number</span> <span class="pre">of</span> <span class="pre">segments</span> <span class="pre">-</span> <span class="pre">the</span> <span class="pre">number</span> <span class="pre">of</span> <span class="pre">segments</span>
<span class="pre">used</span> <span class="pre">for</span> <span class="pre">"array"</span></code>. See
<a class="reference internal" href="#object-inspect-return-value-index-column-value-statistics-n-physical-segments"><span class="std std-ref">INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS</span></a>
for the max number of segments.</p>
</div>
<div class="section" id="index-column-value-statistics-max-in-use-physical-segment-id">
<span id="object-inspect-return-value-index-column-value-statistics-max-in-use-physical-segment-id"></span><h4><span class="section-number">7.3.41.5.3.20. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_MAX_IN_USE_PHYSICAL_SEGMENT_ID</span></code><a class="headerlink" href="#index-column-value-statistics-max-in-use-physical-segment-id" title="Permalink to this headline">¶</a></h4>
<p>The max segment ID in use as “garbage”, “array” or “buffer” in the
inspected index column.</p>
<p>The max value is the max number of segments. See
<a class="reference internal" href="#object-inspect-return-value-index-column-value-statistics-n-physical-segments"><span class="std std-ref">INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS</span></a>
for the max number of segments.</p>
</div>
<div class="section" id="index-column-value-statistics-n-unmanaged-segments">
<span id="object-inspect-return-value-index-column-value-statistics-n-unmanaged-segments"></span><h4><span class="section-number">7.3.41.5.3.21. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_N_UNMANAGED_SEGMENTS</span></code><a class="headerlink" href="#index-column-value-statistics-n-unmanaged-segments" title="Permalink to this headline">¶</a></h4>
<p>The number of unmanaged segments in the inspected index column.</p>
<p>It must be <code class="docutils literal notranslate"><span class="pre">0</span></code>.</p>
</div>
<div class="section" id="index-column-value-statistics-total-chunk-size">
<span id="object-inspect-return-value-index-column-value-statistics-total-chunk-size"></span><h4><span class="section-number">7.3.41.5.3.22. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_TOTAL_CHUNK_SIZE</span></code><a class="headerlink" href="#index-column-value-statistics-total-chunk-size" title="Permalink to this headline">¶</a></h4>
<p>The total “chunk” size in the inspected index column.</p>
<p>“chunk” is used for storing posting lists. “buffer” is mutable but
“chunk” is immutable. “chunk” is more space effective than
“buffer”. “buffer” is more update effective than “chunk”.</p>
<p>Small posting lists are stored into “buffer”. Posting lists in
“buffer” are moved to “chunk” when these posting lists are grew.</p>
<p>The max value is <code class="docutils literal notranslate"><span class="pre">the</span> <span class="pre">max</span> <span class="pre">size</span> <span class="pre">of</span> <span class="pre">a</span> <span class="pre">chunk</span> <span class="pre">*</span> <span class="pre">the</span> <span class="pre">max</span> <span class="pre">number</span> <span class="pre">of</span>
<span class="pre">chunks</span></code>. But you will not be able to use all spaces because there are
overheads.</p>
<p>The max size of a chunk is <code class="docutils literal notranslate"><span class="pre">2</span> <span class="pre">**</span> <span class="pre">22</span></code> bytes (4MiB). The max
number of chunks depend on index size:</p>
<table class="docutils align-default">
<colgroup>
<col style="width: 50%" />
<col style="width: 50%" />
</colgroup>
<thead>
<tr class="row-odd"><th class="head"><p>Index column size</p></th>
<th class="head"><p>The max number of chunks</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">INDEX_SMALL</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">2**10</span></code> (1024)</p></td>
</tr>
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">INDEX_MEDIUM</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">2**14</span></code> (16384)</p></td>
</tr>
<tr class="row-even"><td><p>Default</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">2**18</span></code> (262144)</p></td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="index-column-value-statistics-max-in-use-chunk-id">
<span id="object-inspect-return-value-index-column-value-statistics-max-in-use-chunk-id"></span><h4><span class="section-number">7.3.41.5.3.23. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_MAX_IN_USE_CHUNK_ID</span></code><a class="headerlink" href="#index-column-value-statistics-max-in-use-chunk-id" title="Permalink to this headline">¶</a></h4>
<p>The max “chunk” ID in use in the inspected index column.</p>
<p>The max value is the max number of chunks. See
<a class="reference internal" href="#object-inspect-return-value-index-column-value-statistics-total-chunk-size"><span class="std std-ref">INDEX_COLUMN_VALUE_STATISTICS_TOTAL_CHUNK_SIZE</span></a>
for the max number of chunks.</p>
</div>
<div class="section" id="index-column-value-statistics-n-garbage-chunks">
<span id="object-inspect-return-value-index-column-value-statistics-n-garbage-chunks"></span><h4><span class="section-number">7.3.41.5.3.24. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_N_GARBAGE_CHUNKS</span></code><a class="headerlink" href="#index-column-value-statistics-n-garbage-chunks" title="Permalink to this headline">¶</a></h4>
<p>The array of the number of garbage “chunks” in the inspected index
column.</p>
<p>Garbage “chunks” are managed by separated 14 spaces. It shows all the
number of garbage “chunks” as an array like the following:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>[
N_GARBAGE_CHUNKS_IN_SPACE0,
N_GARBAGE_CHUNKS_IN_SPACE1,
...
N_GARBAGE_CHUNKS_IN_SPACE13
]
</pre></div>
</div>
<p>The max value of each space is the max number of chunks. See
<a class="reference internal" href="#object-inspect-return-value-index-column-value-statistics-total-chunk-size"><span class="std std-ref">INDEX_COLUMN_VALUE_STATISTICS_TOTAL_CHUNK_SIZE</span></a>
for the max number of chunks.</p>
</div>
<div class="section" id="index-column-value-statistics-next-physical-segment-id">
<span id="object-inspect-return-value-index-column-value-statistics-next-physical-segment-id"></span><h4><span class="section-number">7.3.41.5.3.25. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_NEXT_PHYSICAL_SEGMENT_ID</span></code><a class="headerlink" href="#index-column-value-statistics-next-physical-segment-id" title="Permalink to this headline">¶</a></h4>
<div class="versionadded">
<p><span class="versionmodified added">New in version 9.0.2.</span></p>
</div>
<p>This value is the ID of the segment. The inspected index column use it as the next segment ID.
The max value is the max number of segments. See
<a class="reference internal" href="#object-inspect-return-value-index-column-value-statistics-n-physical-segments"><span class="std std-ref">INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS</span></a>
for the max number of segments.</p>
</div>
<div class="section" id="index-column-value-statistics-n-physical-segments">
<span id="object-inspect-return-value-index-column-value-statistics-n-physical-segments"></span><h4><span class="section-number">7.3.41.5.3.26. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS</span></code><a class="headerlink" href="#index-column-value-statistics-n-physical-segments" title="Permalink to this headline">¶</a></h4>
<div class="versionadded">
<p><span class="versionmodified added">New in version 9.0.2.</span></p>
</div>
<p>This value the max number of segments. It depends on index size:</p>
<table class="docutils align-default">
<colgroup>
<col style="width: 50%" />
<col style="width: 50%" />
</colgroup>
<thead>
<tr class="row-odd"><th class="head"><p>Index column size</p></th>
<th class="head"><p>The max number of segments</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">INDEX_SMALL</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">2**9</span></code> (512)</p></td>
</tr>
<tr class="row-odd"><td><p><code class="docutils literal notranslate"><span class="pre">INDEX_MEDIUM</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">2**16</span></code> (65536)</p></td>
</tr>
<tr class="row-even"><td><p><code class="docutils literal notranslate"><span class="pre">INDEX_LARGE</span></code></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">2**17</span> <span class="pre">*</span> <span class="pre">2</span></code> (262144)</p></td>
</tr>
<tr class="row-odd"><td><p>Default</p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">2**17</span></code> (131072)</p></td>
</tr>
</tbody>
</table>
<p>If the number of segments tend to exceeds near the future, you need to consider to adopt <code class="docutils literal notranslate"><span class="pre">INDEX_XXX</span></code> flags.</p>
</div>
<div class="section" id="index-column-source-id">
<span id="object-inspect-return-value-index-column-source-id"></span><h4><span class="section-number">7.3.41.5.3.27. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_SOURCE_ID</span></code><a class="headerlink" href="#index-column-source-id" title="Permalink to this headline">¶</a></h4>
<p>The ID of a source column of the inspected index column.</p>
</div>
<div class="section" id="index-column-source-name">
<span id="object-inspect-return-value-index-column-source-name"></span><h4><span class="section-number">7.3.41.5.3.28. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_SOURCE_NAME</span></code><a class="headerlink" href="#index-column-source-name" title="Permalink to this headline">¶</a></h4>
<p>The name of a source column of the inspected index column.</p>
<p>It doesn’t include table name. It’s just only column name.</p>
<p>If you want full column name (<code class="docutils literal notranslate"><span class="pre">TABLE_NAME.COLUMN_NAME</span></code> style), use
<a class="reference internal" href="#object-inspect-return-value-index-column-source-full-name"><span class="std std-ref">INDEX_COLUMN_SOURCE_FULL_NAME</span></a>
instead.</p>
</div>
<div class="section" id="index-column-source-table">
<span id="object-inspect-return-value-index-column-source-table"></span><h4><span class="section-number">7.3.41.5.3.29. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_SOURCE_TABLE</span></code><a class="headerlink" href="#index-column-source-table" title="Permalink to this headline">¶</a></h4>
<p>The table of a source column of the inspected index column.</p>
<p>See <a class="reference internal" href="#object-inspect-return-value-table"><span class="std std-ref">Table</span></a> for format details.</p>
</div>
<div class="section" id="index-column-source-full-name">
<span id="object-inspect-return-value-index-column-source-full-name"></span><h4><span class="section-number">7.3.41.5.3.30. </span><code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_SOURCE_FULL_NAME</span></code><a class="headerlink" href="#index-column-source-full-name" title="Permalink to this headline">¶</a></h4>
<p>The full name of a source column of the inspected index column.</p>
<p>It includes both table name and column name as
<code class="docutils literal notranslate"><span class="pre">TABLE_NAME.COLUMN_NAME</span></code> format.</p>
<p>If you just want only column name, use
<a class="reference internal" href="#object-inspect-return-value-index-column-source-name"><span class="std std-ref">INDEX_COLUMN_SOURCE_NAME</span></a> instead.</p>
</div>
<div class="section" id="type">
<span id="object-inspect-return-value-type"></span><h4><span class="section-number">7.3.41.5.3.31. </span>Type<a class="headerlink" href="#type" title="Permalink to this headline">¶</a></h4>
<p>Type inspection returns the following information:</p>
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>{
"id": TYPE_ID,
"name": TYPE_NAME,
"type": {
"id": TYPE_ID_OF_TYPE,
"name": TYPE_NAME_OF_TYPE
},
"size": TYPE_SIZE
}
</pre></div>
</div>
</div>
<div class="section" id="type-id">
<span id="object-inspect-return-value-type-id"></span><h4><span class="section-number">7.3.41.5.3.32. </span><code class="docutils literal notranslate"><span class="pre">TYPE_ID</span></code><a class="headerlink" href="#type-id" title="Permalink to this headline">¶</a></h4>
<p>The ID of the inspected type.</p>
<p>Here is an ID list of builtin types:</p>
<table class="docutils align-default">
<colgroup>
<col style="width: 50%" />
<col style="width: 50%" />
</colgroup>
<thead>
<tr class="row-odd"><th class="head"><p>Type</p></th>
<th class="head"><p>ID</p></th>
</tr>
</thead>
<tbody>
<tr class="row-even"><td><p><a class="reference internal" href="../types.html#builtin-type-bool"><span class="std std-ref">Bool</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">3</span></code></p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="../types.html#builtin-type-int8"><span class="std std-ref">Int8</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">4</span></code></p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="../types.html#builtin-type-uint8"><span class="std std-ref">UInt8</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">5</span></code></p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="../types.html#builtin-type-int16"><span class="std std-ref">Int16</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">6</span></code></p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="../types.html#builtin-type-uint16"><span class="std std-ref">UInt16</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">7</span></code></p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="../types.html#builtin-type-int32"><span class="std std-ref">Int32</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">8</span></code></p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="../types.html#builtin-type-uint32"><span class="std std-ref">UInt32</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">9</span></code></p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="../types.html#builtin-type-int64"><span class="std std-ref">Int64</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">10</span></code></p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="../types.html#builtin-type-uint64"><span class="std std-ref">UInt64</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">11</span></code></p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="../types.html#builtin-type-float"><span class="std std-ref">Float32</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">12</span></code></p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="../types.html#builtin-type-time"><span class="std std-ref">Time</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">13</span></code></p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="../types.html#builtin-type-short-text"><span class="std std-ref">ShortText</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">14</span></code></p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="../types.html#builtin-type-text"><span class="std std-ref">Text</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">15</span></code></p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="../types.html#builtin-type-long-text"><span class="std std-ref">LongText</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">16</span></code></p></td>
</tr>
<tr class="row-even"><td><p><a class="reference internal" href="../types.html#builtin-type-tokyo-geo-point"><span class="std std-ref">TokyoGeoPoint</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">17</span></code></p></td>
</tr>
<tr class="row-odd"><td><p><a class="reference internal" href="../types.html#builtin-type-wgs84-geo-point"><span class="std std-ref">WGS84GeoPoint</span></a></p></td>
<td><p><code class="docutils literal notranslate"><span class="pre">18</span></code></p></td>
</tr>
</tbody>
</table>
</div>
<div class="section" id="type-name">
<span id="object-inspect-return-value-type-name"></span><h4><span class="section-number">7.3.41.5.3.33. </span><code class="docutils literal notranslate"><span class="pre">TYPE_NAME</span></code><a class="headerlink" href="#type-name" title="Permalink to this headline">¶</a></h4>
<p>The name of the inspected type.</p>
<p>Here is a name list of builtin types:</p>
<blockquote>
<div><ul class="simple">
<li><p><a class="reference internal" href="../types.html#builtin-type-bool"><span class="std std-ref">Bool</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-int8"><span class="std std-ref">Int8</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-uint8"><span class="std std-ref">UInt8</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-int16"><span class="std std-ref">Int16</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-uint16"><span class="std std-ref">UInt16</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-int32"><span class="std std-ref">Int32</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-uint32"><span class="std std-ref">UInt32</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-int64"><span class="std std-ref">Int64</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-uint64"><span class="std std-ref">UInt64</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-float"><span class="std std-ref">Float32</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-time"><span class="std std-ref">Time</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-short-text"><span class="std std-ref">ShortText</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-text"><span class="std std-ref">Text</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-long-text"><span class="std std-ref">LongText</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-tokyo-geo-point"><span class="std std-ref">TokyoGeoPoint</span></a></p></li>
<li><p><a class="reference internal" href="../types.html#builtin-type-wgs84-geo-point"><span class="std std-ref">WGS84GeoPoint</span></a></p></li>
</ul>
</div></blockquote>
</div>
<div class="section" id="type-id-of-type">
<span id="object-inspect-return-value-type-id-of-type"></span><h4><span class="section-number">7.3.41.5.3.34. </span><code class="docutils literal notranslate"><span class="pre">TYPE_ID_OF_TYPE</span></code><a class="headerlink" href="#type-id-of-type" title="Permalink to this headline">¶</a></h4>
<p><code class="docutils literal notranslate"><span class="pre">TYPE_ID_OF_TYPE</span></code> is always <code class="docutils literal notranslate"><span class="pre">32</span></code>.</p>
</div>
<div class="section" id="type-name-of-type">
<span id="object-inspect-return-value-type-name-of-type"></span><h4><span class="section-number">7.3.41.5.3.35. </span><code class="docutils literal notranslate"><span class="pre">TYPE_NAME_OF_TYPE</span></code><a class="headerlink" href="#type-name-of-type" title="Permalink to this headline">¶</a></h4>
<p><code class="docutils literal notranslate"><span class="pre">TYPE_NAME_OF_TYPE</span></code> is always <code class="docutils literal notranslate"><span class="pre">type</span></code>.</p>
</div>
<div class="section" id="type-size">
<span id="object-inspect-return-value-type-size"></span><h4><span class="section-number">7.3.41.5.3.36. </span><code class="docutils literal notranslate"><span class="pre">TYPE_SIZE</span></code><a class="headerlink" href="#type-size" title="Permalink to this headline">¶</a></h4>
<p><code class="docutils literal notranslate"><span class="pre">TYPE_SIZE</span></code> is the size of the inspected type in bytes. If the
inspected type is variable size type, the size means the maximum size.</p>
</div>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h3><a href="../../index.html">Table of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">7.3.41. <code class="docutils literal notranslate"><span class="pre">object_inspect</span></code></a><ul>
<li><a class="reference internal" href="#summary">7.3.41.1. Summary</a></li>
<li><a class="reference internal" href="#syntax">7.3.41.2. Syntax</a></li>
<li><a class="reference internal" href="#usage">7.3.41.3. Usage</a></li>
<li><a class="reference internal" href="#parameters">7.3.41.4. Parameters</a><ul>
<li><a class="reference internal" href="#required-parameters">7.3.41.4.1. Required parameters</a></li>
<li><a class="reference internal" href="#optional-parameters">7.3.41.4.2. Optional parameters</a><ul>
<li><a class="reference internal" href="#name">7.3.41.4.2.1. <code class="docutils literal notranslate"><span class="pre">name</span></code></a></li>
</ul>
</li>
</ul>
</li>
<li><a class="reference internal" href="#return-value">7.3.41.5. Return value</a><ul>
<li><a class="reference internal" href="#database">7.3.41.5.1. Database</a><ul>
<li><a class="reference internal" href="#database-type-id">7.3.41.5.1.1. <code class="docutils literal notranslate"><span class="pre">DATABASE_TYPE_ID</span></code></a></li>
<li><a class="reference internal" href="#database-type-name">7.3.41.5.1.2. <code class="docutils literal notranslate"><span class="pre">DATABASE_TYPE_NAME</span></code></a></li>
<li><a class="reference internal" href="#database-name-table">7.3.41.5.1.3. <code class="docutils literal notranslate"><span class="pre">DATABASE_NAME_TABLE</span></code></a></li>
</ul>
</li>
<li><a class="reference internal" href="#table">7.3.41.5.2. Table</a><ul>
<li><a class="reference internal" href="#table-id">7.3.41.5.2.1. <code class="docutils literal notranslate"><span class="pre">TABLE_ID</span></code></a></li>
<li><a class="reference internal" href="#table-name">7.3.41.5.2.2. <code class="docutils literal notranslate"><span class="pre">TABLE_NAME</span></code></a></li>
<li><a class="reference internal" href="#table-type-id">7.3.41.5.2.3. <code class="docutils literal notranslate"><span class="pre">TABLE_TYPE_ID</span></code></a></li>
<li><a class="reference internal" href="#table-type-name">7.3.41.5.2.4. <code class="docutils literal notranslate"><span class="pre">TABLE_TYPE_NAME</span></code></a></li>
<li><a class="reference internal" href="#table-key-type">7.3.41.5.2.5. <code class="docutils literal notranslate"><span class="pre">TABLE_KEY_TYPE</span></code></a></li>
<li><a class="reference internal" href="#table-key-total-size">7.3.41.5.2.6. <code class="docutils literal notranslate"><span class="pre">TABLE_KEY_TOTAL_SIZE</span></code></a></li>
<li><a class="reference internal" href="#table-key-max-total-size">7.3.41.5.2.7. <code class="docutils literal notranslate"><span class="pre">TABLE_KEY_MAX_TOTAL_SIZE</span></code></a></li>
<li><a class="reference internal" href="#table-value-type">7.3.41.5.2.8. <code class="docutils literal notranslate"><span class="pre">TABLE_VALUE_TYPE</span></code></a></li>
<li><a class="reference internal" href="#table-n-records">7.3.41.5.2.9. <code class="docutils literal notranslate"><span class="pre">TABLE_N_RECORDS</span></code></a></li>
</ul>
</li>
<li><a class="reference internal" href="#column">7.3.41.5.3. Column</a><ul>
<li><a class="reference internal" href="#column-id">7.3.41.5.3.1. <code class="docutils literal notranslate"><span class="pre">COLUMN_ID</span></code></a></li>
<li><a class="reference internal" href="#column-name">7.3.41.5.3.2. <code class="docutils literal notranslate"><span class="pre">COLUMN_NAME</span></code></a></li>
<li><a class="reference internal" href="#column-table">7.3.41.5.3.3. <code class="docutils literal notranslate"><span class="pre">COLUMN_TABLE</span></code></a></li>
<li><a class="reference internal" href="#column-full-name">7.3.41.5.3.4. <code class="docutils literal notranslate"><span class="pre">COLUMN_FULL_NAME</span></code></a></li>
<li><a class="reference internal" href="#column-type-name">7.3.41.5.3.5. <code class="docutils literal notranslate"><span class="pre">COLUMN_TYPE_NAME</span></code></a></li>
<li><a class="reference internal" href="#column-type-raw-id">7.3.41.5.3.6. <code class="docutils literal notranslate"><span class="pre">COLUMN_TYPE_RAW_ID</span></code></a></li>
<li><a class="reference internal" href="#column-type-raw-name">7.3.41.5.3.7. <code class="docutils literal notranslate"><span class="pre">COLUMN_TYPE_RAW_NAME</span></code></a></li>
<li><a class="reference internal" href="#column-value-type">7.3.41.5.3.8. <code class="docutils literal notranslate"><span class="pre">COLUMN_VALUE_TYPE</span></code></a></li>
<li><a class="reference internal" href="#data-column-value-compress-method">7.3.41.5.3.9. <code class="docutils literal notranslate"><span class="pre">DATA_COLUMN_VALUE_COMPRESS_METHOD</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-section">7.3.41.5.3.10. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_SECTION</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-weight">7.3.41.5.3.11. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_WEIGHT</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-position">7.3.41.5.3.12. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_POSITION</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-size">7.3.41.5.3.13. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_SIZE</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-statistics-max-section-id">7.3.41.5.3.14. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_MAX_SECTION_ID</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-statistics-n-garbage-segments">7.3.41.5.3.15. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_N_GARBAGE_SEGMENTS</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-statistics-max-array-segment-id">7.3.41.5.3.16. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_MAX_ARRAY_SEGMENT_ID</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-statistics-n-array-segments">7.3.41.5.3.17. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_N_ARRAY_SEGMENTS</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-statistics-max-buffer-segment-id">7.3.41.5.3.18. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_MAX_BUFFER_SEGMENT_ID</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-statistics-n-buffer-segments">7.3.41.5.3.19. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_N_BUFFER_SEGMENTS</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-statistics-max-in-use-physical-segment-id">7.3.41.5.3.20. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_MAX_IN_USE_PHYSICAL_SEGMENT_ID</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-statistics-n-unmanaged-segments">7.3.41.5.3.21. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_N_UNMANAGED_SEGMENTS</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-statistics-total-chunk-size">7.3.41.5.3.22. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_TOTAL_CHUNK_SIZE</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-statistics-max-in-use-chunk-id">7.3.41.5.3.23. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_MAX_IN_USE_CHUNK_ID</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-statistics-n-garbage-chunks">7.3.41.5.3.24. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_N_GARBAGE_CHUNKS</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-statistics-next-physical-segment-id">7.3.41.5.3.25. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_NEXT_PHYSICAL_SEGMENT_ID</span></code></a></li>
<li><a class="reference internal" href="#index-column-value-statistics-n-physical-segments">7.3.41.5.3.26. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_VALUE_STATISTICS_N_PHYSICAL_SEGMENTS</span></code></a></li>
<li><a class="reference internal" href="#index-column-source-id">7.3.41.5.3.27. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_SOURCE_ID</span></code></a></li>
<li><a class="reference internal" href="#index-column-source-name">7.3.41.5.3.28. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_SOURCE_NAME</span></code></a></li>
<li><a class="reference internal" href="#index-column-source-table">7.3.41.5.3.29. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_SOURCE_TABLE</span></code></a></li>
<li><a class="reference internal" href="#index-column-source-full-name">7.3.41.5.3.30. <code class="docutils literal notranslate"><span class="pre">INDEX_COLUMN_SOURCE_FULL_NAME</span></code></a></li>
<li><a class="reference internal" href="#type">7.3.41.5.3.31. Type</a></li>
<li><a class="reference internal" href="#type-id">7.3.41.5.3.32. <code class="docutils literal notranslate"><span class="pre">TYPE_ID</span></code></a></li>
<li><a class="reference internal" href="#type-name">7.3.41.5.3.33. <code class="docutils literal notranslate"><span class="pre">TYPE_NAME</span></code></a></li>
<li><a class="reference internal" href="#type-id-of-type">7.3.41.5.3.34. <code class="docutils literal notranslate"><span class="pre">TYPE_ID_OF_TYPE</span></code></a></li>
<li><a class="reference internal" href="#type-name-of-type">7.3.41.5.3.35. <code class="docutils literal notranslate"><span class="pre">TYPE_NAME_OF_TYPE</span></code></a></li>
<li><a class="reference internal" href="#type-size">7.3.41.5.3.36. <code class="docutils literal notranslate"><span class="pre">TYPE_SIZE</span></code></a></li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h4>Previous topic</h4>
<p class="topless"><a href="object_exist.html"
title="previous chapter"><span class="section-number">7.3.40. </span><code class="docutils literal notranslate"><span class="pre">object_exist</span></code></a></p>
<h4>Next topic</h4>
<p class="topless"><a href="object_list.html"
title="next chapter"><span class="section-number">7.3.42. </span><code class="docutils literal notranslate"><span class="pre">object_list</span></code></a></p>
<div id="searchbox" style="display: none" role="search">
<h3 id="searchlabel">Quick search</h3>
<div class="searchformwrapper">
<form class="search" action="../../search.html" method="get">
<input type="text" name="q" aria-labelledby="searchlabel" />
<input type="submit" value="Go" />
</form>
</div>
</div>
<script>$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../../genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="object_list.html" title="7.3.42. object_list"
>next</a> |</li>
<li class="right" >
<a href="object_exist.html" title="7.3.40. object_exist"
>previous</a> |</li>
<li class="nav-item nav-item-0"><a href="../../index.html">Groonga v10.1.1-31-g1e46ba6 documentation</a> »</li>
<li class="nav-item nav-item-1"><a href="../../reference.html" ><span class="section-number">7. </span>Reference manual</a> »</li>
<li class="nav-item nav-item-2"><a href="../command.html" ><span class="section-number">7.3. </span>Command</a> »</li>
<li class="nav-item nav-item-this"><a href=""><span class="section-number">7.3.41. </span><code class="docutils literal notranslate"><span class="pre">object_inspect</span></code></a></li>
</ul>
</div>
<div class="footer" role="contentinfo">
© Copyright 2009-2021, Brazil, Inc.
</div>
</body>
</html>
|