Files
impala/docs/impala_keydefs.ditamap
jichen0919 826c8cf9b0 IMPALA-14081: Support create/drop paimon table for impala
This patch mainly implement the creation/drop of paimon table
through impala.

Supported impala data types:
- BOOLEAN
- TINYINT
- SMALLINT
- INTEGER
- BIGINT
- FLOAT
- DOUBLE
- STRING
- DECIMAL(P,S)
- TIMESTAMP
- CHAR(N)
- VARCHAR(N)
- BINARY
- DATE

Syntax for creating paimon table:

CREATE [EXTERNAL] TABLE [IF NOT EXISTS] [db_name.]table_name
(
[col_name data_type ,...]
[PRIMARY KEY (col1,col2)]
)
[PARTITIONED BY (col_name data_type [COMMENT 'col_comment'], ...)]
STORED AS PAIMON
[LOCATION 'hdfs_path']
[TBLPROPERTIES (
'primary-key'='col1,col2',
'file.format' = 'orc/parquet',
'bucket' = '2',
'bucket-key' = 'col3',
];

Two types of paimon catalogs are supported.

(1) Create table with hive catalog:

CREATE TABLE paimon_hive_cat(userid INT,movieId INT)
STORED AS PAIMON;

(2) Create table with hadoop catalog:

CREATE [EXTERNAL] TABLE paimon_hadoop_cat
STORED AS PAIMON
TBLPROPERTIES('paimon.catalog'='hadoop',
'paimon.catalog_location'='/path/to/paimon_hadoop_catalog',
'paimon.table_identifier'='paimondb.paimontable');

SHOW TABLE STAT/SHOW COLUMN STAT/SHOW PARTITIONS/SHOW FILES
statements are also supported.

TODO:
    - Patches pending submission:
        - Query support for paimon data files.
        - Partition pruning and predicate push down.
        - Query support with time travel.
        - Query support for paimon meta tables.
    - WIP:
        - Complex type query support.
        - Virtual Column query support for querying
          paimon data table.
        - Native paimon table scanner, instead of
          jni based.
Testing:
    - Add unit test for paimon impala type conversion.
    - Add unit test for ToSqlTest.java.
    - Add unit test for AnalyzeDDLTest.java.
    - Update default_file_format TestEnumCase in
      be/src/service/query-options-test.cc.
    - Update test case in
      testdata/workloads/functional-query/queries/QueryTest/set.test.
    - Add test cases in metadata/test_show_create_table.py.
    - Add custom test test_paimon.py.

Change-Id: I57e77f28151e4a91353ef77050f9f0cd7d9d05ef
Reviewed-on: http://gerrit.cloudera.org:8080/22914
Tested-by: Impala Public Jenkins <impala-public-jenkins@cloudera.com>
Reviewed-by: Riza Suminto <riza.suminto@cloudera.com>
2025-09-10 21:24:49 +00:00

11103 lines
1.2 MiB

<?xml version="1.0" encoding="UTF-8"?>
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<!DOCTYPE map PUBLIC "-//OASIS//DTD DITA Map//EN" "map.dtd">
<map id="impala_keydefs">
<title>Apache Impala Key Definitions</title>
<!-- Definitions for substitution variables, particularly for upstream/downstream differences in terminology and versioning. -->
<keydef keys="hadoop_distro"><topicmeta><keywords><keyword>Apache Hadoop</keyword></keywords></topicmeta></keydef>
<keydef keys="support_org"><topicmeta><keywords><keyword>the appropriate support channel</keyword></keywords></topicmeta></keydef>
<!-- URLs used in external links. Many, perhaps most, to be turned into keydefs to genericize and optionally re-point. -->
<!-- Blank template of a <keydef> tag including link text.
<keydef href="" scope="external" format="html" keys="">
<topicmeta><linktext></linktext></topicmeta>
</keydef>
-->
<keydef href="https://kudu.apache.org/docs/security.html" scope="external" format="html" keys="kudu_security">
<topicmeta><linktext>Kudu Security</linktext></topicmeta>
</keydef>
<keydef href="https://web.mit.edu/kerberos/krb5-latest/doc/admin/install_kdc.html" scope="external" format="html" keys="mit_install_kdc">
<topicmeta><linktext>Kerberos Key Distribution Center (KDC)</linktext></topicmeta>
</keydef>
<keydef href="https://web.mit.edu/kerberos/krb5-latest/doc/index.html" scope="external" format="html" keys="mit_kerberos_docs">
<topicmeta><linktext>MIT Kerberos documentation</linktext></topicmeta>
</keydef>
<keydef href="https://hadoop.apache.org/docs/stable/hadoop-project-dist/hadoop-common/SecureMode.html#Authentication" scope="external" format="html" keys="upstream_hadoop_authentication">
<topicmeta><linktext>Authentication in Hadoop</linktext></topicmeta>
</keydef>
<keydef href="https://hbase.apache.org/book.html" scope="external" format="html" keys="upstream_hbase_docs">
<topicmeta><linktext>the Apache HBase documentation</linktext></topicmeta>
</keydef>
<keydef href="https://iceberg.apache.org" scope="external" format="html" keys="upstream_iceberg_site">
<topicmeta><linktext>the Apache Iceberg site</linktext></topicmeta>
</keydef>
<keydef href="https://iceberg.apache.org/puffin-spec" scope="external" format="html" keys="upstream_iceberg_puffin_site">
<topicmeta><linktext>the Apache Iceberg Puffin site</linktext></topicmeta>
</keydef>
<keydef href="https://https://paimon.apache.org" scope="external" format="html" keys="upstream_paimon_site">
<topicmeta><linktext>the Apache Paimon site</linktext></topicmeta>
</keydef>
<keydef href="https://ozone.apache.org" scope="external" format="html" keys="upstream_ozone_site">
<topicmeta><linktext>the Apache Ozone site</linktext></topicmeta>
</keydef>
<keydef href="https://hbase.apache.org/book.html#security" scope="external" format="html" keys="upstream_hbase_security_docs">
<topicmeta><linktext>the Security chapter in the Apache HBase documentation</linktext></topicmeta>
</keydef>
<keydef href="https://github.com/apache/impala/blob/master/tests/query_test/test_udfs.py" scope="external" format="html" keys="test_udfs.py">
<topicmeta><linktext>test_udfs.py</linktext></topicmeta>
</keydef>
<keydef href="https://github.com/apache/impala/blob/master/be/src/exprs/timezone_db.cc" scope="external" format="html" keys="timezone_db.cc">
<topicmeta><linktext>timezone_db.cc</linktext></topicmeta>
</keydef>
<keydef href="https://github.com/cloudera/impala-tpcds-kit" scope="external" format="html" keys="impala-tpcds-kit">
<topicmeta><linktext>impala-tpcds-kit</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="udf-samples">
<topicmeta><linktext>impala-udf-samples</linktext></topicmeta>
</keydef>
<keydef href="https://github.com/cloudera/impala-udf-samples/blob/master/uda-sample.cc" scope="external" format="html" keys="uda-sample.cc">
<topicmeta><linktext>uda-sample.cc</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="udf-sample.h">
<topicmeta><linktext>udf-sample.h</linktext></topicmeta>
</keydef>
<keydef href="https://github.com/cloudera/impala-udf-samples/blob/master/uda-sample.h" scope="external" format="html" keys="uda-sample.h">
<topicmeta><linktext>uda-sample.h</linktext></topicmeta>
</keydef>
<keydef href="https://github.com/apache/impala/blob/master/be/src/testutil/test-udas.cc" scope="external" format="html" keys="test-udas.cc">
<topicmeta><linktext>test-udas.cc</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="udf_samples">
<topicmeta><linktext>the udf_samples github repo</linktext></topicmeta>
</keydef>
<keydef href="https://chromium.googlesource.com/breakpad/breakpad/" scope="external" format="html" keys="breakpad_project"/>
<keydef href="http://gethue.com/" scope="external" format="html" keys="gethue.com">
<topicmeta><linktext>Hue</linktext></topicmeta>
</keydef>
<keydef href="http://shop.oreilly.com/product/0636920033936.do" scope="external" format="html" keys="0636920033936.do">
<topicmeta><linktext>Getting Started with Impala</linktext></topicmeta>
</keydef>
<keydef href="https://mail-archives.apache.org/mod_mbox/impala-user/" scope="external" format="html" keys="impala-user"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA" scope="external" format="html" keys="impala-jira"/>
<keydef href="http://hadoop.apache.org/docs/current/hadoop-yarn/hadoop-yarn-site/FairScheduler.html#Configuration" scope="external" format="html" keys="FairScheduler"/>
<keydef href="" scope="external" format="html" keys="archive_root">
<topicmeta><linktext>the top level of this software archive</linktext></topicmeta>
</keydef>
<keydef href="https://archive.cloudera.com/gplextras/redhat/5/x86_64/gplextras/" scope="external" format="html" keys="gplextras"/>
<keydef href="https://archive.cloudera.com/gplextras/redhat/5/x86_64/gplextras/cloudera-gplextras4.repo" scope="external" format="html" keys="gplextras_rhel5"/>
<keydef href="https://archive.cloudera.com/gplextras/redhat/6/x86_64/gplextras/cloudera-gplextras4.repo" scope="external" format="html" keys="gplextras_rhel6"/>
<keydef href="https://archive.cloudera.com/gplextras/sles/11/x86_64/gplextras/cloudera-gplextras4.repo" scope="external" format="html" keys="gplextras_sles11"/>
<keydef href="https://archive.cloudera.com/gplextras/ubuntu/lucid/amd64/gplextras/cloudera.list" scope="external" format="html" keys="gplextras_ubuntu_lucid"/>
<keydef href="https://archive.cloudera.com/gplextras/ubuntu/precise/amd64/gplextras/cloudera.list" scope="external" format="html" keys="gplextras_ubuntu_precise"/>
<keydef href="https://archive.cloudera.com/gplextras/debian/squeeze/amd64/gplextras/cloudera.list" scope="external" format="html" keys="gplextras_debian_squeeze"/>
<keydef href="https://code.google.com/p/re2/" scope="external" format="html" keys="re2"/>
<keydef href="http://goog-perftools.sourceforge.net/doc/tcmalloc.html" scope="external" format="html" keys="tcmalloc"/>
<keydef href="https://github.com/google/glog" scope="external" format="html" keys="glog.html"/>
<keydef href="https://issues.apache.org/jira/browse/HIVE-656" scope="external" format="html" keys="HIVE-656"/>
<keydef href="http://sentry.apache.org/" scope="external" format="html" keys="sentry"/>
<keydef href="https://www.strchr.com/hash_functions" scope="external" format="html" keys="hash_functions1"/>
<keydef href="https://aras-p.info/blog/2016/08/09/More-Hash-Function-Tests" scope="external" format="html" keys="hash_functions2"/>
<keydef href="https://softwareengineering.stackexchange.com/questions/49550/which-hashing-algorithm-is-best-for-uniqueness-and-speed" scope="external" format="html" keys="hash_functions3"/>
<!-- Download page that leads to ODBC drivers. -->
<keydef href="https://www.cloudera.com/downloads/connectors/impala/odbc.html" scope="external" format="html" keys="odbc_driver_download"/>
<keydef href="http://www.cloudera.com/content/support/en/documentation/cloudera-connectors-documentation/connector-documentation-latest.html" scope="external" format="html" keys="connector-documentation-latest"/>
<keydef href="http://www.iodbc.org/dataspace/iodbc/wiki/iODBC/Downloads" scope="external" format="html" keys="iODBC_Downloads"/>
<keydef href="https://github.com/onefoursix/Cloudera-Impala-JDBC-Example" scope="external" format="html" keys="Impala-JDBC-Example"/>
<keydef href="https://issues.apache.org/jira/browse/HIVE-8648" scope="external" format="html" keys="HIVE-8648"/>
<keydef href="http://www.tpc.org/tpcds/" scope="external" format="html" keys="tpcds"/>
<keydef href="http://www.mysql.com/products/connector/" scope="external" format="html" keys="mysql-connector"/>
<keydef href="http://jdbc.postgresql.org/download.html" scope="external" format="html" keys="postgresql-connector"/>
<keydef href="http://haproxy.1wt.eu/" scope="external" format="html" keys="haproxy"/>
<keydef href="http://aws.amazon.com/s3/" scope="external" format="html" keys="amazon-s3"/>
<keydef href="https://console.aws.amazon.com/s3/home" scope="external" format="html" keys="amazon-s3-home"/>
<keydef href="http://aws.amazon.com/cli/" scope="external" format="html" keys="amazon-aws-cli"/>
<keydef href="http://s3tools.org/s3cmd" scope="external" format="html" keys="s3cmd"/>
<keydef href="http://stat-computing.org/dataexpo/2009/" scope="external" format="html" keys="dataexpo-2009"/>
<keydef href="http://stat-computing.org/dataexpo/2009/the-data.html" scope="external" format="html" keys="dataexpo-2009-the-data"/>
<keydef href="http://www.lzop.org/" scope="external" format="html" keys="lzop.org"/>
<!-- Links to Wikipedia pages for background on industry terminology. -->
<keydef href="https://en.wikipedia.org/wiki/Base64" scope="external" format="html" keys="base64">
<topicmeta><linktext>Base64 article on Wikipedia</linktext></topicmeta>
</keydef>
<keydef href="http://en.wikipedia.org/wiki/.htpasswd" scope="external" format="html" keys=".htpasswd"/>
<keydef href="http://en.wikipedia.org/wiki/Coordinated_Universal_Time" scope="external" format="html" keys="Coordinated_Universal_Time"/>
<keydef href="http://en.wikipedia.org/wiki/Fowler%E2%80%93Noll%E2%80%93Vo_hash_function" scope="external" format="html" keys="wiki_fnv"/>
<keydef href="http://en.wikipedia.org/wiki/Memoization" scope="external" format="html" keys="Memoization"/>
<keydef href="http://en.wikipedia.org/wiki/Standard_deviation" scope="external" format="html" keys="Standard_deviation"/>
<keydef href="http://en.wikipedia.org/wiki/Transport_Layer_Security" scope="external" format="html" keys="Transport_Layer_Security"/>
<keydef href="http://en.wikipedia.org/wiki/Variance" scope="external" format="html" keys="Variance"/>
<keydef href="https://en.wikipedia.org/wiki/Circular_shift" scope="external" format="html" keys="Circular_shift"/>
<keydef href="https://en.wikipedia.org/wiki/Double-precision_floating-point_format" scope="external" format="html" keys="Double-precision_floating-point_format"/>
<keydef href="https://en.wikipedia.org/wiki/E_(mathematical_constant" scope="external" format="html" keys="E_mathematical_constant"/>
<keydef href="https://en.wikipedia.org/wiki/Factorial" scope="external" format="html" keys="Factorial"/>
<keydef href="https://en.wikipedia.org/wiki/Hamming_weight" scope="external" format="html" keys="Hamming_weight"/>
<keydef href="https://en.wikipedia.org/wiki/Hash_join" scope="external" format="html" keys="Hash_join"/>
<keydef href="https://en.wikipedia.org/wiki/Logical_shift" scope="external" format="html" keys="Logical_shift"/>
<keydef href="https://en.wikipedia.org/wiki/Natural_logarithm" scope="external" format="html" keys="Natural_logarithm"/>
<keydef href="https://en.wikipedia.org/wiki/Single-precision_floating-point_format" scope="external" format="html" keys="Single-precision_floating-point_format"/>
<keydef href="https://en.wikipedia.org/wiki/Two%27s_complement" scope="external" format="html" keys="Twos_complement"/>
<keydef href="https://en.wikipedia.org/wiki/Universally_unique_identifier" scope="external" format="html" keys="Universally_unique_identifier"/>
<keydef href="https://en.wikipedia.org/wiki/MurmurHash" scope="external" format="html" keys="MurmurHash"/>
<!-- Originally links to external doc pages, turned into plain text for Apache Impala docs. -->
<keydef href="" scope="external" format="html" keys="admin_llama">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="setup_hdfs_caching">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_hag_cdh_other_ha">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_admin_performance">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_ig_hbase_installation">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_ig_hdfs_caching">
<topicmeta><linktext>the documentation for HDFS caching</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_ig_hive_installation">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_ig_hive_jdbc_install">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_ig_llama_installation">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_ig_parquet">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_ig_yarn_cluster_deploy">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_rn_fixed_in_55">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_rn_fixed_in_552">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_rn_fixed_in_560">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_sg_cdh5_hadoop_security">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_sg_component_kms">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_sg_hive_security">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cdh_sg_kerberos_prin_keytab_deploy">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_dg_logs">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_dg_service_monitoring">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_ig_install_gpl_extras">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="impala_hdfs_encryption">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_ig_install_impala">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_mc_client_config">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_mc_impala_service">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_mc_isilon_service">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_mc_managing_resources">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_mc_managing_roles">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_mc_resource_pools">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_mc_service_pools">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_mc_start_stop_service">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_mc_upgrading_cdh">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_mc_yarn_service">
<topicmeta><linktext>the YARN instructions for your cluster management tool</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_metrics_impala">
<topicmeta><linktext>the instructions for your cluster management tool</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cm_sg_openssl_jks"/>
<keydef href="" scope="external" format="html" keys="cm_sg_sentry_service">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cn_iu_lineage">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="cn_iu_service_audit">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="datamgmt_impala_lineage_log">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="impala">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="installation">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="pcm_impala">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="rg_vd">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="sg_authentication">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="sg_redaction">
<topicmeta><linktext>the documentation for your Apache Hadoop distribution</linktext></topicmeta>
</keydef>
<keydef href="" scope="external" format="html" keys="sg_hive_sql">
<topicmeta><linktext>the documentation for Apache Sentry</linktext></topicmeta>
</keydef>
<!-- Links to pages on Hive wiki. -->
<keydef href="https://cwiki.apache.org/confluence/display/Hive/AvroSerDe" scope="external" format="html" keys="AvroSerDe"/>
<keydef href="https://cwiki.apache.org/confluence/display/Hive/HBaseIntegration" scope="external" format="html" keys="HBaseIntegration"/>
<keydef href="https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-Keywords,Non-reservedKeywordsandReservedKeywords" scope="external" format="html" keys="hive_reserved_words"/>
<keydef href="https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO" scope="external" format="html" keys="hive_lzo"/>
<keydef href="https://cwiki.apache.org/confluence/display/Hive/LanguageManual+UDF" scope="external" format="html" keys="hive_udf"/>
<keydef href="https://cwiki.apache.org/confluence/display/Hive/StatsDev" scope="external" format="html" keys="StatsDev"/>
<!-- Pointers to blog posts. -->
<keydef href="http://blog.cloudera.com/blog/2012/03/hbase-hadoop-xceivers/" scope="external" format="html" keys="hbase-hadoop-xceivers"/>
<keydef href="http://blog.cloudera.com/blog/2013/07/how-hiveserver2-brings-security-and-concurrency-to-apache-hive/" scope="external" format="html" keys="how-hiveserver2-brings-security-and-concurrency-to-apache-hive"/>
<!-- Pointers to JIRA reports for various Impala releases. -->
<!-- Used in the "Fixed Issues" page. -->
<keydef keys="jira_list_280" href="https://issues.apache.org/jira/issues/?jql=type%20%3D%20bug%20and%20project%20%3D%20IMPALA%20AND%20resolution%20%3D%20fixed%20AND%20affectedVersion%20!%3D%20%22Impala%202.8.0%22%20AND%20fixVersion%20%3D%20%22Impala%202.8.0%22%20and%20not%20labels%20%3D%20broken-build%20order%20by%20priority%20desc" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_270" href="https://issues.apache.org/jira/issues/?jql=%20type%20%3D%20bug%20and%20project%20%3D%20IMPALA%20AND%20resolution%20%3D%20fixed%20AND%20affectedVersion%20!%3D%20%22Impala%202.7.0%22%20AND%20fixVersion%20%3D%20%22Impala%202.7.0%22%20and%20not%20labels%20%3D%20broken-build%20order%20by%20priority%20desc" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_263" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_262" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_260" href="https://issues.apache.org/jira/issues/?jql=%20type%20%3D%20bug%20and%20project%20%3D%20IMPALA%20AND%20resolution%20%3D%20fixed%20AND%20affectedVersion%20!%3D%20%22Impala%202.6.0%22%20AND%20fixVersion%20%3D%20%22Impala%202.6.0%22%20and%20not%20labels%20%3D%20broken-build%20order%20by%20priority%20desc" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_254" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_252" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_251" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_250" href="https://issues.apache.org/jira/issues/?jql=%20type%20%3D%20bug%20and%20project%20%3D%20IMPALA%20AND%20resolution%20%3D%20fixed%20AND%20affectedVersion%20!%3D%20%22Impala%202.5.0%22%20AND%20fixVersion%20%3D%20%22Impala%202.5.0%22%20and%20not%20labels%20%3D%20broken-build%20order%20by%20priority%20desc" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_234" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_232" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_230" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_2210" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_229" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_228" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_227" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_225" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_223" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_221" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_220" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+2.2%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_217" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_216" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_215" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_214" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_213" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_212" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+2.1.2%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_211" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+2.1.1%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_210" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+2.1%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_205" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+2.0.5%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_204" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+2.0.4%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_203" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+2.0.3%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_202" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+2.0.2%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_201" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+2.0.1%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_200" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+2.0%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_144" href="" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_142" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+1.4.2%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_141" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+1.4.1%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_140" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+1.4%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_131" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+1.3.1%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_130" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+1.3%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_124" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+1.2.4%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_122" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+1.2.2%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_121" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+1.2.1%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_120" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+1.2%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_111" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+1.1.1%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_110" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+1.1%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_101" href="https://issues.apache.org/jira/issues/?jql=project%3Dimpala+and+fixVersion%3D%22Impala+1.0.1%22+and+resolution%3D%22Fixed%22" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<keydef keys="jira_list_100" href="https://issues.apache.org/jira/issues/?jql=project+%3D+impala+AND+resolution+%3D+Fixed+AND+fixVersion+%3D+%22Impala+1.0%22+ORDER+BY+key+ASC%2C+assignee+ASC%2C+priority+DESC" scope="external" format="html">
<topicmeta><linktext>this report in the Impala JIRA tracker</linktext></topicmeta>
</keydef>
<!-- Pointers to external Impala JIRA URLs.
All the way up to IMPALA-9999, so even future JIRAs are
easy to link without further fiddling.
Might need to rewrite all these later for Apache URLs.
-->
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1" scope="external" format="html" keys="IMPALA-1"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2" scope="external" format="html" keys="IMPALA-2"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3" scope="external" format="html" keys="IMPALA-3"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4" scope="external" format="html" keys="IMPALA-4"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5" scope="external" format="html" keys="IMPALA-5"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6" scope="external" format="html" keys="IMPALA-6"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7" scope="external" format="html" keys="IMPALA-7"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8" scope="external" format="html" keys="IMPALA-8"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9" scope="external" format="html" keys="IMPALA-9"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-10" scope="external" format="html" keys="IMPALA-10"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-11" scope="external" format="html" keys="IMPALA-11"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-12" scope="external" format="html" keys="IMPALA-12"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-13" scope="external" format="html" keys="IMPALA-13"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-14" scope="external" format="html" keys="IMPALA-14"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-15" scope="external" format="html" keys="IMPALA-15"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-16" scope="external" format="html" keys="IMPALA-16"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-17" scope="external" format="html" keys="IMPALA-17"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-18" scope="external" format="html" keys="IMPALA-18"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-19" scope="external" format="html" keys="IMPALA-19"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-20" scope="external" format="html" keys="IMPALA-20"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-21" scope="external" format="html" keys="IMPALA-21"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-22" scope="external" format="html" keys="IMPALA-22"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-23" scope="external" format="html" keys="IMPALA-23"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-24" scope="external" format="html" keys="IMPALA-24"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-25" scope="external" format="html" keys="IMPALA-25"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-26" scope="external" format="html" keys="IMPALA-26"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-27" scope="external" format="html" keys="IMPALA-27"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-28" scope="external" format="html" keys="IMPALA-28"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-29" scope="external" format="html" keys="IMPALA-29"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-30" scope="external" format="html" keys="IMPALA-30"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-31" scope="external" format="html" keys="IMPALA-31"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-32" scope="external" format="html" keys="IMPALA-32"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-33" scope="external" format="html" keys="IMPALA-33"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-34" scope="external" format="html" keys="IMPALA-34"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-35" scope="external" format="html" keys="IMPALA-35"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-36" scope="external" format="html" keys="IMPALA-36"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-37" scope="external" format="html" keys="IMPALA-37"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-38" scope="external" format="html" keys="IMPALA-38"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-39" scope="external" format="html" keys="IMPALA-39"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-40" scope="external" format="html" keys="IMPALA-40"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-41" scope="external" format="html" keys="IMPALA-41"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-42" scope="external" format="html" keys="IMPALA-42"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-43" scope="external" format="html" keys="IMPALA-43"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-44" scope="external" format="html" keys="IMPALA-44"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-45" scope="external" format="html" keys="IMPALA-45"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-46" scope="external" format="html" keys="IMPALA-46"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-47" scope="external" format="html" keys="IMPALA-47"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-48" scope="external" format="html" keys="IMPALA-48"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-49" scope="external" format="html" keys="IMPALA-49"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-50" scope="external" format="html" keys="IMPALA-50"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-51" scope="external" format="html" keys="IMPALA-51"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-52" scope="external" format="html" keys="IMPALA-52"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-53" scope="external" format="html" keys="IMPALA-53"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-54" scope="external" format="html" keys="IMPALA-54"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-55" scope="external" format="html" keys="IMPALA-55"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-56" scope="external" format="html" keys="IMPALA-56"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-57" scope="external" format="html" keys="IMPALA-57"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-58" scope="external" format="html" keys="IMPALA-58"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-59" scope="external" format="html" keys="IMPALA-59"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-60" scope="external" format="html" keys="IMPALA-60"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-61" scope="external" format="html" keys="IMPALA-61"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-62" scope="external" format="html" keys="IMPALA-62"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-63" scope="external" format="html" keys="IMPALA-63"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-64" scope="external" format="html" keys="IMPALA-64"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-65" scope="external" format="html" keys="IMPALA-65"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-66" scope="external" format="html" keys="IMPALA-66"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-67" scope="external" format="html" keys="IMPALA-67"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-68" scope="external" format="html" keys="IMPALA-68"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-69" scope="external" format="html" keys="IMPALA-69"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-70" scope="external" format="html" keys="IMPALA-70"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-71" scope="external" format="html" keys="IMPALA-71"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-72" scope="external" format="html" keys="IMPALA-72"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-73" scope="external" format="html" keys="IMPALA-73"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-74" scope="external" format="html" keys="IMPALA-74"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-75" scope="external" format="html" keys="IMPALA-75"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-76" scope="external" format="html" keys="IMPALA-76"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-77" scope="external" format="html" keys="IMPALA-77"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-78" scope="external" format="html" keys="IMPALA-78"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-79" scope="external" format="html" keys="IMPALA-79"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-80" scope="external" format="html" keys="IMPALA-80"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-81" scope="external" format="html" keys="IMPALA-81"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-82" scope="external" format="html" keys="IMPALA-82"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-83" scope="external" format="html" keys="IMPALA-83"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-84" scope="external" format="html" keys="IMPALA-84"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-85" scope="external" format="html" keys="IMPALA-85"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-86" scope="external" format="html" keys="IMPALA-86"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-87" scope="external" format="html" keys="IMPALA-87"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-88" scope="external" format="html" keys="IMPALA-88"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-89" scope="external" format="html" keys="IMPALA-89"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-90" scope="external" format="html" keys="IMPALA-90"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-91" scope="external" format="html" keys="IMPALA-91"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-92" scope="external" format="html" keys="IMPALA-92"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-93" scope="external" format="html" keys="IMPALA-93"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-94" scope="external" format="html" keys="IMPALA-94"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-95" scope="external" format="html" keys="IMPALA-95"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-96" scope="external" format="html" keys="IMPALA-96"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-97" scope="external" format="html" keys="IMPALA-97"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-98" scope="external" format="html" keys="IMPALA-98"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-99" scope="external" format="html" keys="IMPALA-99"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-100" scope="external" format="html" keys="IMPALA-100"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-101" scope="external" format="html" keys="IMPALA-101"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-102" scope="external" format="html" keys="IMPALA-102"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-103" scope="external" format="html" keys="IMPALA-103"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-104" scope="external" format="html" keys="IMPALA-104"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-105" scope="external" format="html" keys="IMPALA-105"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-106" scope="external" format="html" keys="IMPALA-106"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-107" scope="external" format="html" keys="IMPALA-107"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-108" scope="external" format="html" keys="IMPALA-108"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-109" scope="external" format="html" keys="IMPALA-109"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-110" scope="external" format="html" keys="IMPALA-110"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-111" scope="external" format="html" keys="IMPALA-111"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-112" scope="external" format="html" keys="IMPALA-112"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-113" scope="external" format="html" keys="IMPALA-113"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-114" scope="external" format="html" keys="IMPALA-114"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-115" scope="external" format="html" keys="IMPALA-115"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-116" scope="external" format="html" keys="IMPALA-116"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-117" scope="external" format="html" keys="IMPALA-117"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-118" scope="external" format="html" keys="IMPALA-118"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-119" scope="external" format="html" keys="IMPALA-119"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-120" scope="external" format="html" keys="IMPALA-120"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-121" scope="external" format="html" keys="IMPALA-121"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-122" scope="external" format="html" keys="IMPALA-122"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-123" scope="external" format="html" keys="IMPALA-123"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-124" scope="external" format="html" keys="IMPALA-124"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-125" scope="external" format="html" keys="IMPALA-125"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-126" scope="external" format="html" keys="IMPALA-126"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-127" scope="external" format="html" keys="IMPALA-127"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-128" scope="external" format="html" keys="IMPALA-128"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-129" scope="external" format="html" keys="IMPALA-129"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-130" scope="external" format="html" keys="IMPALA-130"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-131" scope="external" format="html" keys="IMPALA-131"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-132" scope="external" format="html" keys="IMPALA-132"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-133" scope="external" format="html" keys="IMPALA-133"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-134" scope="external" format="html" keys="IMPALA-134"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-135" scope="external" format="html" keys="IMPALA-135"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-136" scope="external" format="html" keys="IMPALA-136"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-137" scope="external" format="html" keys="IMPALA-137"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-138" scope="external" format="html" keys="IMPALA-138"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-139" scope="external" format="html" keys="IMPALA-139"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-140" scope="external" format="html" keys="IMPALA-140"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-141" scope="external" format="html" keys="IMPALA-141"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-142" scope="external" format="html" keys="IMPALA-142"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-143" scope="external" format="html" keys="IMPALA-143"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-144" scope="external" format="html" keys="IMPALA-144"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-145" scope="external" format="html" keys="IMPALA-145"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-146" scope="external" format="html" keys="IMPALA-146"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-147" scope="external" format="html" keys="IMPALA-147"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-148" scope="external" format="html" keys="IMPALA-148"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-149" scope="external" format="html" keys="IMPALA-149"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-150" scope="external" format="html" keys="IMPALA-150"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-151" scope="external" format="html" keys="IMPALA-151"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-152" scope="external" format="html" keys="IMPALA-152"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-153" scope="external" format="html" keys="IMPALA-153"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-154" scope="external" format="html" keys="IMPALA-154"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-155" scope="external" format="html" keys="IMPALA-155"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-156" scope="external" format="html" keys="IMPALA-156"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-157" scope="external" format="html" keys="IMPALA-157"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-158" scope="external" format="html" keys="IMPALA-158"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-159" scope="external" format="html" keys="IMPALA-159"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-160" scope="external" format="html" keys="IMPALA-160"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-161" scope="external" format="html" keys="IMPALA-161"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-162" scope="external" format="html" keys="IMPALA-162"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-163" scope="external" format="html" keys="IMPALA-163"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-164" scope="external" format="html" keys="IMPALA-164"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-165" scope="external" format="html" keys="IMPALA-165"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-166" scope="external" format="html" keys="IMPALA-166"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-167" scope="external" format="html" keys="IMPALA-167"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-168" scope="external" format="html" keys="IMPALA-168"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-169" scope="external" format="html" keys="IMPALA-169"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-170" scope="external" format="html" keys="IMPALA-170"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-171" scope="external" format="html" keys="IMPALA-171"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-172" scope="external" format="html" keys="IMPALA-172"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-173" scope="external" format="html" keys="IMPALA-173"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-174" scope="external" format="html" keys="IMPALA-174"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-175" scope="external" format="html" keys="IMPALA-175"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-176" scope="external" format="html" keys="IMPALA-176"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-177" scope="external" format="html" keys="IMPALA-177"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-178" scope="external" format="html" keys="IMPALA-178"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-179" scope="external" format="html" keys="IMPALA-179"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-180" scope="external" format="html" keys="IMPALA-180"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-181" scope="external" format="html" keys="IMPALA-181"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-182" scope="external" format="html" keys="IMPALA-182"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-183" scope="external" format="html" keys="IMPALA-183"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-184" scope="external" format="html" keys="IMPALA-184"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-185" scope="external" format="html" keys="IMPALA-185"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-186" scope="external" format="html" keys="IMPALA-186"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-187" scope="external" format="html" keys="IMPALA-187"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-188" scope="external" format="html" keys="IMPALA-188"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-189" scope="external" format="html" keys="IMPALA-189"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-190" scope="external" format="html" keys="IMPALA-190"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-191" scope="external" format="html" keys="IMPALA-191"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-192" scope="external" format="html" keys="IMPALA-192"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-193" scope="external" format="html" keys="IMPALA-193"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-194" scope="external" format="html" keys="IMPALA-194"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-195" scope="external" format="html" keys="IMPALA-195"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-196" scope="external" format="html" keys="IMPALA-196"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-197" scope="external" format="html" keys="IMPALA-197"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-198" scope="external" format="html" keys="IMPALA-198"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-199" scope="external" format="html" keys="IMPALA-199"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-200" scope="external" format="html" keys="IMPALA-200"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-201" scope="external" format="html" keys="IMPALA-201"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-202" scope="external" format="html" keys="IMPALA-202"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-203" scope="external" format="html" keys="IMPALA-203"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-204" scope="external" format="html" keys="IMPALA-204"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-205" scope="external" format="html" keys="IMPALA-205"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-206" scope="external" format="html" keys="IMPALA-206"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-207" scope="external" format="html" keys="IMPALA-207"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-208" scope="external" format="html" keys="IMPALA-208"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-209" scope="external" format="html" keys="IMPALA-209"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-210" scope="external" format="html" keys="IMPALA-210"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-211" scope="external" format="html" keys="IMPALA-211"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-212" scope="external" format="html" keys="IMPALA-212"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-213" scope="external" format="html" keys="IMPALA-213"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-214" scope="external" format="html" keys="IMPALA-214"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-215" scope="external" format="html" keys="IMPALA-215"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-216" scope="external" format="html" keys="IMPALA-216"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-217" scope="external" format="html" keys="IMPALA-217"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-218" scope="external" format="html" keys="IMPALA-218"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-219" scope="external" format="html" keys="IMPALA-219"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-220" scope="external" format="html" keys="IMPALA-220"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-221" scope="external" format="html" keys="IMPALA-221"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-222" scope="external" format="html" keys="IMPALA-222"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-223" scope="external" format="html" keys="IMPALA-223"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-224" scope="external" format="html" keys="IMPALA-224"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-225" scope="external" format="html" keys="IMPALA-225"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-226" scope="external" format="html" keys="IMPALA-226"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-227" scope="external" format="html" keys="IMPALA-227"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-228" scope="external" format="html" keys="IMPALA-228"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-229" scope="external" format="html" keys="IMPALA-229"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-230" scope="external" format="html" keys="IMPALA-230"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-231" scope="external" format="html" keys="IMPALA-231"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-232" scope="external" format="html" keys="IMPALA-232"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-233" scope="external" format="html" keys="IMPALA-233"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-234" scope="external" format="html" keys="IMPALA-234"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-235" scope="external" format="html" keys="IMPALA-235"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-236" scope="external" format="html" keys="IMPALA-236"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-237" scope="external" format="html" keys="IMPALA-237"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-238" scope="external" format="html" keys="IMPALA-238"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-239" scope="external" format="html" keys="IMPALA-239"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-240" scope="external" format="html" keys="IMPALA-240"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-241" scope="external" format="html" keys="IMPALA-241"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-242" scope="external" format="html" keys="IMPALA-242"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-243" scope="external" format="html" keys="IMPALA-243"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-244" scope="external" format="html" keys="IMPALA-244"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-245" scope="external" format="html" keys="IMPALA-245"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-246" scope="external" format="html" keys="IMPALA-246"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-247" scope="external" format="html" keys="IMPALA-247"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-248" scope="external" format="html" keys="IMPALA-248"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-249" scope="external" format="html" keys="IMPALA-249"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-250" scope="external" format="html" keys="IMPALA-250"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-251" scope="external" format="html" keys="IMPALA-251"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-252" scope="external" format="html" keys="IMPALA-252"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-253" scope="external" format="html" keys="IMPALA-253"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-254" scope="external" format="html" keys="IMPALA-254"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-255" scope="external" format="html" keys="IMPALA-255"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-256" scope="external" format="html" keys="IMPALA-256"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-257" scope="external" format="html" keys="IMPALA-257"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-258" scope="external" format="html" keys="IMPALA-258"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-259" scope="external" format="html" keys="IMPALA-259"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-260" scope="external" format="html" keys="IMPALA-260"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-261" scope="external" format="html" keys="IMPALA-261"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-262" scope="external" format="html" keys="IMPALA-262"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-263" scope="external" format="html" keys="IMPALA-263"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-264" scope="external" format="html" keys="IMPALA-264"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-265" scope="external" format="html" keys="IMPALA-265"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-266" scope="external" format="html" keys="IMPALA-266"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-267" scope="external" format="html" keys="IMPALA-267"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-268" scope="external" format="html" keys="IMPALA-268"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-269" scope="external" format="html" keys="IMPALA-269"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-270" scope="external" format="html" keys="IMPALA-270"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-271" scope="external" format="html" keys="IMPALA-271"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-272" scope="external" format="html" keys="IMPALA-272"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-273" scope="external" format="html" keys="IMPALA-273"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-274" scope="external" format="html" keys="IMPALA-274"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-275" scope="external" format="html" keys="IMPALA-275"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-276" scope="external" format="html" keys="IMPALA-276"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-277" scope="external" format="html" keys="IMPALA-277"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-278" scope="external" format="html" keys="IMPALA-278"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-279" scope="external" format="html" keys="IMPALA-279"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-280" scope="external" format="html" keys="IMPALA-280"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-281" scope="external" format="html" keys="IMPALA-281"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-282" scope="external" format="html" keys="IMPALA-282"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-283" scope="external" format="html" keys="IMPALA-283"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-284" scope="external" format="html" keys="IMPALA-284"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-285" scope="external" format="html" keys="IMPALA-285"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-286" scope="external" format="html" keys="IMPALA-286"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-287" scope="external" format="html" keys="IMPALA-287"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-288" scope="external" format="html" keys="IMPALA-288"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-289" scope="external" format="html" keys="IMPALA-289"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-290" scope="external" format="html" keys="IMPALA-290"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-291" scope="external" format="html" keys="IMPALA-291"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-292" scope="external" format="html" keys="IMPALA-292"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-293" scope="external" format="html" keys="IMPALA-293"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-294" scope="external" format="html" keys="IMPALA-294"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-295" scope="external" format="html" keys="IMPALA-295"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-296" scope="external" format="html" keys="IMPALA-296"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-297" scope="external" format="html" keys="IMPALA-297"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-298" scope="external" format="html" keys="IMPALA-298"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-299" scope="external" format="html" keys="IMPALA-299"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-300" scope="external" format="html" keys="IMPALA-300"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-301" scope="external" format="html" keys="IMPALA-301"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-302" scope="external" format="html" keys="IMPALA-302"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-303" scope="external" format="html" keys="IMPALA-303"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-304" scope="external" format="html" keys="IMPALA-304"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-305" scope="external" format="html" keys="IMPALA-305"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-306" scope="external" format="html" keys="IMPALA-306"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-307" scope="external" format="html" keys="IMPALA-307"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-308" scope="external" format="html" keys="IMPALA-308"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-309" scope="external" format="html" keys="IMPALA-309"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-310" scope="external" format="html" keys="IMPALA-310"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-311" scope="external" format="html" keys="IMPALA-311"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-312" scope="external" format="html" keys="IMPALA-312"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-313" scope="external" format="html" keys="IMPALA-313"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-314" scope="external" format="html" keys="IMPALA-314"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-315" scope="external" format="html" keys="IMPALA-315"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-316" scope="external" format="html" keys="IMPALA-316"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-317" scope="external" format="html" keys="IMPALA-317"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-318" scope="external" format="html" keys="IMPALA-318"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-319" scope="external" format="html" keys="IMPALA-319"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-320" scope="external" format="html" keys="IMPALA-320"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-321" scope="external" format="html" keys="IMPALA-321"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-322" scope="external" format="html" keys="IMPALA-322"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-323" scope="external" format="html" keys="IMPALA-323"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-324" scope="external" format="html" keys="IMPALA-324"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-325" scope="external" format="html" keys="IMPALA-325"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-326" scope="external" format="html" keys="IMPALA-326"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-327" scope="external" format="html" keys="IMPALA-327"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-328" scope="external" format="html" keys="IMPALA-328"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-329" scope="external" format="html" keys="IMPALA-329"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-330" scope="external" format="html" keys="IMPALA-330"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-331" scope="external" format="html" keys="IMPALA-331"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-332" scope="external" format="html" keys="IMPALA-332"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-333" scope="external" format="html" keys="IMPALA-333"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-334" scope="external" format="html" keys="IMPALA-334"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-335" scope="external" format="html" keys="IMPALA-335"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-336" scope="external" format="html" keys="IMPALA-336"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-337" scope="external" format="html" keys="IMPALA-337"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-338" scope="external" format="html" keys="IMPALA-338"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-339" scope="external" format="html" keys="IMPALA-339"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-340" scope="external" format="html" keys="IMPALA-340"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-341" scope="external" format="html" keys="IMPALA-341"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-342" scope="external" format="html" keys="IMPALA-342"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-343" scope="external" format="html" keys="IMPALA-343"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-344" scope="external" format="html" keys="IMPALA-344"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-345" scope="external" format="html" keys="IMPALA-345"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-346" scope="external" format="html" keys="IMPALA-346"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-347" scope="external" format="html" keys="IMPALA-347"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-348" scope="external" format="html" keys="IMPALA-348"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-349" scope="external" format="html" keys="IMPALA-349"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-350" scope="external" format="html" keys="IMPALA-350"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-351" scope="external" format="html" keys="IMPALA-351"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-352" scope="external" format="html" keys="IMPALA-352"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-353" scope="external" format="html" keys="IMPALA-353"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-354" scope="external" format="html" keys="IMPALA-354"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-355" scope="external" format="html" keys="IMPALA-355"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-356" scope="external" format="html" keys="IMPALA-356"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-357" scope="external" format="html" keys="IMPALA-357"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-358" scope="external" format="html" keys="IMPALA-358"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-359" scope="external" format="html" keys="IMPALA-359"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-360" scope="external" format="html" keys="IMPALA-360"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-361" scope="external" format="html" keys="IMPALA-361"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-362" scope="external" format="html" keys="IMPALA-362"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-363" scope="external" format="html" keys="IMPALA-363"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-364" scope="external" format="html" keys="IMPALA-364"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-365" scope="external" format="html" keys="IMPALA-365"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-366" scope="external" format="html" keys="IMPALA-366"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-367" scope="external" format="html" keys="IMPALA-367"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-368" scope="external" format="html" keys="IMPALA-368"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-369" scope="external" format="html" keys="IMPALA-369"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-370" scope="external" format="html" keys="IMPALA-370"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-371" scope="external" format="html" keys="IMPALA-371"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-372" scope="external" format="html" keys="IMPALA-372"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-373" scope="external" format="html" keys="IMPALA-373"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-374" scope="external" format="html" keys="IMPALA-374"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-375" scope="external" format="html" keys="IMPALA-375"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-376" scope="external" format="html" keys="IMPALA-376"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-377" scope="external" format="html" keys="IMPALA-377"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-378" scope="external" format="html" keys="IMPALA-378"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-379" scope="external" format="html" keys="IMPALA-379"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-380" scope="external" format="html" keys="IMPALA-380"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-381" scope="external" format="html" keys="IMPALA-381"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-382" scope="external" format="html" keys="IMPALA-382"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-383" scope="external" format="html" keys="IMPALA-383"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-384" scope="external" format="html" keys="IMPALA-384"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-385" scope="external" format="html" keys="IMPALA-385"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-386" scope="external" format="html" keys="IMPALA-386"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-387" scope="external" format="html" keys="IMPALA-387"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-388" scope="external" format="html" keys="IMPALA-388"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-389" scope="external" format="html" keys="IMPALA-389"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-390" scope="external" format="html" keys="IMPALA-390"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-391" scope="external" format="html" keys="IMPALA-391"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-392" scope="external" format="html" keys="IMPALA-392"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-393" scope="external" format="html" keys="IMPALA-393"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-394" scope="external" format="html" keys="IMPALA-394"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-395" scope="external" format="html" keys="IMPALA-395"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-396" scope="external" format="html" keys="IMPALA-396"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-397" scope="external" format="html" keys="IMPALA-397"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-398" scope="external" format="html" keys="IMPALA-398"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-399" scope="external" format="html" keys="IMPALA-399"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-400" scope="external" format="html" keys="IMPALA-400"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-401" scope="external" format="html" keys="IMPALA-401"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-402" scope="external" format="html" keys="IMPALA-402"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-403" scope="external" format="html" keys="IMPALA-403"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-404" scope="external" format="html" keys="IMPALA-404"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-405" scope="external" format="html" keys="IMPALA-405"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-406" scope="external" format="html" keys="IMPALA-406"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-407" scope="external" format="html" keys="IMPALA-407"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-408" scope="external" format="html" keys="IMPALA-408"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-409" scope="external" format="html" keys="IMPALA-409"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-410" scope="external" format="html" keys="IMPALA-410"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-411" scope="external" format="html" keys="IMPALA-411"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-412" scope="external" format="html" keys="IMPALA-412"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-413" scope="external" format="html" keys="IMPALA-413"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-414" scope="external" format="html" keys="IMPALA-414"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-415" scope="external" format="html" keys="IMPALA-415"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-416" scope="external" format="html" keys="IMPALA-416"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-417" scope="external" format="html" keys="IMPALA-417"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-418" scope="external" format="html" keys="IMPALA-418"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-419" scope="external" format="html" keys="IMPALA-419"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-420" scope="external" format="html" keys="IMPALA-420"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-421" scope="external" format="html" keys="IMPALA-421"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-422" scope="external" format="html" keys="IMPALA-422"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-423" scope="external" format="html" keys="IMPALA-423"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-424" scope="external" format="html" keys="IMPALA-424"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-425" scope="external" format="html" keys="IMPALA-425"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-426" scope="external" format="html" keys="IMPALA-426"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-427" scope="external" format="html" keys="IMPALA-427"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-428" scope="external" format="html" keys="IMPALA-428"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-429" scope="external" format="html" keys="IMPALA-429"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-430" scope="external" format="html" keys="IMPALA-430"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-431" scope="external" format="html" keys="IMPALA-431"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-432" scope="external" format="html" keys="IMPALA-432"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-433" scope="external" format="html" keys="IMPALA-433"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-434" scope="external" format="html" keys="IMPALA-434"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-435" scope="external" format="html" keys="IMPALA-435"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-436" scope="external" format="html" keys="IMPALA-436"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-437" scope="external" format="html" keys="IMPALA-437"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-438" scope="external" format="html" keys="IMPALA-438"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-439" scope="external" format="html" keys="IMPALA-439"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-440" scope="external" format="html" keys="IMPALA-440"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-441" scope="external" format="html" keys="IMPALA-441"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-442" scope="external" format="html" keys="IMPALA-442"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-443" scope="external" format="html" keys="IMPALA-443"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-444" scope="external" format="html" keys="IMPALA-444"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-445" scope="external" format="html" keys="IMPALA-445"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-446" scope="external" format="html" keys="IMPALA-446"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-447" scope="external" format="html" keys="IMPALA-447"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-448" scope="external" format="html" keys="IMPALA-448"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-449" scope="external" format="html" keys="IMPALA-449"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-450" scope="external" format="html" keys="IMPALA-450"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-451" scope="external" format="html" keys="IMPALA-451"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-452" scope="external" format="html" keys="IMPALA-452"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-453" scope="external" format="html" keys="IMPALA-453"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-454" scope="external" format="html" keys="IMPALA-454"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-455" scope="external" format="html" keys="IMPALA-455"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-456" scope="external" format="html" keys="IMPALA-456"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-457" scope="external" format="html" keys="IMPALA-457"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-458" scope="external" format="html" keys="IMPALA-458"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-459" scope="external" format="html" keys="IMPALA-459"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-460" scope="external" format="html" keys="IMPALA-460"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-461" scope="external" format="html" keys="IMPALA-461"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-462" scope="external" format="html" keys="IMPALA-462"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-463" scope="external" format="html" keys="IMPALA-463"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-464" scope="external" format="html" keys="IMPALA-464"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-465" scope="external" format="html" keys="IMPALA-465"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-466" scope="external" format="html" keys="IMPALA-466"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-467" scope="external" format="html" keys="IMPALA-467"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-468" scope="external" format="html" keys="IMPALA-468"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-469" scope="external" format="html" keys="IMPALA-469"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-470" scope="external" format="html" keys="IMPALA-470"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-471" scope="external" format="html" keys="IMPALA-471"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-472" scope="external" format="html" keys="IMPALA-472"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-473" scope="external" format="html" keys="IMPALA-473"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-474" scope="external" format="html" keys="IMPALA-474"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-475" scope="external" format="html" keys="IMPALA-475"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-476" scope="external" format="html" keys="IMPALA-476"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-477" scope="external" format="html" keys="IMPALA-477"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-478" scope="external" format="html" keys="IMPALA-478"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-479" scope="external" format="html" keys="IMPALA-479"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-480" scope="external" format="html" keys="IMPALA-480"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-481" scope="external" format="html" keys="IMPALA-481"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-482" scope="external" format="html" keys="IMPALA-482"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-483" scope="external" format="html" keys="IMPALA-483"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-484" scope="external" format="html" keys="IMPALA-484"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-485" scope="external" format="html" keys="IMPALA-485"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-486" scope="external" format="html" keys="IMPALA-486"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-487" scope="external" format="html" keys="IMPALA-487"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-488" scope="external" format="html" keys="IMPALA-488"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-489" scope="external" format="html" keys="IMPALA-489"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-490" scope="external" format="html" keys="IMPALA-490"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-491" scope="external" format="html" keys="IMPALA-491"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-492" scope="external" format="html" keys="IMPALA-492"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-493" scope="external" format="html" keys="IMPALA-493"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-494" scope="external" format="html" keys="IMPALA-494"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-495" scope="external" format="html" keys="IMPALA-495"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-496" scope="external" format="html" keys="IMPALA-496"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-497" scope="external" format="html" keys="IMPALA-497"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-498" scope="external" format="html" keys="IMPALA-498"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-499" scope="external" format="html" keys="IMPALA-499"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-500" scope="external" format="html" keys="IMPALA-500"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-501" scope="external" format="html" keys="IMPALA-501"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-502" scope="external" format="html" keys="IMPALA-502"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-503" scope="external" format="html" keys="IMPALA-503"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-504" scope="external" format="html" keys="IMPALA-504"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-505" scope="external" format="html" keys="IMPALA-505"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-506" scope="external" format="html" keys="IMPALA-506"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-507" scope="external" format="html" keys="IMPALA-507"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-508" scope="external" format="html" keys="IMPALA-508"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-509" scope="external" format="html" keys="IMPALA-509"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-510" scope="external" format="html" keys="IMPALA-510"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-511" scope="external" format="html" keys="IMPALA-511"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-512" scope="external" format="html" keys="IMPALA-512"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-513" scope="external" format="html" keys="IMPALA-513"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-514" scope="external" format="html" keys="IMPALA-514"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-515" scope="external" format="html" keys="IMPALA-515"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-516" scope="external" format="html" keys="IMPALA-516"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-517" scope="external" format="html" keys="IMPALA-517"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-518" scope="external" format="html" keys="IMPALA-518"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-519" scope="external" format="html" keys="IMPALA-519"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-520" scope="external" format="html" keys="IMPALA-520"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-521" scope="external" format="html" keys="IMPALA-521"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-522" scope="external" format="html" keys="IMPALA-522"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-523" scope="external" format="html" keys="IMPALA-523"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-524" scope="external" format="html" keys="IMPALA-524"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-525" scope="external" format="html" keys="IMPALA-525"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-526" scope="external" format="html" keys="IMPALA-526"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-527" scope="external" format="html" keys="IMPALA-527"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-528" scope="external" format="html" keys="IMPALA-528"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-529" scope="external" format="html" keys="IMPALA-529"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-530" scope="external" format="html" keys="IMPALA-530"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-531" scope="external" format="html" keys="IMPALA-531"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-532" scope="external" format="html" keys="IMPALA-532"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-533" scope="external" format="html" keys="IMPALA-533"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-534" scope="external" format="html" keys="IMPALA-534"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-535" scope="external" format="html" keys="IMPALA-535"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-536" scope="external" format="html" keys="IMPALA-536"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-537" scope="external" format="html" keys="IMPALA-537"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-538" scope="external" format="html" keys="IMPALA-538"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-539" scope="external" format="html" keys="IMPALA-539"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-540" scope="external" format="html" keys="IMPALA-540"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-541" scope="external" format="html" keys="IMPALA-541"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-542" scope="external" format="html" keys="IMPALA-542"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-543" scope="external" format="html" keys="IMPALA-543"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-544" scope="external" format="html" keys="IMPALA-544"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-545" scope="external" format="html" keys="IMPALA-545"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-546" scope="external" format="html" keys="IMPALA-546"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-547" scope="external" format="html" keys="IMPALA-547"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-548" scope="external" format="html" keys="IMPALA-548"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-549" scope="external" format="html" keys="IMPALA-549"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-550" scope="external" format="html" keys="IMPALA-550"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-551" scope="external" format="html" keys="IMPALA-551"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-552" scope="external" format="html" keys="IMPALA-552"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-553" scope="external" format="html" keys="IMPALA-553"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-554" scope="external" format="html" keys="IMPALA-554"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-555" scope="external" format="html" keys="IMPALA-555"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-556" scope="external" format="html" keys="IMPALA-556"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-557" scope="external" format="html" keys="IMPALA-557"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-558" scope="external" format="html" keys="IMPALA-558"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-559" scope="external" format="html" keys="IMPALA-559"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-560" scope="external" format="html" keys="IMPALA-560"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-561" scope="external" format="html" keys="IMPALA-561"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-562" scope="external" format="html" keys="IMPALA-562"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-563" scope="external" format="html" keys="IMPALA-563"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-564" scope="external" format="html" keys="IMPALA-564"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-565" scope="external" format="html" keys="IMPALA-565"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-566" scope="external" format="html" keys="IMPALA-566"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-567" scope="external" format="html" keys="IMPALA-567"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-568" scope="external" format="html" keys="IMPALA-568"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-569" scope="external" format="html" keys="IMPALA-569"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-570" scope="external" format="html" keys="IMPALA-570"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-571" scope="external" format="html" keys="IMPALA-571"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-572" scope="external" format="html" keys="IMPALA-572"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-573" scope="external" format="html" keys="IMPALA-573"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-574" scope="external" format="html" keys="IMPALA-574"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-575" scope="external" format="html" keys="IMPALA-575"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-576" scope="external" format="html" keys="IMPALA-576"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-577" scope="external" format="html" keys="IMPALA-577"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-578" scope="external" format="html" keys="IMPALA-578"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-579" scope="external" format="html" keys="IMPALA-579"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-580" scope="external" format="html" keys="IMPALA-580"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-581" scope="external" format="html" keys="IMPALA-581"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-582" scope="external" format="html" keys="IMPALA-582"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-583" scope="external" format="html" keys="IMPALA-583"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-584" scope="external" format="html" keys="IMPALA-584"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-585" scope="external" format="html" keys="IMPALA-585"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-586" scope="external" format="html" keys="IMPALA-586"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-587" scope="external" format="html" keys="IMPALA-587"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-588" scope="external" format="html" keys="IMPALA-588"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-589" scope="external" format="html" keys="IMPALA-589"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-590" scope="external" format="html" keys="IMPALA-590"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-591" scope="external" format="html" keys="IMPALA-591"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-592" scope="external" format="html" keys="IMPALA-592"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-593" scope="external" format="html" keys="IMPALA-593"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-594" scope="external" format="html" keys="IMPALA-594"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-595" scope="external" format="html" keys="IMPALA-595"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-596" scope="external" format="html" keys="IMPALA-596"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-597" scope="external" format="html" keys="IMPALA-597"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-598" scope="external" format="html" keys="IMPALA-598"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-599" scope="external" format="html" keys="IMPALA-599"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-600" scope="external" format="html" keys="IMPALA-600"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-601" scope="external" format="html" keys="IMPALA-601"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-602" scope="external" format="html" keys="IMPALA-602"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-603" scope="external" format="html" keys="IMPALA-603"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-604" scope="external" format="html" keys="IMPALA-604"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-605" scope="external" format="html" keys="IMPALA-605"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-606" scope="external" format="html" keys="IMPALA-606"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-607" scope="external" format="html" keys="IMPALA-607"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-608" scope="external" format="html" keys="IMPALA-608"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-609" scope="external" format="html" keys="IMPALA-609"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-610" scope="external" format="html" keys="IMPALA-610"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-611" scope="external" format="html" keys="IMPALA-611"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-612" scope="external" format="html" keys="IMPALA-612"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-613" scope="external" format="html" keys="IMPALA-613"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-614" scope="external" format="html" keys="IMPALA-614"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-615" scope="external" format="html" keys="IMPALA-615"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-616" scope="external" format="html" keys="IMPALA-616"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-617" scope="external" format="html" keys="IMPALA-617"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-618" scope="external" format="html" keys="IMPALA-618"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-619" scope="external" format="html" keys="IMPALA-619"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-620" scope="external" format="html" keys="IMPALA-620"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-621" scope="external" format="html" keys="IMPALA-621"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-622" scope="external" format="html" keys="IMPALA-622"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-623" scope="external" format="html" keys="IMPALA-623"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-624" scope="external" format="html" keys="IMPALA-624"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-625" scope="external" format="html" keys="IMPALA-625"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-626" scope="external" format="html" keys="IMPALA-626"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-627" scope="external" format="html" keys="IMPALA-627"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-628" scope="external" format="html" keys="IMPALA-628"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-629" scope="external" format="html" keys="IMPALA-629"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-630" scope="external" format="html" keys="IMPALA-630"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-631" scope="external" format="html" keys="IMPALA-631"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-632" scope="external" format="html" keys="IMPALA-632"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-633" scope="external" format="html" keys="IMPALA-633"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-634" scope="external" format="html" keys="IMPALA-634"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-635" scope="external" format="html" keys="IMPALA-635"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-636" scope="external" format="html" keys="IMPALA-636"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-637" scope="external" format="html" keys="IMPALA-637"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-638" scope="external" format="html" keys="IMPALA-638"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-639" scope="external" format="html" keys="IMPALA-639"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-640" scope="external" format="html" keys="IMPALA-640"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-641" scope="external" format="html" keys="IMPALA-641"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-642" scope="external" format="html" keys="IMPALA-642"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-643" scope="external" format="html" keys="IMPALA-643"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-644" scope="external" format="html" keys="IMPALA-644"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-645" scope="external" format="html" keys="IMPALA-645"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-646" scope="external" format="html" keys="IMPALA-646"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-647" scope="external" format="html" keys="IMPALA-647"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-648" scope="external" format="html" keys="IMPALA-648"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-649" scope="external" format="html" keys="IMPALA-649"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-650" scope="external" format="html" keys="IMPALA-650"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-651" scope="external" format="html" keys="IMPALA-651"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-652" scope="external" format="html" keys="IMPALA-652"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-653" scope="external" format="html" keys="IMPALA-653"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-654" scope="external" format="html" keys="IMPALA-654"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-655" scope="external" format="html" keys="IMPALA-655"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-656" scope="external" format="html" keys="IMPALA-656"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-657" scope="external" format="html" keys="IMPALA-657"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-658" scope="external" format="html" keys="IMPALA-658"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-659" scope="external" format="html" keys="IMPALA-659"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-660" scope="external" format="html" keys="IMPALA-660"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-661" scope="external" format="html" keys="IMPALA-661"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-662" scope="external" format="html" keys="IMPALA-662"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-663" scope="external" format="html" keys="IMPALA-663"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-664" scope="external" format="html" keys="IMPALA-664"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-665" scope="external" format="html" keys="IMPALA-665"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-666" scope="external" format="html" keys="IMPALA-666"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-667" scope="external" format="html" keys="IMPALA-667"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-668" scope="external" format="html" keys="IMPALA-668"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-669" scope="external" format="html" keys="IMPALA-669"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-670" scope="external" format="html" keys="IMPALA-670"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-671" scope="external" format="html" keys="IMPALA-671"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-672" scope="external" format="html" keys="IMPALA-672"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-673" scope="external" format="html" keys="IMPALA-673"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-674" scope="external" format="html" keys="IMPALA-674"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-675" scope="external" format="html" keys="IMPALA-675"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-676" scope="external" format="html" keys="IMPALA-676"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-677" scope="external" format="html" keys="IMPALA-677"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-678" scope="external" format="html" keys="IMPALA-678"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-679" scope="external" format="html" keys="IMPALA-679"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-680" scope="external" format="html" keys="IMPALA-680"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-681" scope="external" format="html" keys="IMPALA-681"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-682" scope="external" format="html" keys="IMPALA-682"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-683" scope="external" format="html" keys="IMPALA-683"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-684" scope="external" format="html" keys="IMPALA-684"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-685" scope="external" format="html" keys="IMPALA-685"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-686" scope="external" format="html" keys="IMPALA-686"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-687" scope="external" format="html" keys="IMPALA-687"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-688" scope="external" format="html" keys="IMPALA-688"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-689" scope="external" format="html" keys="IMPALA-689"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-690" scope="external" format="html" keys="IMPALA-690"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-691" scope="external" format="html" keys="IMPALA-691"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-692" scope="external" format="html" keys="IMPALA-692"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-693" scope="external" format="html" keys="IMPALA-693"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-694" scope="external" format="html" keys="IMPALA-694"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-695" scope="external" format="html" keys="IMPALA-695"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-696" scope="external" format="html" keys="IMPALA-696"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-697" scope="external" format="html" keys="IMPALA-697"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-698" scope="external" format="html" keys="IMPALA-698"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-699" scope="external" format="html" keys="IMPALA-699"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-700" scope="external" format="html" keys="IMPALA-700"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-701" scope="external" format="html" keys="IMPALA-701"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-702" scope="external" format="html" keys="IMPALA-702"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-703" scope="external" format="html" keys="IMPALA-703"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-704" scope="external" format="html" keys="IMPALA-704"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-705" scope="external" format="html" keys="IMPALA-705"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-706" scope="external" format="html" keys="IMPALA-706"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-707" scope="external" format="html" keys="IMPALA-707"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-708" scope="external" format="html" keys="IMPALA-708"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-709" scope="external" format="html" keys="IMPALA-709"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-710" scope="external" format="html" keys="IMPALA-710"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-711" scope="external" format="html" keys="IMPALA-711"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-712" scope="external" format="html" keys="IMPALA-712"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-713" scope="external" format="html" keys="IMPALA-713"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-714" scope="external" format="html" keys="IMPALA-714"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-715" scope="external" format="html" keys="IMPALA-715"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-716" scope="external" format="html" keys="IMPALA-716"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-717" scope="external" format="html" keys="IMPALA-717"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-718" scope="external" format="html" keys="IMPALA-718"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-719" scope="external" format="html" keys="IMPALA-719"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-720" scope="external" format="html" keys="IMPALA-720"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-721" scope="external" format="html" keys="IMPALA-721"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-722" scope="external" format="html" keys="IMPALA-722"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-723" scope="external" format="html" keys="IMPALA-723"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-724" scope="external" format="html" keys="IMPALA-724"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-725" scope="external" format="html" keys="IMPALA-725"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-726" scope="external" format="html" keys="IMPALA-726"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-727" scope="external" format="html" keys="IMPALA-727"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-728" scope="external" format="html" keys="IMPALA-728"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-729" scope="external" format="html" keys="IMPALA-729"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-730" scope="external" format="html" keys="IMPALA-730"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-731" scope="external" format="html" keys="IMPALA-731"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-732" scope="external" format="html" keys="IMPALA-732"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-733" scope="external" format="html" keys="IMPALA-733"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-734" scope="external" format="html" keys="IMPALA-734"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-735" scope="external" format="html" keys="IMPALA-735"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-736" scope="external" format="html" keys="IMPALA-736"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-737" scope="external" format="html" keys="IMPALA-737"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-738" scope="external" format="html" keys="IMPALA-738"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-739" scope="external" format="html" keys="IMPALA-739"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-740" scope="external" format="html" keys="IMPALA-740"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-741" scope="external" format="html" keys="IMPALA-741"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-742" scope="external" format="html" keys="IMPALA-742"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-743" scope="external" format="html" keys="IMPALA-743"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-744" scope="external" format="html" keys="IMPALA-744"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-745" scope="external" format="html" keys="IMPALA-745"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-746" scope="external" format="html" keys="IMPALA-746"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-747" scope="external" format="html" keys="IMPALA-747"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-748" scope="external" format="html" keys="IMPALA-748"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-749" scope="external" format="html" keys="IMPALA-749"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-750" scope="external" format="html" keys="IMPALA-750"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-751" scope="external" format="html" keys="IMPALA-751"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-752" scope="external" format="html" keys="IMPALA-752"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-753" scope="external" format="html" keys="IMPALA-753"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-754" scope="external" format="html" keys="IMPALA-754"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-755" scope="external" format="html" keys="IMPALA-755"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-756" scope="external" format="html" keys="IMPALA-756"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-757" scope="external" format="html" keys="IMPALA-757"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-758" scope="external" format="html" keys="IMPALA-758"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-759" scope="external" format="html" keys="IMPALA-759"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-760" scope="external" format="html" keys="IMPALA-760"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-761" scope="external" format="html" keys="IMPALA-761"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-762" scope="external" format="html" keys="IMPALA-762"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-763" scope="external" format="html" keys="IMPALA-763"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-764" scope="external" format="html" keys="IMPALA-764"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-765" scope="external" format="html" keys="IMPALA-765"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-766" scope="external" format="html" keys="IMPALA-766"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-767" scope="external" format="html" keys="IMPALA-767"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-768" scope="external" format="html" keys="IMPALA-768"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-769" scope="external" format="html" keys="IMPALA-769"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-770" scope="external" format="html" keys="IMPALA-770"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-771" scope="external" format="html" keys="IMPALA-771"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-772" scope="external" format="html" keys="IMPALA-772"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-773" scope="external" format="html" keys="IMPALA-773"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-774" scope="external" format="html" keys="IMPALA-774"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-775" scope="external" format="html" keys="IMPALA-775"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-776" scope="external" format="html" keys="IMPALA-776"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-777" scope="external" format="html" keys="IMPALA-777"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-778" scope="external" format="html" keys="IMPALA-778"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-779" scope="external" format="html" keys="IMPALA-779"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-780" scope="external" format="html" keys="IMPALA-780"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-781" scope="external" format="html" keys="IMPALA-781"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-782" scope="external" format="html" keys="IMPALA-782"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-783" scope="external" format="html" keys="IMPALA-783"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-784" scope="external" format="html" keys="IMPALA-784"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-785" scope="external" format="html" keys="IMPALA-785"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-786" scope="external" format="html" keys="IMPALA-786"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-787" scope="external" format="html" keys="IMPALA-787"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-788" scope="external" format="html" keys="IMPALA-788"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-789" scope="external" format="html" keys="IMPALA-789"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-790" scope="external" format="html" keys="IMPALA-790"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-791" scope="external" format="html" keys="IMPALA-791"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-792" scope="external" format="html" keys="IMPALA-792"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-793" scope="external" format="html" keys="IMPALA-793"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-794" scope="external" format="html" keys="IMPALA-794"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-795" scope="external" format="html" keys="IMPALA-795"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-796" scope="external" format="html" keys="IMPALA-796"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-797" scope="external" format="html" keys="IMPALA-797"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-798" scope="external" format="html" keys="IMPALA-798"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-799" scope="external" format="html" keys="IMPALA-799"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-800" scope="external" format="html" keys="IMPALA-800"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-801" scope="external" format="html" keys="IMPALA-801"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-802" scope="external" format="html" keys="IMPALA-802"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-803" scope="external" format="html" keys="IMPALA-803"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-804" scope="external" format="html" keys="IMPALA-804"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-805" scope="external" format="html" keys="IMPALA-805"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-806" scope="external" format="html" keys="IMPALA-806"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-807" scope="external" format="html" keys="IMPALA-807"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-808" scope="external" format="html" keys="IMPALA-808"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-809" scope="external" format="html" keys="IMPALA-809"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-810" scope="external" format="html" keys="IMPALA-810"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-811" scope="external" format="html" keys="IMPALA-811"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-812" scope="external" format="html" keys="IMPALA-812"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-813" scope="external" format="html" keys="IMPALA-813"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-814" scope="external" format="html" keys="IMPALA-814"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-815" scope="external" format="html" keys="IMPALA-815"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-816" scope="external" format="html" keys="IMPALA-816"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-817" scope="external" format="html" keys="IMPALA-817"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-818" scope="external" format="html" keys="IMPALA-818"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-819" scope="external" format="html" keys="IMPALA-819"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-820" scope="external" format="html" keys="IMPALA-820"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-821" scope="external" format="html" keys="IMPALA-821"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-822" scope="external" format="html" keys="IMPALA-822"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-823" scope="external" format="html" keys="IMPALA-823"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-824" scope="external" format="html" keys="IMPALA-824"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-825" scope="external" format="html" keys="IMPALA-825"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-826" scope="external" format="html" keys="IMPALA-826"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-827" scope="external" format="html" keys="IMPALA-827"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-828" scope="external" format="html" keys="IMPALA-828"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-829" scope="external" format="html" keys="IMPALA-829"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-830" scope="external" format="html" keys="IMPALA-830"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-831" scope="external" format="html" keys="IMPALA-831"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-832" scope="external" format="html" keys="IMPALA-832"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-833" scope="external" format="html" keys="IMPALA-833"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-834" scope="external" format="html" keys="IMPALA-834"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-835" scope="external" format="html" keys="IMPALA-835"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-836" scope="external" format="html" keys="IMPALA-836"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-837" scope="external" format="html" keys="IMPALA-837"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-838" scope="external" format="html" keys="IMPALA-838"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-839" scope="external" format="html" keys="IMPALA-839"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-840" scope="external" format="html" keys="IMPALA-840"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-841" scope="external" format="html" keys="IMPALA-841"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-842" scope="external" format="html" keys="IMPALA-842"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-843" scope="external" format="html" keys="IMPALA-843"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-844" scope="external" format="html" keys="IMPALA-844"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-845" scope="external" format="html" keys="IMPALA-845"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-846" scope="external" format="html" keys="IMPALA-846"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-847" scope="external" format="html" keys="IMPALA-847"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-848" scope="external" format="html" keys="IMPALA-848"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-849" scope="external" format="html" keys="IMPALA-849"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-850" scope="external" format="html" keys="IMPALA-850"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-851" scope="external" format="html" keys="IMPALA-851"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-852" scope="external" format="html" keys="IMPALA-852"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-853" scope="external" format="html" keys="IMPALA-853"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-854" scope="external" format="html" keys="IMPALA-854"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-855" scope="external" format="html" keys="IMPALA-855"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-856" scope="external" format="html" keys="IMPALA-856"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-857" scope="external" format="html" keys="IMPALA-857"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-858" scope="external" format="html" keys="IMPALA-858"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-859" scope="external" format="html" keys="IMPALA-859"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-860" scope="external" format="html" keys="IMPALA-860"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-861" scope="external" format="html" keys="IMPALA-861"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-862" scope="external" format="html" keys="IMPALA-862"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-863" scope="external" format="html" keys="IMPALA-863"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-864" scope="external" format="html" keys="IMPALA-864"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-865" scope="external" format="html" keys="IMPALA-865"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-866" scope="external" format="html" keys="IMPALA-866"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-867" scope="external" format="html" keys="IMPALA-867"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-868" scope="external" format="html" keys="IMPALA-868"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-869" scope="external" format="html" keys="IMPALA-869"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-870" scope="external" format="html" keys="IMPALA-870"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-871" scope="external" format="html" keys="IMPALA-871"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-872" scope="external" format="html" keys="IMPALA-872"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-873" scope="external" format="html" keys="IMPALA-873"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-874" scope="external" format="html" keys="IMPALA-874"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-875" scope="external" format="html" keys="IMPALA-875"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-876" scope="external" format="html" keys="IMPALA-876"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-877" scope="external" format="html" keys="IMPALA-877"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-878" scope="external" format="html" keys="IMPALA-878"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-879" scope="external" format="html" keys="IMPALA-879"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-880" scope="external" format="html" keys="IMPALA-880"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-881" scope="external" format="html" keys="IMPALA-881"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-882" scope="external" format="html" keys="IMPALA-882"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-883" scope="external" format="html" keys="IMPALA-883"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-884" scope="external" format="html" keys="IMPALA-884"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-885" scope="external" format="html" keys="IMPALA-885"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-886" scope="external" format="html" keys="IMPALA-886"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-887" scope="external" format="html" keys="IMPALA-887"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-888" scope="external" format="html" keys="IMPALA-888"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-889" scope="external" format="html" keys="IMPALA-889"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-890" scope="external" format="html" keys="IMPALA-890"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-891" scope="external" format="html" keys="IMPALA-891"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-892" scope="external" format="html" keys="IMPALA-892"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-893" scope="external" format="html" keys="IMPALA-893"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-894" scope="external" format="html" keys="IMPALA-894"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-895" scope="external" format="html" keys="IMPALA-895"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-896" scope="external" format="html" keys="IMPALA-896"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-897" scope="external" format="html" keys="IMPALA-897"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-898" scope="external" format="html" keys="IMPALA-898"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-899" scope="external" format="html" keys="IMPALA-899"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-900" scope="external" format="html" keys="IMPALA-900"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-901" scope="external" format="html" keys="IMPALA-901"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-902" scope="external" format="html" keys="IMPALA-902"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-903" scope="external" format="html" keys="IMPALA-903"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-904" scope="external" format="html" keys="IMPALA-904"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-905" scope="external" format="html" keys="IMPALA-905"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-906" scope="external" format="html" keys="IMPALA-906"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-907" scope="external" format="html" keys="IMPALA-907"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-908" scope="external" format="html" keys="IMPALA-908"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-909" scope="external" format="html" keys="IMPALA-909"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-910" scope="external" format="html" keys="IMPALA-910"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-911" scope="external" format="html" keys="IMPALA-911"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-912" scope="external" format="html" keys="IMPALA-912"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-913" scope="external" format="html" keys="IMPALA-913"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-914" scope="external" format="html" keys="IMPALA-914"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-915" scope="external" format="html" keys="IMPALA-915"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-916" scope="external" format="html" keys="IMPALA-916"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-917" scope="external" format="html" keys="IMPALA-917"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-918" scope="external" format="html" keys="IMPALA-918"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-919" scope="external" format="html" keys="IMPALA-919"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-920" scope="external" format="html" keys="IMPALA-920"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-921" scope="external" format="html" keys="IMPALA-921"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-922" scope="external" format="html" keys="IMPALA-922"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-923" scope="external" format="html" keys="IMPALA-923"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-924" scope="external" format="html" keys="IMPALA-924"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-925" scope="external" format="html" keys="IMPALA-925"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-926" scope="external" format="html" keys="IMPALA-926"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-927" scope="external" format="html" keys="IMPALA-927"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-928" scope="external" format="html" keys="IMPALA-928"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-929" scope="external" format="html" keys="IMPALA-929"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-930" scope="external" format="html" keys="IMPALA-930"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-931" scope="external" format="html" keys="IMPALA-931"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-932" scope="external" format="html" keys="IMPALA-932"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-933" scope="external" format="html" keys="IMPALA-933"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-934" scope="external" format="html" keys="IMPALA-934"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-935" scope="external" format="html" keys="IMPALA-935"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-936" scope="external" format="html" keys="IMPALA-936"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-937" scope="external" format="html" keys="IMPALA-937"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-938" scope="external" format="html" keys="IMPALA-938"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-939" scope="external" format="html" keys="IMPALA-939"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-940" scope="external" format="html" keys="IMPALA-940"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-941" scope="external" format="html" keys="IMPALA-941"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-942" scope="external" format="html" keys="IMPALA-942"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-943" scope="external" format="html" keys="IMPALA-943"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-944" scope="external" format="html" keys="IMPALA-944"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-945" scope="external" format="html" keys="IMPALA-945"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-946" scope="external" format="html" keys="IMPALA-946"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-947" scope="external" format="html" keys="IMPALA-947"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-948" scope="external" format="html" keys="IMPALA-948"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-949" scope="external" format="html" keys="IMPALA-949"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-950" scope="external" format="html" keys="IMPALA-950"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-951" scope="external" format="html" keys="IMPALA-951"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-952" scope="external" format="html" keys="IMPALA-952"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-953" scope="external" format="html" keys="IMPALA-953"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-954" scope="external" format="html" keys="IMPALA-954"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-955" scope="external" format="html" keys="IMPALA-955"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-956" scope="external" format="html" keys="IMPALA-956"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-957" scope="external" format="html" keys="IMPALA-957"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-958" scope="external" format="html" keys="IMPALA-958"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-959" scope="external" format="html" keys="IMPALA-959"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-960" scope="external" format="html" keys="IMPALA-960"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-961" scope="external" format="html" keys="IMPALA-961"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-962" scope="external" format="html" keys="IMPALA-962"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-963" scope="external" format="html" keys="IMPALA-963"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-964" scope="external" format="html" keys="IMPALA-964"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-965" scope="external" format="html" keys="IMPALA-965"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-966" scope="external" format="html" keys="IMPALA-966"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-967" scope="external" format="html" keys="IMPALA-967"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-968" scope="external" format="html" keys="IMPALA-968"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-969" scope="external" format="html" keys="IMPALA-969"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-970" scope="external" format="html" keys="IMPALA-970"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-971" scope="external" format="html" keys="IMPALA-971"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-972" scope="external" format="html" keys="IMPALA-972"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-973" scope="external" format="html" keys="IMPALA-973"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-974" scope="external" format="html" keys="IMPALA-974"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-975" scope="external" format="html" keys="IMPALA-975"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-976" scope="external" format="html" keys="IMPALA-976"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-977" scope="external" format="html" keys="IMPALA-977"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-978" scope="external" format="html" keys="IMPALA-978"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-979" scope="external" format="html" keys="IMPALA-979"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-980" scope="external" format="html" keys="IMPALA-980"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-981" scope="external" format="html" keys="IMPALA-981"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-982" scope="external" format="html" keys="IMPALA-982"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-983" scope="external" format="html" keys="IMPALA-983"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-984" scope="external" format="html" keys="IMPALA-984"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-985" scope="external" format="html" keys="IMPALA-985"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-986" scope="external" format="html" keys="IMPALA-986"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-987" scope="external" format="html" keys="IMPALA-987"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-988" scope="external" format="html" keys="IMPALA-988"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-989" scope="external" format="html" keys="IMPALA-989"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-990" scope="external" format="html" keys="IMPALA-990"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-991" scope="external" format="html" keys="IMPALA-991"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-992" scope="external" format="html" keys="IMPALA-992"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-993" scope="external" format="html" keys="IMPALA-993"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-994" scope="external" format="html" keys="IMPALA-994"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-995" scope="external" format="html" keys="IMPALA-995"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-996" scope="external" format="html" keys="IMPALA-996"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-997" scope="external" format="html" keys="IMPALA-997"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-998" scope="external" format="html" keys="IMPALA-998"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-999" scope="external" format="html" keys="IMPALA-999"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1000" scope="external" format="html" keys="IMPALA-1000"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1001" scope="external" format="html" keys="IMPALA-1001"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1002" scope="external" format="html" keys="IMPALA-1002"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1003" scope="external" format="html" keys="IMPALA-1003"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1004" scope="external" format="html" keys="IMPALA-1004"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1005" scope="external" format="html" keys="IMPALA-1005"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1006" scope="external" format="html" keys="IMPALA-1006"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1007" scope="external" format="html" keys="IMPALA-1007"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1008" scope="external" format="html" keys="IMPALA-1008"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1009" scope="external" format="html" keys="IMPALA-1009"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1010" scope="external" format="html" keys="IMPALA-1010"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1011" scope="external" format="html" keys="IMPALA-1011"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1012" scope="external" format="html" keys="IMPALA-1012"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1013" scope="external" format="html" keys="IMPALA-1013"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1014" scope="external" format="html" keys="IMPALA-1014"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1015" scope="external" format="html" keys="IMPALA-1015"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1016" scope="external" format="html" keys="IMPALA-1016"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1017" scope="external" format="html" keys="IMPALA-1017"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1018" scope="external" format="html" keys="IMPALA-1018"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1019" scope="external" format="html" keys="IMPALA-1019"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1020" scope="external" format="html" keys="IMPALA-1020"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1021" scope="external" format="html" keys="IMPALA-1021"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1022" scope="external" format="html" keys="IMPALA-1022"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1023" scope="external" format="html" keys="IMPALA-1023"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1024" scope="external" format="html" keys="IMPALA-1024"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1025" scope="external" format="html" keys="IMPALA-1025"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1026" scope="external" format="html" keys="IMPALA-1026"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1027" scope="external" format="html" keys="IMPALA-1027"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1028" scope="external" format="html" keys="IMPALA-1028"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1029" scope="external" format="html" keys="IMPALA-1029"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1030" scope="external" format="html" keys="IMPALA-1030"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1031" scope="external" format="html" keys="IMPALA-1031"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1032" scope="external" format="html" keys="IMPALA-1032"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1033" scope="external" format="html" keys="IMPALA-1033"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1034" scope="external" format="html" keys="IMPALA-1034"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1035" scope="external" format="html" keys="IMPALA-1035"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1036" scope="external" format="html" keys="IMPALA-1036"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1037" scope="external" format="html" keys="IMPALA-1037"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1038" scope="external" format="html" keys="IMPALA-1038"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1039" scope="external" format="html" keys="IMPALA-1039"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1040" scope="external" format="html" keys="IMPALA-1040"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1041" scope="external" format="html" keys="IMPALA-1041"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1042" scope="external" format="html" keys="IMPALA-1042"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1043" scope="external" format="html" keys="IMPALA-1043"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1044" scope="external" format="html" keys="IMPALA-1044"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1045" scope="external" format="html" keys="IMPALA-1045"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1046" scope="external" format="html" keys="IMPALA-1046"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1047" scope="external" format="html" keys="IMPALA-1047"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1048" scope="external" format="html" keys="IMPALA-1048"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1049" scope="external" format="html" keys="IMPALA-1049"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1050" scope="external" format="html" keys="IMPALA-1050"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1051" scope="external" format="html" keys="IMPALA-1051"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1052" scope="external" format="html" keys="IMPALA-1052"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1053" scope="external" format="html" keys="IMPALA-1053"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1054" scope="external" format="html" keys="IMPALA-1054"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1055" scope="external" format="html" keys="IMPALA-1055"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1056" scope="external" format="html" keys="IMPALA-1056"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1057" scope="external" format="html" keys="IMPALA-1057"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1058" scope="external" format="html" keys="IMPALA-1058"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1059" scope="external" format="html" keys="IMPALA-1059"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1060" scope="external" format="html" keys="IMPALA-1060"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1061" scope="external" format="html" keys="IMPALA-1061"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1062" scope="external" format="html" keys="IMPALA-1062"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1063" scope="external" format="html" keys="IMPALA-1063"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1064" scope="external" format="html" keys="IMPALA-1064"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1065" scope="external" format="html" keys="IMPALA-1065"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1066" scope="external" format="html" keys="IMPALA-1066"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1067" scope="external" format="html" keys="IMPALA-1067"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1068" scope="external" format="html" keys="IMPALA-1068"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1069" scope="external" format="html" keys="IMPALA-1069"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1070" scope="external" format="html" keys="IMPALA-1070"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1071" scope="external" format="html" keys="IMPALA-1071"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1072" scope="external" format="html" keys="IMPALA-1072"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1073" scope="external" format="html" keys="IMPALA-1073"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1074" scope="external" format="html" keys="IMPALA-1074"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1075" scope="external" format="html" keys="IMPALA-1075"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1076" scope="external" format="html" keys="IMPALA-1076"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1077" scope="external" format="html" keys="IMPALA-1077"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1078" scope="external" format="html" keys="IMPALA-1078"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1079" scope="external" format="html" keys="IMPALA-1079"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1080" scope="external" format="html" keys="IMPALA-1080"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1081" scope="external" format="html" keys="IMPALA-1081"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1082" scope="external" format="html" keys="IMPALA-1082"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1083" scope="external" format="html" keys="IMPALA-1083"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1084" scope="external" format="html" keys="IMPALA-1084"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1085" scope="external" format="html" keys="IMPALA-1085"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1086" scope="external" format="html" keys="IMPALA-1086"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1087" scope="external" format="html" keys="IMPALA-1087"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1088" scope="external" format="html" keys="IMPALA-1088"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1089" scope="external" format="html" keys="IMPALA-1089"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1090" scope="external" format="html" keys="IMPALA-1090"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1091" scope="external" format="html" keys="IMPALA-1091"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1092" scope="external" format="html" keys="IMPALA-1092"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1093" scope="external" format="html" keys="IMPALA-1093"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1094" scope="external" format="html" keys="IMPALA-1094"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1095" scope="external" format="html" keys="IMPALA-1095"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1096" scope="external" format="html" keys="IMPALA-1096"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1097" scope="external" format="html" keys="IMPALA-1097"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1098" scope="external" format="html" keys="IMPALA-1098"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1099" scope="external" format="html" keys="IMPALA-1099"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1100" scope="external" format="html" keys="IMPALA-1100"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1101" scope="external" format="html" keys="IMPALA-1101"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1102" scope="external" format="html" keys="IMPALA-1102"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1103" scope="external" format="html" keys="IMPALA-1103"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1104" scope="external" format="html" keys="IMPALA-1104"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1105" scope="external" format="html" keys="IMPALA-1105"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1106" scope="external" format="html" keys="IMPALA-1106"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1107" scope="external" format="html" keys="IMPALA-1107"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1108" scope="external" format="html" keys="IMPALA-1108"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1109" scope="external" format="html" keys="IMPALA-1109"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1110" scope="external" format="html" keys="IMPALA-1110"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1111" scope="external" format="html" keys="IMPALA-1111"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1112" scope="external" format="html" keys="IMPALA-1112"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1113" scope="external" format="html" keys="IMPALA-1113"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1114" scope="external" format="html" keys="IMPALA-1114"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1115" scope="external" format="html" keys="IMPALA-1115"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1116" scope="external" format="html" keys="IMPALA-1116"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1117" scope="external" format="html" keys="IMPALA-1117"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1118" scope="external" format="html" keys="IMPALA-1118"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1119" scope="external" format="html" keys="IMPALA-1119"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1120" scope="external" format="html" keys="IMPALA-1120"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1121" scope="external" format="html" keys="IMPALA-1121"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1122" scope="external" format="html" keys="IMPALA-1122"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1123" scope="external" format="html" keys="IMPALA-1123"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1124" scope="external" format="html" keys="IMPALA-1124"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1125" scope="external" format="html" keys="IMPALA-1125"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1126" scope="external" format="html" keys="IMPALA-1126"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1127" scope="external" format="html" keys="IMPALA-1127"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1128" scope="external" format="html" keys="IMPALA-1128"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1129" scope="external" format="html" keys="IMPALA-1129"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1130" scope="external" format="html" keys="IMPALA-1130"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1131" scope="external" format="html" keys="IMPALA-1131"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1132" scope="external" format="html" keys="IMPALA-1132"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1133" scope="external" format="html" keys="IMPALA-1133"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1134" scope="external" format="html" keys="IMPALA-1134"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1135" scope="external" format="html" keys="IMPALA-1135"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1136" scope="external" format="html" keys="IMPALA-1136"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1137" scope="external" format="html" keys="IMPALA-1137"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1138" scope="external" format="html" keys="IMPALA-1138"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1139" scope="external" format="html" keys="IMPALA-1139"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1140" scope="external" format="html" keys="IMPALA-1140"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1141" scope="external" format="html" keys="IMPALA-1141"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1142" scope="external" format="html" keys="IMPALA-1142"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1143" scope="external" format="html" keys="IMPALA-1143"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1144" scope="external" format="html" keys="IMPALA-1144"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1145" scope="external" format="html" keys="IMPALA-1145"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1146" scope="external" format="html" keys="IMPALA-1146"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1147" scope="external" format="html" keys="IMPALA-1147"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1148" scope="external" format="html" keys="IMPALA-1148"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1149" scope="external" format="html" keys="IMPALA-1149"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1150" scope="external" format="html" keys="IMPALA-1150"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1151" scope="external" format="html" keys="IMPALA-1151"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1152" scope="external" format="html" keys="IMPALA-1152"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1153" scope="external" format="html" keys="IMPALA-1153"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1154" scope="external" format="html" keys="IMPALA-1154"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1155" scope="external" format="html" keys="IMPALA-1155"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1156" scope="external" format="html" keys="IMPALA-1156"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1157" scope="external" format="html" keys="IMPALA-1157"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1158" scope="external" format="html" keys="IMPALA-1158"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1159" scope="external" format="html" keys="IMPALA-1159"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1160" scope="external" format="html" keys="IMPALA-1160"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1161" scope="external" format="html" keys="IMPALA-1161"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1162" scope="external" format="html" keys="IMPALA-1162"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1163" scope="external" format="html" keys="IMPALA-1163"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1164" scope="external" format="html" keys="IMPALA-1164"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1165" scope="external" format="html" keys="IMPALA-1165"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1166" scope="external" format="html" keys="IMPALA-1166"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1167" scope="external" format="html" keys="IMPALA-1167"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1168" scope="external" format="html" keys="IMPALA-1168"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1169" scope="external" format="html" keys="IMPALA-1169"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1170" scope="external" format="html" keys="IMPALA-1170"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1171" scope="external" format="html" keys="IMPALA-1171"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1172" scope="external" format="html" keys="IMPALA-1172"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1173" scope="external" format="html" keys="IMPALA-1173"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1174" scope="external" format="html" keys="IMPALA-1174"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1175" scope="external" format="html" keys="IMPALA-1175"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1176" scope="external" format="html" keys="IMPALA-1176"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1177" scope="external" format="html" keys="IMPALA-1177"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1178" scope="external" format="html" keys="IMPALA-1178"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1179" scope="external" format="html" keys="IMPALA-1179"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1180" scope="external" format="html" keys="IMPALA-1180"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1181" scope="external" format="html" keys="IMPALA-1181"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1182" scope="external" format="html" keys="IMPALA-1182"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1183" scope="external" format="html" keys="IMPALA-1183"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1184" scope="external" format="html" keys="IMPALA-1184"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1185" scope="external" format="html" keys="IMPALA-1185"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1186" scope="external" format="html" keys="IMPALA-1186"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1187" scope="external" format="html" keys="IMPALA-1187"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1188" scope="external" format="html" keys="IMPALA-1188"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1189" scope="external" format="html" keys="IMPALA-1189"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1190" scope="external" format="html" keys="IMPALA-1190"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1191" scope="external" format="html" keys="IMPALA-1191"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1192" scope="external" format="html" keys="IMPALA-1192"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1193" scope="external" format="html" keys="IMPALA-1193"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1194" scope="external" format="html" keys="IMPALA-1194"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1195" scope="external" format="html" keys="IMPALA-1195"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1196" scope="external" format="html" keys="IMPALA-1196"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1197" scope="external" format="html" keys="IMPALA-1197"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1198" scope="external" format="html" keys="IMPALA-1198"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1199" scope="external" format="html" keys="IMPALA-1199"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1200" scope="external" format="html" keys="IMPALA-1200"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1201" scope="external" format="html" keys="IMPALA-1201"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1202" scope="external" format="html" keys="IMPALA-1202"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1203" scope="external" format="html" keys="IMPALA-1203"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1204" scope="external" format="html" keys="IMPALA-1204"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1205" scope="external" format="html" keys="IMPALA-1205"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1206" scope="external" format="html" keys="IMPALA-1206"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1207" scope="external" format="html" keys="IMPALA-1207"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1208" scope="external" format="html" keys="IMPALA-1208"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1209" scope="external" format="html" keys="IMPALA-1209"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1210" scope="external" format="html" keys="IMPALA-1210"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1211" scope="external" format="html" keys="IMPALA-1211"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1212" scope="external" format="html" keys="IMPALA-1212"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1213" scope="external" format="html" keys="IMPALA-1213"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1214" scope="external" format="html" keys="IMPALA-1214"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1215" scope="external" format="html" keys="IMPALA-1215"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1216" scope="external" format="html" keys="IMPALA-1216"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1217" scope="external" format="html" keys="IMPALA-1217"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1218" scope="external" format="html" keys="IMPALA-1218"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1219" scope="external" format="html" keys="IMPALA-1219"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1220" scope="external" format="html" keys="IMPALA-1220"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1221" scope="external" format="html" keys="IMPALA-1221"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1222" scope="external" format="html" keys="IMPALA-1222"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1223" scope="external" format="html" keys="IMPALA-1223"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1224" scope="external" format="html" keys="IMPALA-1224"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1225" scope="external" format="html" keys="IMPALA-1225"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1226" scope="external" format="html" keys="IMPALA-1226"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1227" scope="external" format="html" keys="IMPALA-1227"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1228" scope="external" format="html" keys="IMPALA-1228"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1229" scope="external" format="html" keys="IMPALA-1229"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1230" scope="external" format="html" keys="IMPALA-1230"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1231" scope="external" format="html" keys="IMPALA-1231"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1232" scope="external" format="html" keys="IMPALA-1232"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1233" scope="external" format="html" keys="IMPALA-1233"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1234" scope="external" format="html" keys="IMPALA-1234"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1235" scope="external" format="html" keys="IMPALA-1235"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1236" scope="external" format="html" keys="IMPALA-1236"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1237" scope="external" format="html" keys="IMPALA-1237"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1238" scope="external" format="html" keys="IMPALA-1238"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1239" scope="external" format="html" keys="IMPALA-1239"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1240" scope="external" format="html" keys="IMPALA-1240"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1241" scope="external" format="html" keys="IMPALA-1241"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1242" scope="external" format="html" keys="IMPALA-1242"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1243" scope="external" format="html" keys="IMPALA-1243"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1244" scope="external" format="html" keys="IMPALA-1244"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1245" scope="external" format="html" keys="IMPALA-1245"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1246" scope="external" format="html" keys="IMPALA-1246"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1247" scope="external" format="html" keys="IMPALA-1247"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1248" scope="external" format="html" keys="IMPALA-1248"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1249" scope="external" format="html" keys="IMPALA-1249"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1250" scope="external" format="html" keys="IMPALA-1250"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1251" scope="external" format="html" keys="IMPALA-1251"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1252" scope="external" format="html" keys="IMPALA-1252"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1253" scope="external" format="html" keys="IMPALA-1253"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1254" scope="external" format="html" keys="IMPALA-1254"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1255" scope="external" format="html" keys="IMPALA-1255"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1256" scope="external" format="html" keys="IMPALA-1256"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1257" scope="external" format="html" keys="IMPALA-1257"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1258" scope="external" format="html" keys="IMPALA-1258"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1259" scope="external" format="html" keys="IMPALA-1259"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1260" scope="external" format="html" keys="IMPALA-1260"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1261" scope="external" format="html" keys="IMPALA-1261"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1262" scope="external" format="html" keys="IMPALA-1262"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1263" scope="external" format="html" keys="IMPALA-1263"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1264" scope="external" format="html" keys="IMPALA-1264"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1265" scope="external" format="html" keys="IMPALA-1265"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1266" scope="external" format="html" keys="IMPALA-1266"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1267" scope="external" format="html" keys="IMPALA-1267"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1268" scope="external" format="html" keys="IMPALA-1268"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1269" scope="external" format="html" keys="IMPALA-1269"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1270" scope="external" format="html" keys="IMPALA-1270"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1271" scope="external" format="html" keys="IMPALA-1271"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1272" scope="external" format="html" keys="IMPALA-1272"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1273" scope="external" format="html" keys="IMPALA-1273"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1274" scope="external" format="html" keys="IMPALA-1274"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1275" scope="external" format="html" keys="IMPALA-1275"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1276" scope="external" format="html" keys="IMPALA-1276"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1277" scope="external" format="html" keys="IMPALA-1277"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1278" scope="external" format="html" keys="IMPALA-1278"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1279" scope="external" format="html" keys="IMPALA-1279"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1280" scope="external" format="html" keys="IMPALA-1280"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1281" scope="external" format="html" keys="IMPALA-1281"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1282" scope="external" format="html" keys="IMPALA-1282"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1283" scope="external" format="html" keys="IMPALA-1283"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1284" scope="external" format="html" keys="IMPALA-1284"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1285" scope="external" format="html" keys="IMPALA-1285"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1286" scope="external" format="html" keys="IMPALA-1286"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1287" scope="external" format="html" keys="IMPALA-1287"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1288" scope="external" format="html" keys="IMPALA-1288"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1289" scope="external" format="html" keys="IMPALA-1289"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1290" scope="external" format="html" keys="IMPALA-1290"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1291" scope="external" format="html" keys="IMPALA-1291"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1292" scope="external" format="html" keys="IMPALA-1292"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1293" scope="external" format="html" keys="IMPALA-1293"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1294" scope="external" format="html" keys="IMPALA-1294"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1295" scope="external" format="html" keys="IMPALA-1295"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1296" scope="external" format="html" keys="IMPALA-1296"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1297" scope="external" format="html" keys="IMPALA-1297"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1298" scope="external" format="html" keys="IMPALA-1298"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1299" scope="external" format="html" keys="IMPALA-1299"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1300" scope="external" format="html" keys="IMPALA-1300"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1301" scope="external" format="html" keys="IMPALA-1301"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1302" scope="external" format="html" keys="IMPALA-1302"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1303" scope="external" format="html" keys="IMPALA-1303"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1304" scope="external" format="html" keys="IMPALA-1304"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1305" scope="external" format="html" keys="IMPALA-1305"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1306" scope="external" format="html" keys="IMPALA-1306"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1307" scope="external" format="html" keys="IMPALA-1307"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1308" scope="external" format="html" keys="IMPALA-1308"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1309" scope="external" format="html" keys="IMPALA-1309"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1310" scope="external" format="html" keys="IMPALA-1310"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1311" scope="external" format="html" keys="IMPALA-1311"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1312" scope="external" format="html" keys="IMPALA-1312"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1313" scope="external" format="html" keys="IMPALA-1313"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1314" scope="external" format="html" keys="IMPALA-1314"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1315" scope="external" format="html" keys="IMPALA-1315"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1316" scope="external" format="html" keys="IMPALA-1316"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1317" scope="external" format="html" keys="IMPALA-1317"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1318" scope="external" format="html" keys="IMPALA-1318"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1319" scope="external" format="html" keys="IMPALA-1319"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1320" scope="external" format="html" keys="IMPALA-1320"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1321" scope="external" format="html" keys="IMPALA-1321"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1322" scope="external" format="html" keys="IMPALA-1322"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1323" scope="external" format="html" keys="IMPALA-1323"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1324" scope="external" format="html" keys="IMPALA-1324"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1325" scope="external" format="html" keys="IMPALA-1325"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1326" scope="external" format="html" keys="IMPALA-1326"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1327" scope="external" format="html" keys="IMPALA-1327"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1328" scope="external" format="html" keys="IMPALA-1328"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1329" scope="external" format="html" keys="IMPALA-1329"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1330" scope="external" format="html" keys="IMPALA-1330"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1331" scope="external" format="html" keys="IMPALA-1331"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1332" scope="external" format="html" keys="IMPALA-1332"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1333" scope="external" format="html" keys="IMPALA-1333"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1334" scope="external" format="html" keys="IMPALA-1334"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1335" scope="external" format="html" keys="IMPALA-1335"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1336" scope="external" format="html" keys="IMPALA-1336"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1337" scope="external" format="html" keys="IMPALA-1337"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1338" scope="external" format="html" keys="IMPALA-1338"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1339" scope="external" format="html" keys="IMPALA-1339"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1340" scope="external" format="html" keys="IMPALA-1340"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1341" scope="external" format="html" keys="IMPALA-1341"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1342" scope="external" format="html" keys="IMPALA-1342"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1343" scope="external" format="html" keys="IMPALA-1343"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1344" scope="external" format="html" keys="IMPALA-1344"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1345" scope="external" format="html" keys="IMPALA-1345"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1346" scope="external" format="html" keys="IMPALA-1346"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1347" scope="external" format="html" keys="IMPALA-1347"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1348" scope="external" format="html" keys="IMPALA-1348"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1349" scope="external" format="html" keys="IMPALA-1349"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1350" scope="external" format="html" keys="IMPALA-1350"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1351" scope="external" format="html" keys="IMPALA-1351"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1352" scope="external" format="html" keys="IMPALA-1352"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1353" scope="external" format="html" keys="IMPALA-1353"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1354" scope="external" format="html" keys="IMPALA-1354"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1355" scope="external" format="html" keys="IMPALA-1355"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1356" scope="external" format="html" keys="IMPALA-1356"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1357" scope="external" format="html" keys="IMPALA-1357"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1358" scope="external" format="html" keys="IMPALA-1358"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1359" scope="external" format="html" keys="IMPALA-1359"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1360" scope="external" format="html" keys="IMPALA-1360"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1361" scope="external" format="html" keys="IMPALA-1361"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1362" scope="external" format="html" keys="IMPALA-1362"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1363" scope="external" format="html" keys="IMPALA-1363"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1364" scope="external" format="html" keys="IMPALA-1364"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1365" scope="external" format="html" keys="IMPALA-1365"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1366" scope="external" format="html" keys="IMPALA-1366"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1367" scope="external" format="html" keys="IMPALA-1367"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1368" scope="external" format="html" keys="IMPALA-1368"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1369" scope="external" format="html" keys="IMPALA-1369"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1370" scope="external" format="html" keys="IMPALA-1370"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1371" scope="external" format="html" keys="IMPALA-1371"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1372" scope="external" format="html" keys="IMPALA-1372"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1373" scope="external" format="html" keys="IMPALA-1373"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1374" scope="external" format="html" keys="IMPALA-1374"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1375" scope="external" format="html" keys="IMPALA-1375"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1376" scope="external" format="html" keys="IMPALA-1376"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1377" scope="external" format="html" keys="IMPALA-1377"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1378" scope="external" format="html" keys="IMPALA-1378"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1379" scope="external" format="html" keys="IMPALA-1379"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1380" scope="external" format="html" keys="IMPALA-1380"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1381" scope="external" format="html" keys="IMPALA-1381"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1382" scope="external" format="html" keys="IMPALA-1382"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1383" scope="external" format="html" keys="IMPALA-1383"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1384" scope="external" format="html" keys="IMPALA-1384"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1385" scope="external" format="html" keys="IMPALA-1385"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1386" scope="external" format="html" keys="IMPALA-1386"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1387" scope="external" format="html" keys="IMPALA-1387"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1388" scope="external" format="html" keys="IMPALA-1388"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1389" scope="external" format="html" keys="IMPALA-1389"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1390" scope="external" format="html" keys="IMPALA-1390"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1391" scope="external" format="html" keys="IMPALA-1391"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1392" scope="external" format="html" keys="IMPALA-1392"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1393" scope="external" format="html" keys="IMPALA-1393"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1394" scope="external" format="html" keys="IMPALA-1394"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1395" scope="external" format="html" keys="IMPALA-1395"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1396" scope="external" format="html" keys="IMPALA-1396"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1397" scope="external" format="html" keys="IMPALA-1397"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1398" scope="external" format="html" keys="IMPALA-1398"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1399" scope="external" format="html" keys="IMPALA-1399"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1400" scope="external" format="html" keys="IMPALA-1400"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1401" scope="external" format="html" keys="IMPALA-1401"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1402" scope="external" format="html" keys="IMPALA-1402"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1403" scope="external" format="html" keys="IMPALA-1403"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1404" scope="external" format="html" keys="IMPALA-1404"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1405" scope="external" format="html" keys="IMPALA-1405"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1406" scope="external" format="html" keys="IMPALA-1406"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1407" scope="external" format="html" keys="IMPALA-1407"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1408" scope="external" format="html" keys="IMPALA-1408"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1409" scope="external" format="html" keys="IMPALA-1409"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1410" scope="external" format="html" keys="IMPALA-1410"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1411" scope="external" format="html" keys="IMPALA-1411"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1412" scope="external" format="html" keys="IMPALA-1412"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1413" scope="external" format="html" keys="IMPALA-1413"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1414" scope="external" format="html" keys="IMPALA-1414"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1415" scope="external" format="html" keys="IMPALA-1415"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1416" scope="external" format="html" keys="IMPALA-1416"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1417" scope="external" format="html" keys="IMPALA-1417"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1418" scope="external" format="html" keys="IMPALA-1418"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1419" scope="external" format="html" keys="IMPALA-1419"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1420" scope="external" format="html" keys="IMPALA-1420"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1421" scope="external" format="html" keys="IMPALA-1421"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1422" scope="external" format="html" keys="IMPALA-1422"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1423" scope="external" format="html" keys="IMPALA-1423"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1424" scope="external" format="html" keys="IMPALA-1424"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1425" scope="external" format="html" keys="IMPALA-1425"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1426" scope="external" format="html" keys="IMPALA-1426"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1427" scope="external" format="html" keys="IMPALA-1427"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1428" scope="external" format="html" keys="IMPALA-1428"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1429" scope="external" format="html" keys="IMPALA-1429"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1430" scope="external" format="html" keys="IMPALA-1430"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1431" scope="external" format="html" keys="IMPALA-1431"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1432" scope="external" format="html" keys="IMPALA-1432"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1433" scope="external" format="html" keys="IMPALA-1433"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1434" scope="external" format="html" keys="IMPALA-1434"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1435" scope="external" format="html" keys="IMPALA-1435"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1436" scope="external" format="html" keys="IMPALA-1436"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1437" scope="external" format="html" keys="IMPALA-1437"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1438" scope="external" format="html" keys="IMPALA-1438"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1439" scope="external" format="html" keys="IMPALA-1439"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1440" scope="external" format="html" keys="IMPALA-1440"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1441" scope="external" format="html" keys="IMPALA-1441"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1442" scope="external" format="html" keys="IMPALA-1442"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1443" scope="external" format="html" keys="IMPALA-1443"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1444" scope="external" format="html" keys="IMPALA-1444"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1445" scope="external" format="html" keys="IMPALA-1445"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1446" scope="external" format="html" keys="IMPALA-1446"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1447" scope="external" format="html" keys="IMPALA-1447"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1448" scope="external" format="html" keys="IMPALA-1448"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1449" scope="external" format="html" keys="IMPALA-1449"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1450" scope="external" format="html" keys="IMPALA-1450"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1451" scope="external" format="html" keys="IMPALA-1451"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1452" scope="external" format="html" keys="IMPALA-1452"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1453" scope="external" format="html" keys="IMPALA-1453"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1454" scope="external" format="html" keys="IMPALA-1454"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1455" scope="external" format="html" keys="IMPALA-1455"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1456" scope="external" format="html" keys="IMPALA-1456"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1457" scope="external" format="html" keys="IMPALA-1457"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1458" scope="external" format="html" keys="IMPALA-1458"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1459" scope="external" format="html" keys="IMPALA-1459"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1460" scope="external" format="html" keys="IMPALA-1460"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1461" scope="external" format="html" keys="IMPALA-1461"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1462" scope="external" format="html" keys="IMPALA-1462"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1463" scope="external" format="html" keys="IMPALA-1463"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1464" scope="external" format="html" keys="IMPALA-1464"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1465" scope="external" format="html" keys="IMPALA-1465"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1466" scope="external" format="html" keys="IMPALA-1466"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1467" scope="external" format="html" keys="IMPALA-1467"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1468" scope="external" format="html" keys="IMPALA-1468"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1469" scope="external" format="html" keys="IMPALA-1469"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1470" scope="external" format="html" keys="IMPALA-1470"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1471" scope="external" format="html" keys="IMPALA-1471"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1472" scope="external" format="html" keys="IMPALA-1472"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1473" scope="external" format="html" keys="IMPALA-1473"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1474" scope="external" format="html" keys="IMPALA-1474"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1475" scope="external" format="html" keys="IMPALA-1475"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1476" scope="external" format="html" keys="IMPALA-1476"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1477" scope="external" format="html" keys="IMPALA-1477"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1478" scope="external" format="html" keys="IMPALA-1478"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1479" scope="external" format="html" keys="IMPALA-1479"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1480" scope="external" format="html" keys="IMPALA-1480"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1481" scope="external" format="html" keys="IMPALA-1481"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1482" scope="external" format="html" keys="IMPALA-1482"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1483" scope="external" format="html" keys="IMPALA-1483"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1484" scope="external" format="html" keys="IMPALA-1484"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1485" scope="external" format="html" keys="IMPALA-1485"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1486" scope="external" format="html" keys="IMPALA-1486"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1487" scope="external" format="html" keys="IMPALA-1487"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1488" scope="external" format="html" keys="IMPALA-1488"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1489" scope="external" format="html" keys="IMPALA-1489"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1490" scope="external" format="html" keys="IMPALA-1490"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1491" scope="external" format="html" keys="IMPALA-1491"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1492" scope="external" format="html" keys="IMPALA-1492"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1493" scope="external" format="html" keys="IMPALA-1493"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1494" scope="external" format="html" keys="IMPALA-1494"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1495" scope="external" format="html" keys="IMPALA-1495"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1496" scope="external" format="html" keys="IMPALA-1496"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1497" scope="external" format="html" keys="IMPALA-1497"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1498" scope="external" format="html" keys="IMPALA-1498"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1499" scope="external" format="html" keys="IMPALA-1499"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1500" scope="external" format="html" keys="IMPALA-1500"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1501" scope="external" format="html" keys="IMPALA-1501"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1502" scope="external" format="html" keys="IMPALA-1502"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1503" scope="external" format="html" keys="IMPALA-1503"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1504" scope="external" format="html" keys="IMPALA-1504"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1505" scope="external" format="html" keys="IMPALA-1505"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1506" scope="external" format="html" keys="IMPALA-1506"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1507" scope="external" format="html" keys="IMPALA-1507"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1508" scope="external" format="html" keys="IMPALA-1508"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1509" scope="external" format="html" keys="IMPALA-1509"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1510" scope="external" format="html" keys="IMPALA-1510"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1511" scope="external" format="html" keys="IMPALA-1511"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1512" scope="external" format="html" keys="IMPALA-1512"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1513" scope="external" format="html" keys="IMPALA-1513"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1514" scope="external" format="html" keys="IMPALA-1514"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1515" scope="external" format="html" keys="IMPALA-1515"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1516" scope="external" format="html" keys="IMPALA-1516"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1517" scope="external" format="html" keys="IMPALA-1517"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1518" scope="external" format="html" keys="IMPALA-1518"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1519" scope="external" format="html" keys="IMPALA-1519"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1520" scope="external" format="html" keys="IMPALA-1520"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1521" scope="external" format="html" keys="IMPALA-1521"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1522" scope="external" format="html" keys="IMPALA-1522"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1523" scope="external" format="html" keys="IMPALA-1523"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1524" scope="external" format="html" keys="IMPALA-1524"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1525" scope="external" format="html" keys="IMPALA-1525"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1526" scope="external" format="html" keys="IMPALA-1526"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1527" scope="external" format="html" keys="IMPALA-1527"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1528" scope="external" format="html" keys="IMPALA-1528"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1529" scope="external" format="html" keys="IMPALA-1529"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1530" scope="external" format="html" keys="IMPALA-1530"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1531" scope="external" format="html" keys="IMPALA-1531"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1532" scope="external" format="html" keys="IMPALA-1532"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1533" scope="external" format="html" keys="IMPALA-1533"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1534" scope="external" format="html" keys="IMPALA-1534"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1535" scope="external" format="html" keys="IMPALA-1535"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1536" scope="external" format="html" keys="IMPALA-1536"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1537" scope="external" format="html" keys="IMPALA-1537"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1538" scope="external" format="html" keys="IMPALA-1538"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1539" scope="external" format="html" keys="IMPALA-1539"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1540" scope="external" format="html" keys="IMPALA-1540"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1541" scope="external" format="html" keys="IMPALA-1541"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1542" scope="external" format="html" keys="IMPALA-1542"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1543" scope="external" format="html" keys="IMPALA-1543"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1544" scope="external" format="html" keys="IMPALA-1544"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1545" scope="external" format="html" keys="IMPALA-1545"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1546" scope="external" format="html" keys="IMPALA-1546"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1547" scope="external" format="html" keys="IMPALA-1547"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1548" scope="external" format="html" keys="IMPALA-1548"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1549" scope="external" format="html" keys="IMPALA-1549"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1550" scope="external" format="html" keys="IMPALA-1550"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1551" scope="external" format="html" keys="IMPALA-1551"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1552" scope="external" format="html" keys="IMPALA-1552"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1553" scope="external" format="html" keys="IMPALA-1553"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1554" scope="external" format="html" keys="IMPALA-1554"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1555" scope="external" format="html" keys="IMPALA-1555"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1556" scope="external" format="html" keys="IMPALA-1556"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1557" scope="external" format="html" keys="IMPALA-1557"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1558" scope="external" format="html" keys="IMPALA-1558"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1559" scope="external" format="html" keys="IMPALA-1559"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1560" scope="external" format="html" keys="IMPALA-1560"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1561" scope="external" format="html" keys="IMPALA-1561"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1562" scope="external" format="html" keys="IMPALA-1562"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1563" scope="external" format="html" keys="IMPALA-1563"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1564" scope="external" format="html" keys="IMPALA-1564"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1565" scope="external" format="html" keys="IMPALA-1565"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1566" scope="external" format="html" keys="IMPALA-1566"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1567" scope="external" format="html" keys="IMPALA-1567"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1568" scope="external" format="html" keys="IMPALA-1568"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1569" scope="external" format="html" keys="IMPALA-1569"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1570" scope="external" format="html" keys="IMPALA-1570"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1571" scope="external" format="html" keys="IMPALA-1571"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1572" scope="external" format="html" keys="IMPALA-1572"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1573" scope="external" format="html" keys="IMPALA-1573"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1574" scope="external" format="html" keys="IMPALA-1574"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1575" scope="external" format="html" keys="IMPALA-1575"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1576" scope="external" format="html" keys="IMPALA-1576"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1577" scope="external" format="html" keys="IMPALA-1577"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1578" scope="external" format="html" keys="IMPALA-1578"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1579" scope="external" format="html" keys="IMPALA-1579"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1580" scope="external" format="html" keys="IMPALA-1580"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1581" scope="external" format="html" keys="IMPALA-1581"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1582" scope="external" format="html" keys="IMPALA-1582"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1583" scope="external" format="html" keys="IMPALA-1583"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1584" scope="external" format="html" keys="IMPALA-1584"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1585" scope="external" format="html" keys="IMPALA-1585"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1586" scope="external" format="html" keys="IMPALA-1586"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1587" scope="external" format="html" keys="IMPALA-1587"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1588" scope="external" format="html" keys="IMPALA-1588"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1589" scope="external" format="html" keys="IMPALA-1589"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1590" scope="external" format="html" keys="IMPALA-1590"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1591" scope="external" format="html" keys="IMPALA-1591"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1592" scope="external" format="html" keys="IMPALA-1592"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1593" scope="external" format="html" keys="IMPALA-1593"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1594" scope="external" format="html" keys="IMPALA-1594"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1595" scope="external" format="html" keys="IMPALA-1595"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1596" scope="external" format="html" keys="IMPALA-1596"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1597" scope="external" format="html" keys="IMPALA-1597"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1598" scope="external" format="html" keys="IMPALA-1598"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1599" scope="external" format="html" keys="IMPALA-1599"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1600" scope="external" format="html" keys="IMPALA-1600"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1601" scope="external" format="html" keys="IMPALA-1601"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1602" scope="external" format="html" keys="IMPALA-1602"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1603" scope="external" format="html" keys="IMPALA-1603"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1604" scope="external" format="html" keys="IMPALA-1604"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1605" scope="external" format="html" keys="IMPALA-1605"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1606" scope="external" format="html" keys="IMPALA-1606"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1607" scope="external" format="html" keys="IMPALA-1607"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1608" scope="external" format="html" keys="IMPALA-1608"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1609" scope="external" format="html" keys="IMPALA-1609"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1610" scope="external" format="html" keys="IMPALA-1610"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1611" scope="external" format="html" keys="IMPALA-1611"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1612" scope="external" format="html" keys="IMPALA-1612"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1613" scope="external" format="html" keys="IMPALA-1613"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1614" scope="external" format="html" keys="IMPALA-1614"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1615" scope="external" format="html" keys="IMPALA-1615"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1616" scope="external" format="html" keys="IMPALA-1616"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1617" scope="external" format="html" keys="IMPALA-1617"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1618" scope="external" format="html" keys="IMPALA-1618"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1619" scope="external" format="html" keys="IMPALA-1619"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1620" scope="external" format="html" keys="IMPALA-1620"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1621" scope="external" format="html" keys="IMPALA-1621"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1622" scope="external" format="html" keys="IMPALA-1622"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1623" scope="external" format="html" keys="IMPALA-1623"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1624" scope="external" format="html" keys="IMPALA-1624"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1625" scope="external" format="html" keys="IMPALA-1625"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1626" scope="external" format="html" keys="IMPALA-1626"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1627" scope="external" format="html" keys="IMPALA-1627"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1628" scope="external" format="html" keys="IMPALA-1628"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1629" scope="external" format="html" keys="IMPALA-1629"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1630" scope="external" format="html" keys="IMPALA-1630"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1631" scope="external" format="html" keys="IMPALA-1631"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1632" scope="external" format="html" keys="IMPALA-1632"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1633" scope="external" format="html" keys="IMPALA-1633"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1634" scope="external" format="html" keys="IMPALA-1634"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1635" scope="external" format="html" keys="IMPALA-1635"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1636" scope="external" format="html" keys="IMPALA-1636"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1637" scope="external" format="html" keys="IMPALA-1637"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1638" scope="external" format="html" keys="IMPALA-1638"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1639" scope="external" format="html" keys="IMPALA-1639"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1640" scope="external" format="html" keys="IMPALA-1640"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1641" scope="external" format="html" keys="IMPALA-1641"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1642" scope="external" format="html" keys="IMPALA-1642"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1643" scope="external" format="html" keys="IMPALA-1643"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1644" scope="external" format="html" keys="IMPALA-1644"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1645" scope="external" format="html" keys="IMPALA-1645"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1646" scope="external" format="html" keys="IMPALA-1646"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1647" scope="external" format="html" keys="IMPALA-1647"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1648" scope="external" format="html" keys="IMPALA-1648"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1649" scope="external" format="html" keys="IMPALA-1649"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1650" scope="external" format="html" keys="IMPALA-1650"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1651" scope="external" format="html" keys="IMPALA-1651"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1652" scope="external" format="html" keys="IMPALA-1652"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1653" scope="external" format="html" keys="IMPALA-1653"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1654" scope="external" format="html" keys="IMPALA-1654"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1655" scope="external" format="html" keys="IMPALA-1655"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1656" scope="external" format="html" keys="IMPALA-1656"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1657" scope="external" format="html" keys="IMPALA-1657"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1658" scope="external" format="html" keys="IMPALA-1658"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1659" scope="external" format="html" keys="IMPALA-1659"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1660" scope="external" format="html" keys="IMPALA-1660"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1661" scope="external" format="html" keys="IMPALA-1661"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1662" scope="external" format="html" keys="IMPALA-1662"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1663" scope="external" format="html" keys="IMPALA-1663"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1664" scope="external" format="html" keys="IMPALA-1664"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1665" scope="external" format="html" keys="IMPALA-1665"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1666" scope="external" format="html" keys="IMPALA-1666"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1667" scope="external" format="html" keys="IMPALA-1667"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1668" scope="external" format="html" keys="IMPALA-1668"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1669" scope="external" format="html" keys="IMPALA-1669"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1670" scope="external" format="html" keys="IMPALA-1670"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1671" scope="external" format="html" keys="IMPALA-1671"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1672" scope="external" format="html" keys="IMPALA-1672"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1673" scope="external" format="html" keys="IMPALA-1673"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1674" scope="external" format="html" keys="IMPALA-1674"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1675" scope="external" format="html" keys="IMPALA-1675"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1676" scope="external" format="html" keys="IMPALA-1676"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1677" scope="external" format="html" keys="IMPALA-1677"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1678" scope="external" format="html" keys="IMPALA-1678"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1679" scope="external" format="html" keys="IMPALA-1679"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1680" scope="external" format="html" keys="IMPALA-1680"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1681" scope="external" format="html" keys="IMPALA-1681"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1682" scope="external" format="html" keys="IMPALA-1682"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1683" scope="external" format="html" keys="IMPALA-1683"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1684" scope="external" format="html" keys="IMPALA-1684"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1685" scope="external" format="html" keys="IMPALA-1685"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1686" scope="external" format="html" keys="IMPALA-1686"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1687" scope="external" format="html" keys="IMPALA-1687"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1688" scope="external" format="html" keys="IMPALA-1688"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1689" scope="external" format="html" keys="IMPALA-1689"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1690" scope="external" format="html" keys="IMPALA-1690"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1691" scope="external" format="html" keys="IMPALA-1691"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1692" scope="external" format="html" keys="IMPALA-1692"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1693" scope="external" format="html" keys="IMPALA-1693"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1694" scope="external" format="html" keys="IMPALA-1694"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1695" scope="external" format="html" keys="IMPALA-1695"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1696" scope="external" format="html" keys="IMPALA-1696"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1697" scope="external" format="html" keys="IMPALA-1697"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1698" scope="external" format="html" keys="IMPALA-1698"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1699" scope="external" format="html" keys="IMPALA-1699"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1700" scope="external" format="html" keys="IMPALA-1700"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1701" scope="external" format="html" keys="IMPALA-1701"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1702" scope="external" format="html" keys="IMPALA-1702"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1703" scope="external" format="html" keys="IMPALA-1703"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1704" scope="external" format="html" keys="IMPALA-1704"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1705" scope="external" format="html" keys="IMPALA-1705"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1706" scope="external" format="html" keys="IMPALA-1706"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1707" scope="external" format="html" keys="IMPALA-1707"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1708" scope="external" format="html" keys="IMPALA-1708"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1709" scope="external" format="html" keys="IMPALA-1709"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1710" scope="external" format="html" keys="IMPALA-1710"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1711" scope="external" format="html" keys="IMPALA-1711"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1712" scope="external" format="html" keys="IMPALA-1712"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1713" scope="external" format="html" keys="IMPALA-1713"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1714" scope="external" format="html" keys="IMPALA-1714"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1715" scope="external" format="html" keys="IMPALA-1715"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1716" scope="external" format="html" keys="IMPALA-1716"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1717" scope="external" format="html" keys="IMPALA-1717"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1718" scope="external" format="html" keys="IMPALA-1718"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1719" scope="external" format="html" keys="IMPALA-1719"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1720" scope="external" format="html" keys="IMPALA-1720"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1721" scope="external" format="html" keys="IMPALA-1721"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1722" scope="external" format="html" keys="IMPALA-1722"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1723" scope="external" format="html" keys="IMPALA-1723"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1724" scope="external" format="html" keys="IMPALA-1724"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1725" scope="external" format="html" keys="IMPALA-1725"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1726" scope="external" format="html" keys="IMPALA-1726"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1727" scope="external" format="html" keys="IMPALA-1727"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1728" scope="external" format="html" keys="IMPALA-1728"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1729" scope="external" format="html" keys="IMPALA-1729"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1730" scope="external" format="html" keys="IMPALA-1730"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1731" scope="external" format="html" keys="IMPALA-1731"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1732" scope="external" format="html" keys="IMPALA-1732"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1733" scope="external" format="html" keys="IMPALA-1733"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1734" scope="external" format="html" keys="IMPALA-1734"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1735" scope="external" format="html" keys="IMPALA-1735"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1736" scope="external" format="html" keys="IMPALA-1736"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1737" scope="external" format="html" keys="IMPALA-1737"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1738" scope="external" format="html" keys="IMPALA-1738"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1739" scope="external" format="html" keys="IMPALA-1739"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1740" scope="external" format="html" keys="IMPALA-1740"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1741" scope="external" format="html" keys="IMPALA-1741"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1742" scope="external" format="html" keys="IMPALA-1742"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1743" scope="external" format="html" keys="IMPALA-1743"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1744" scope="external" format="html" keys="IMPALA-1744"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1745" scope="external" format="html" keys="IMPALA-1745"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1746" scope="external" format="html" keys="IMPALA-1746"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1747" scope="external" format="html" keys="IMPALA-1747"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1748" scope="external" format="html" keys="IMPALA-1748"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1749" scope="external" format="html" keys="IMPALA-1749"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1750" scope="external" format="html" keys="IMPALA-1750"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1751" scope="external" format="html" keys="IMPALA-1751"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1752" scope="external" format="html" keys="IMPALA-1752"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1753" scope="external" format="html" keys="IMPALA-1753"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1754" scope="external" format="html" keys="IMPALA-1754"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1755" scope="external" format="html" keys="IMPALA-1755"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1756" scope="external" format="html" keys="IMPALA-1756"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1757" scope="external" format="html" keys="IMPALA-1757"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1758" scope="external" format="html" keys="IMPALA-1758"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1759" scope="external" format="html" keys="IMPALA-1759"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1760" scope="external" format="html" keys="IMPALA-1760"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1761" scope="external" format="html" keys="IMPALA-1761"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1762" scope="external" format="html" keys="IMPALA-1762"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1763" scope="external" format="html" keys="IMPALA-1763"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1764" scope="external" format="html" keys="IMPALA-1764"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1765" scope="external" format="html" keys="IMPALA-1765"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1766" scope="external" format="html" keys="IMPALA-1766"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1767" scope="external" format="html" keys="IMPALA-1767"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1768" scope="external" format="html" keys="IMPALA-1768"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1769" scope="external" format="html" keys="IMPALA-1769"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1770" scope="external" format="html" keys="IMPALA-1770"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1771" scope="external" format="html" keys="IMPALA-1771"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1772" scope="external" format="html" keys="IMPALA-1772"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1773" scope="external" format="html" keys="IMPALA-1773"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1774" scope="external" format="html" keys="IMPALA-1774"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1775" scope="external" format="html" keys="IMPALA-1775"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1776" scope="external" format="html" keys="IMPALA-1776"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1777" scope="external" format="html" keys="IMPALA-1777"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1778" scope="external" format="html" keys="IMPALA-1778"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1779" scope="external" format="html" keys="IMPALA-1779"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1780" scope="external" format="html" keys="IMPALA-1780"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1781" scope="external" format="html" keys="IMPALA-1781"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1782" scope="external" format="html" keys="IMPALA-1782"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1783" scope="external" format="html" keys="IMPALA-1783"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1784" scope="external" format="html" keys="IMPALA-1784"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1785" scope="external" format="html" keys="IMPALA-1785"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1786" scope="external" format="html" keys="IMPALA-1786"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1787" scope="external" format="html" keys="IMPALA-1787"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1788" scope="external" format="html" keys="IMPALA-1788"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1789" scope="external" format="html" keys="IMPALA-1789"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1790" scope="external" format="html" keys="IMPALA-1790"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1791" scope="external" format="html" keys="IMPALA-1791"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1792" scope="external" format="html" keys="IMPALA-1792"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1793" scope="external" format="html" keys="IMPALA-1793"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1794" scope="external" format="html" keys="IMPALA-1794"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1795" scope="external" format="html" keys="IMPALA-1795"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1796" scope="external" format="html" keys="IMPALA-1796"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1797" scope="external" format="html" keys="IMPALA-1797"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1798" scope="external" format="html" keys="IMPALA-1798"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1799" scope="external" format="html" keys="IMPALA-1799"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1800" scope="external" format="html" keys="IMPALA-1800"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1801" scope="external" format="html" keys="IMPALA-1801"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1802" scope="external" format="html" keys="IMPALA-1802"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1803" scope="external" format="html" keys="IMPALA-1803"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1804" scope="external" format="html" keys="IMPALA-1804"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1805" scope="external" format="html" keys="IMPALA-1805"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1806" scope="external" format="html" keys="IMPALA-1806"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1807" scope="external" format="html" keys="IMPALA-1807"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1808" scope="external" format="html" keys="IMPALA-1808"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1809" scope="external" format="html" keys="IMPALA-1809"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1810" scope="external" format="html" keys="IMPALA-1810"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1811" scope="external" format="html" keys="IMPALA-1811"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1812" scope="external" format="html" keys="IMPALA-1812"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1813" scope="external" format="html" keys="IMPALA-1813"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1814" scope="external" format="html" keys="IMPALA-1814"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1815" scope="external" format="html" keys="IMPALA-1815"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1816" scope="external" format="html" keys="IMPALA-1816"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1817" scope="external" format="html" keys="IMPALA-1817"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1818" scope="external" format="html" keys="IMPALA-1818"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1819" scope="external" format="html" keys="IMPALA-1819"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1820" scope="external" format="html" keys="IMPALA-1820"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1821" scope="external" format="html" keys="IMPALA-1821"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1822" scope="external" format="html" keys="IMPALA-1822"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1823" scope="external" format="html" keys="IMPALA-1823"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1824" scope="external" format="html" keys="IMPALA-1824"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1825" scope="external" format="html" keys="IMPALA-1825"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1826" scope="external" format="html" keys="IMPALA-1826"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1827" scope="external" format="html" keys="IMPALA-1827"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1828" scope="external" format="html" keys="IMPALA-1828"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1829" scope="external" format="html" keys="IMPALA-1829"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1830" scope="external" format="html" keys="IMPALA-1830"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1831" scope="external" format="html" keys="IMPALA-1831"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1832" scope="external" format="html" keys="IMPALA-1832"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1833" scope="external" format="html" keys="IMPALA-1833"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1834" scope="external" format="html" keys="IMPALA-1834"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1835" scope="external" format="html" keys="IMPALA-1835"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1836" scope="external" format="html" keys="IMPALA-1836"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1837" scope="external" format="html" keys="IMPALA-1837"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1838" scope="external" format="html" keys="IMPALA-1838"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1839" scope="external" format="html" keys="IMPALA-1839"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1840" scope="external" format="html" keys="IMPALA-1840"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1841" scope="external" format="html" keys="IMPALA-1841"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1842" scope="external" format="html" keys="IMPALA-1842"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1843" scope="external" format="html" keys="IMPALA-1843"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1844" scope="external" format="html" keys="IMPALA-1844"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1845" scope="external" format="html" keys="IMPALA-1845"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1846" scope="external" format="html" keys="IMPALA-1846"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1847" scope="external" format="html" keys="IMPALA-1847"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1848" scope="external" format="html" keys="IMPALA-1848"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1849" scope="external" format="html" keys="IMPALA-1849"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1850" scope="external" format="html" keys="IMPALA-1850"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1851" scope="external" format="html" keys="IMPALA-1851"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1852" scope="external" format="html" keys="IMPALA-1852"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1853" scope="external" format="html" keys="IMPALA-1853"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1854" scope="external" format="html" keys="IMPALA-1854"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1855" scope="external" format="html" keys="IMPALA-1855"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1856" scope="external" format="html" keys="IMPALA-1856"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1857" scope="external" format="html" keys="IMPALA-1857"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1858" scope="external" format="html" keys="IMPALA-1858"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1859" scope="external" format="html" keys="IMPALA-1859"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1860" scope="external" format="html" keys="IMPALA-1860"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1861" scope="external" format="html" keys="IMPALA-1861"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1862" scope="external" format="html" keys="IMPALA-1862"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1863" scope="external" format="html" keys="IMPALA-1863"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1864" scope="external" format="html" keys="IMPALA-1864"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1865" scope="external" format="html" keys="IMPALA-1865"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1866" scope="external" format="html" keys="IMPALA-1866"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1867" scope="external" format="html" keys="IMPALA-1867"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1868" scope="external" format="html" keys="IMPALA-1868"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1869" scope="external" format="html" keys="IMPALA-1869"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1870" scope="external" format="html" keys="IMPALA-1870"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1871" scope="external" format="html" keys="IMPALA-1871"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1872" scope="external" format="html" keys="IMPALA-1872"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1873" scope="external" format="html" keys="IMPALA-1873"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1874" scope="external" format="html" keys="IMPALA-1874"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1875" scope="external" format="html" keys="IMPALA-1875"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1876" scope="external" format="html" keys="IMPALA-1876"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1877" scope="external" format="html" keys="IMPALA-1877"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1878" scope="external" format="html" keys="IMPALA-1878"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1879" scope="external" format="html" keys="IMPALA-1879"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1880" scope="external" format="html" keys="IMPALA-1880"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1881" scope="external" format="html" keys="IMPALA-1881"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1882" scope="external" format="html" keys="IMPALA-1882"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1883" scope="external" format="html" keys="IMPALA-1883"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1884" scope="external" format="html" keys="IMPALA-1884"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1885" scope="external" format="html" keys="IMPALA-1885"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1886" scope="external" format="html" keys="IMPALA-1886"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1887" scope="external" format="html" keys="IMPALA-1887"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1888" scope="external" format="html" keys="IMPALA-1888"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1889" scope="external" format="html" keys="IMPALA-1889"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1890" scope="external" format="html" keys="IMPALA-1890"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1891" scope="external" format="html" keys="IMPALA-1891"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1892" scope="external" format="html" keys="IMPALA-1892"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1893" scope="external" format="html" keys="IMPALA-1893"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1894" scope="external" format="html" keys="IMPALA-1894"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1895" scope="external" format="html" keys="IMPALA-1895"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1896" scope="external" format="html" keys="IMPALA-1896"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1897" scope="external" format="html" keys="IMPALA-1897"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1898" scope="external" format="html" keys="IMPALA-1898"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1899" scope="external" format="html" keys="IMPALA-1899"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1900" scope="external" format="html" keys="IMPALA-1900"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1901" scope="external" format="html" keys="IMPALA-1901"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1902" scope="external" format="html" keys="IMPALA-1902"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1903" scope="external" format="html" keys="IMPALA-1903"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1904" scope="external" format="html" keys="IMPALA-1904"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1905" scope="external" format="html" keys="IMPALA-1905"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1906" scope="external" format="html" keys="IMPALA-1906"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1907" scope="external" format="html" keys="IMPALA-1907"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1908" scope="external" format="html" keys="IMPALA-1908"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1909" scope="external" format="html" keys="IMPALA-1909"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1910" scope="external" format="html" keys="IMPALA-1910"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1911" scope="external" format="html" keys="IMPALA-1911"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1912" scope="external" format="html" keys="IMPALA-1912"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1913" scope="external" format="html" keys="IMPALA-1913"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1914" scope="external" format="html" keys="IMPALA-1914"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1915" scope="external" format="html" keys="IMPALA-1915"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1916" scope="external" format="html" keys="IMPALA-1916"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1917" scope="external" format="html" keys="IMPALA-1917"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1918" scope="external" format="html" keys="IMPALA-1918"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1919" scope="external" format="html" keys="IMPALA-1919"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1920" scope="external" format="html" keys="IMPALA-1920"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1921" scope="external" format="html" keys="IMPALA-1921"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1922" scope="external" format="html" keys="IMPALA-1922"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1923" scope="external" format="html" keys="IMPALA-1923"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1924" scope="external" format="html" keys="IMPALA-1924"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1925" scope="external" format="html" keys="IMPALA-1925"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1926" scope="external" format="html" keys="IMPALA-1926"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1927" scope="external" format="html" keys="IMPALA-1927"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1928" scope="external" format="html" keys="IMPALA-1928"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1929" scope="external" format="html" keys="IMPALA-1929"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1930" scope="external" format="html" keys="IMPALA-1930"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1931" scope="external" format="html" keys="IMPALA-1931"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1932" scope="external" format="html" keys="IMPALA-1932"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1933" scope="external" format="html" keys="IMPALA-1933"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1934" scope="external" format="html" keys="IMPALA-1934"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1935" scope="external" format="html" keys="IMPALA-1935"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1936" scope="external" format="html" keys="IMPALA-1936"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1937" scope="external" format="html" keys="IMPALA-1937"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1938" scope="external" format="html" keys="IMPALA-1938"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1939" scope="external" format="html" keys="IMPALA-1939"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1940" scope="external" format="html" keys="IMPALA-1940"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1941" scope="external" format="html" keys="IMPALA-1941"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1942" scope="external" format="html" keys="IMPALA-1942"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1943" scope="external" format="html" keys="IMPALA-1943"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1944" scope="external" format="html" keys="IMPALA-1944"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1945" scope="external" format="html" keys="IMPALA-1945"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1946" scope="external" format="html" keys="IMPALA-1946"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1947" scope="external" format="html" keys="IMPALA-1947"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1948" scope="external" format="html" keys="IMPALA-1948"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1949" scope="external" format="html" keys="IMPALA-1949"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1950" scope="external" format="html" keys="IMPALA-1950"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1951" scope="external" format="html" keys="IMPALA-1951"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1952" scope="external" format="html" keys="IMPALA-1952"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1953" scope="external" format="html" keys="IMPALA-1953"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1954" scope="external" format="html" keys="IMPALA-1954"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1955" scope="external" format="html" keys="IMPALA-1955"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1956" scope="external" format="html" keys="IMPALA-1956"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1957" scope="external" format="html" keys="IMPALA-1957"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1958" scope="external" format="html" keys="IMPALA-1958"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1959" scope="external" format="html" keys="IMPALA-1959"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1960" scope="external" format="html" keys="IMPALA-1960"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1961" scope="external" format="html" keys="IMPALA-1961"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1962" scope="external" format="html" keys="IMPALA-1962"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1963" scope="external" format="html" keys="IMPALA-1963"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1964" scope="external" format="html" keys="IMPALA-1964"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1965" scope="external" format="html" keys="IMPALA-1965"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1966" scope="external" format="html" keys="IMPALA-1966"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1967" scope="external" format="html" keys="IMPALA-1967"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1968" scope="external" format="html" keys="IMPALA-1968"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1969" scope="external" format="html" keys="IMPALA-1969"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1970" scope="external" format="html" keys="IMPALA-1970"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1971" scope="external" format="html" keys="IMPALA-1971"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1972" scope="external" format="html" keys="IMPALA-1972"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1973" scope="external" format="html" keys="IMPALA-1973"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1974" scope="external" format="html" keys="IMPALA-1974"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1975" scope="external" format="html" keys="IMPALA-1975"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1976" scope="external" format="html" keys="IMPALA-1976"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1977" scope="external" format="html" keys="IMPALA-1977"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1978" scope="external" format="html" keys="IMPALA-1978"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1979" scope="external" format="html" keys="IMPALA-1979"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1980" scope="external" format="html" keys="IMPALA-1980"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1981" scope="external" format="html" keys="IMPALA-1981"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1982" scope="external" format="html" keys="IMPALA-1982"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1983" scope="external" format="html" keys="IMPALA-1983"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1984" scope="external" format="html" keys="IMPALA-1984"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1985" scope="external" format="html" keys="IMPALA-1985"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1986" scope="external" format="html" keys="IMPALA-1986"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1987" scope="external" format="html" keys="IMPALA-1987"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1988" scope="external" format="html" keys="IMPALA-1988"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1989" scope="external" format="html" keys="IMPALA-1989"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1990" scope="external" format="html" keys="IMPALA-1990"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1991" scope="external" format="html" keys="IMPALA-1991"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1992" scope="external" format="html" keys="IMPALA-1992"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1993" scope="external" format="html" keys="IMPALA-1993"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1994" scope="external" format="html" keys="IMPALA-1994"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1995" scope="external" format="html" keys="IMPALA-1995"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1996" scope="external" format="html" keys="IMPALA-1996"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1997" scope="external" format="html" keys="IMPALA-1997"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1998" scope="external" format="html" keys="IMPALA-1998"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-1999" scope="external" format="html" keys="IMPALA-1999"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2000" scope="external" format="html" keys="IMPALA-2000"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2001" scope="external" format="html" keys="IMPALA-2001"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2002" scope="external" format="html" keys="IMPALA-2002"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2003" scope="external" format="html" keys="IMPALA-2003"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2004" scope="external" format="html" keys="IMPALA-2004"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2005" scope="external" format="html" keys="IMPALA-2005"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2006" scope="external" format="html" keys="IMPALA-2006"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2007" scope="external" format="html" keys="IMPALA-2007"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2008" scope="external" format="html" keys="IMPALA-2008"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2009" scope="external" format="html" keys="IMPALA-2009"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2010" scope="external" format="html" keys="IMPALA-2010"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2011" scope="external" format="html" keys="IMPALA-2011"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2012" scope="external" format="html" keys="IMPALA-2012"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2013" scope="external" format="html" keys="IMPALA-2013"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2014" scope="external" format="html" keys="IMPALA-2014"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2015" scope="external" format="html" keys="IMPALA-2015"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2016" scope="external" format="html" keys="IMPALA-2016"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2017" scope="external" format="html" keys="IMPALA-2017"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2018" scope="external" format="html" keys="IMPALA-2018"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2019" scope="external" format="html" keys="IMPALA-2019"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2020" scope="external" format="html" keys="IMPALA-2020"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2021" scope="external" format="html" keys="IMPALA-2021"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2022" scope="external" format="html" keys="IMPALA-2022"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2023" scope="external" format="html" keys="IMPALA-2023"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2024" scope="external" format="html" keys="IMPALA-2024"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2025" scope="external" format="html" keys="IMPALA-2025"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2026" scope="external" format="html" keys="IMPALA-2026"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2027" scope="external" format="html" keys="IMPALA-2027"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2028" scope="external" format="html" keys="IMPALA-2028"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2029" scope="external" format="html" keys="IMPALA-2029"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2030" scope="external" format="html" keys="IMPALA-2030"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2031" scope="external" format="html" keys="IMPALA-2031"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2032" scope="external" format="html" keys="IMPALA-2032"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2033" scope="external" format="html" keys="IMPALA-2033"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2034" scope="external" format="html" keys="IMPALA-2034"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2035" scope="external" format="html" keys="IMPALA-2035"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2036" scope="external" format="html" keys="IMPALA-2036"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2037" scope="external" format="html" keys="IMPALA-2037"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2038" scope="external" format="html" keys="IMPALA-2038"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2039" scope="external" format="html" keys="IMPALA-2039"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2040" scope="external" format="html" keys="IMPALA-2040"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2041" scope="external" format="html" keys="IMPALA-2041"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2042" scope="external" format="html" keys="IMPALA-2042"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2043" scope="external" format="html" keys="IMPALA-2043"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2044" scope="external" format="html" keys="IMPALA-2044"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2045" scope="external" format="html" keys="IMPALA-2045"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2046" scope="external" format="html" keys="IMPALA-2046"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2047" scope="external" format="html" keys="IMPALA-2047"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2048" scope="external" format="html" keys="IMPALA-2048"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2049" scope="external" format="html" keys="IMPALA-2049"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2050" scope="external" format="html" keys="IMPALA-2050"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2051" scope="external" format="html" keys="IMPALA-2051"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2052" scope="external" format="html" keys="IMPALA-2052"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2053" scope="external" format="html" keys="IMPALA-2053"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2054" scope="external" format="html" keys="IMPALA-2054"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2055" scope="external" format="html" keys="IMPALA-2055"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2056" scope="external" format="html" keys="IMPALA-2056"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2057" scope="external" format="html" keys="IMPALA-2057"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2058" scope="external" format="html" keys="IMPALA-2058"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2059" scope="external" format="html" keys="IMPALA-2059"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2060" scope="external" format="html" keys="IMPALA-2060"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2061" scope="external" format="html" keys="IMPALA-2061"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2062" scope="external" format="html" keys="IMPALA-2062"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2063" scope="external" format="html" keys="IMPALA-2063"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2064" scope="external" format="html" keys="IMPALA-2064"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2065" scope="external" format="html" keys="IMPALA-2065"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2066" scope="external" format="html" keys="IMPALA-2066"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2067" scope="external" format="html" keys="IMPALA-2067"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2068" scope="external" format="html" keys="IMPALA-2068"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2069" scope="external" format="html" keys="IMPALA-2069"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2070" scope="external" format="html" keys="IMPALA-2070"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2071" scope="external" format="html" keys="IMPALA-2071"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2072" scope="external" format="html" keys="IMPALA-2072"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2073" scope="external" format="html" keys="IMPALA-2073"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2074" scope="external" format="html" keys="IMPALA-2074"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2075" scope="external" format="html" keys="IMPALA-2075"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2076" scope="external" format="html" keys="IMPALA-2076"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2077" scope="external" format="html" keys="IMPALA-2077"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2078" scope="external" format="html" keys="IMPALA-2078"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2079" scope="external" format="html" keys="IMPALA-2079"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2080" scope="external" format="html" keys="IMPALA-2080"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2081" scope="external" format="html" keys="IMPALA-2081"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2082" scope="external" format="html" keys="IMPALA-2082"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2083" scope="external" format="html" keys="IMPALA-2083"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2084" scope="external" format="html" keys="IMPALA-2084"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2085" scope="external" format="html" keys="IMPALA-2085"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2086" scope="external" format="html" keys="IMPALA-2086"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2087" scope="external" format="html" keys="IMPALA-2087"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2088" scope="external" format="html" keys="IMPALA-2088"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2089" scope="external" format="html" keys="IMPALA-2089"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2090" scope="external" format="html" keys="IMPALA-2090"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2091" scope="external" format="html" keys="IMPALA-2091"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2092" scope="external" format="html" keys="IMPALA-2092"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2093" scope="external" format="html" keys="IMPALA-2093"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2094" scope="external" format="html" keys="IMPALA-2094"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2095" scope="external" format="html" keys="IMPALA-2095"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2096" scope="external" format="html" keys="IMPALA-2096"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2097" scope="external" format="html" keys="IMPALA-2097"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2098" scope="external" format="html" keys="IMPALA-2098"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2099" scope="external" format="html" keys="IMPALA-2099"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2100" scope="external" format="html" keys="IMPALA-2100"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2101" scope="external" format="html" keys="IMPALA-2101"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2102" scope="external" format="html" keys="IMPALA-2102"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2103" scope="external" format="html" keys="IMPALA-2103"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2104" scope="external" format="html" keys="IMPALA-2104"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2105" scope="external" format="html" keys="IMPALA-2105"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2106" scope="external" format="html" keys="IMPALA-2106"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2107" scope="external" format="html" keys="IMPALA-2107"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2108" scope="external" format="html" keys="IMPALA-2108"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2109" scope="external" format="html" keys="IMPALA-2109"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2110" scope="external" format="html" keys="IMPALA-2110"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2111" scope="external" format="html" keys="IMPALA-2111"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2112" scope="external" format="html" keys="IMPALA-2112"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2113" scope="external" format="html" keys="IMPALA-2113"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2114" scope="external" format="html" keys="IMPALA-2114"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2115" scope="external" format="html" keys="IMPALA-2115"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2116" scope="external" format="html" keys="IMPALA-2116"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2117" scope="external" format="html" keys="IMPALA-2117"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2118" scope="external" format="html" keys="IMPALA-2118"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2119" scope="external" format="html" keys="IMPALA-2119"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2120" scope="external" format="html" keys="IMPALA-2120"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2121" scope="external" format="html" keys="IMPALA-2121"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2122" scope="external" format="html" keys="IMPALA-2122"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2123" scope="external" format="html" keys="IMPALA-2123"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2124" scope="external" format="html" keys="IMPALA-2124"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2125" scope="external" format="html" keys="IMPALA-2125"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2126" scope="external" format="html" keys="IMPALA-2126"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2127" scope="external" format="html" keys="IMPALA-2127"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2128" scope="external" format="html" keys="IMPALA-2128"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2129" scope="external" format="html" keys="IMPALA-2129"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2130" scope="external" format="html" keys="IMPALA-2130"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2131" scope="external" format="html" keys="IMPALA-2131"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2132" scope="external" format="html" keys="IMPALA-2132"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2133" scope="external" format="html" keys="IMPALA-2133"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2134" scope="external" format="html" keys="IMPALA-2134"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2135" scope="external" format="html" keys="IMPALA-2135"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2136" scope="external" format="html" keys="IMPALA-2136"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2137" scope="external" format="html" keys="IMPALA-2137"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2138" scope="external" format="html" keys="IMPALA-2138"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2139" scope="external" format="html" keys="IMPALA-2139"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2140" scope="external" format="html" keys="IMPALA-2140"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2141" scope="external" format="html" keys="IMPALA-2141"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2142" scope="external" format="html" keys="IMPALA-2142"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2143" scope="external" format="html" keys="IMPALA-2143"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2144" scope="external" format="html" keys="IMPALA-2144"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2145" scope="external" format="html" keys="IMPALA-2145"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2146" scope="external" format="html" keys="IMPALA-2146"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2147" scope="external" format="html" keys="IMPALA-2147"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2148" scope="external" format="html" keys="IMPALA-2148"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2149" scope="external" format="html" keys="IMPALA-2149"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2150" scope="external" format="html" keys="IMPALA-2150"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2151" scope="external" format="html" keys="IMPALA-2151"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2152" scope="external" format="html" keys="IMPALA-2152"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2153" scope="external" format="html" keys="IMPALA-2153"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2154" scope="external" format="html" keys="IMPALA-2154"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2155" scope="external" format="html" keys="IMPALA-2155"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2156" scope="external" format="html" keys="IMPALA-2156"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2157" scope="external" format="html" keys="IMPALA-2157"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2158" scope="external" format="html" keys="IMPALA-2158"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2159" scope="external" format="html" keys="IMPALA-2159"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2160" scope="external" format="html" keys="IMPALA-2160"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2161" scope="external" format="html" keys="IMPALA-2161"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2162" scope="external" format="html" keys="IMPALA-2162"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2163" scope="external" format="html" keys="IMPALA-2163"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2164" scope="external" format="html" keys="IMPALA-2164"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2165" scope="external" format="html" keys="IMPALA-2165"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2166" scope="external" format="html" keys="IMPALA-2166"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2167" scope="external" format="html" keys="IMPALA-2167"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2168" scope="external" format="html" keys="IMPALA-2168"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2169" scope="external" format="html" keys="IMPALA-2169"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2170" scope="external" format="html" keys="IMPALA-2170"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2171" scope="external" format="html" keys="IMPALA-2171"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2172" scope="external" format="html" keys="IMPALA-2172"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2173" scope="external" format="html" keys="IMPALA-2173"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2174" scope="external" format="html" keys="IMPALA-2174"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2175" scope="external" format="html" keys="IMPALA-2175"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2176" scope="external" format="html" keys="IMPALA-2176"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2177" scope="external" format="html" keys="IMPALA-2177"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2178" scope="external" format="html" keys="IMPALA-2178"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2179" scope="external" format="html" keys="IMPALA-2179"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2180" scope="external" format="html" keys="IMPALA-2180"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2181" scope="external" format="html" keys="IMPALA-2181"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2182" scope="external" format="html" keys="IMPALA-2182"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2183" scope="external" format="html" keys="IMPALA-2183"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2184" scope="external" format="html" keys="IMPALA-2184"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2185" scope="external" format="html" keys="IMPALA-2185"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2186" scope="external" format="html" keys="IMPALA-2186"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2187" scope="external" format="html" keys="IMPALA-2187"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2188" scope="external" format="html" keys="IMPALA-2188"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2189" scope="external" format="html" keys="IMPALA-2189"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2190" scope="external" format="html" keys="IMPALA-2190"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2191" scope="external" format="html" keys="IMPALA-2191"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2192" scope="external" format="html" keys="IMPALA-2192"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2193" scope="external" format="html" keys="IMPALA-2193"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2194" scope="external" format="html" keys="IMPALA-2194"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2195" scope="external" format="html" keys="IMPALA-2195"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2196" scope="external" format="html" keys="IMPALA-2196"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2197" scope="external" format="html" keys="IMPALA-2197"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2198" scope="external" format="html" keys="IMPALA-2198"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2199" scope="external" format="html" keys="IMPALA-2199"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2200" scope="external" format="html" keys="IMPALA-2200"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2201" scope="external" format="html" keys="IMPALA-2201"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2202" scope="external" format="html" keys="IMPALA-2202"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2203" scope="external" format="html" keys="IMPALA-2203"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2204" scope="external" format="html" keys="IMPALA-2204"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2205" scope="external" format="html" keys="IMPALA-2205"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2206" scope="external" format="html" keys="IMPALA-2206"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2207" scope="external" format="html" keys="IMPALA-2207"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2208" scope="external" format="html" keys="IMPALA-2208"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2209" scope="external" format="html" keys="IMPALA-2209"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2210" scope="external" format="html" keys="IMPALA-2210"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2211" scope="external" format="html" keys="IMPALA-2211"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2212" scope="external" format="html" keys="IMPALA-2212"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2213" scope="external" format="html" keys="IMPALA-2213"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2214" scope="external" format="html" keys="IMPALA-2214"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2215" scope="external" format="html" keys="IMPALA-2215"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2216" scope="external" format="html" keys="IMPALA-2216"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2217" scope="external" format="html" keys="IMPALA-2217"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2218" scope="external" format="html" keys="IMPALA-2218"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2219" scope="external" format="html" keys="IMPALA-2219"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2220" scope="external" format="html" keys="IMPALA-2220"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2221" scope="external" format="html" keys="IMPALA-2221"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2222" scope="external" format="html" keys="IMPALA-2222"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2223" scope="external" format="html" keys="IMPALA-2223"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2224" scope="external" format="html" keys="IMPALA-2224"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2225" scope="external" format="html" keys="IMPALA-2225"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2226" scope="external" format="html" keys="IMPALA-2226"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2227" scope="external" format="html" keys="IMPALA-2227"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2228" scope="external" format="html" keys="IMPALA-2228"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2229" scope="external" format="html" keys="IMPALA-2229"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2230" scope="external" format="html" keys="IMPALA-2230"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2231" scope="external" format="html" keys="IMPALA-2231"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2232" scope="external" format="html" keys="IMPALA-2232"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2233" scope="external" format="html" keys="IMPALA-2233"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2234" scope="external" format="html" keys="IMPALA-2234"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2235" scope="external" format="html" keys="IMPALA-2235"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2236" scope="external" format="html" keys="IMPALA-2236"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2237" scope="external" format="html" keys="IMPALA-2237"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2238" scope="external" format="html" keys="IMPALA-2238"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2239" scope="external" format="html" keys="IMPALA-2239"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2240" scope="external" format="html" keys="IMPALA-2240"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2241" scope="external" format="html" keys="IMPALA-2241"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2242" scope="external" format="html" keys="IMPALA-2242"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2243" scope="external" format="html" keys="IMPALA-2243"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2244" scope="external" format="html" keys="IMPALA-2244"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2245" scope="external" format="html" keys="IMPALA-2245"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2246" scope="external" format="html" keys="IMPALA-2246"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2247" scope="external" format="html" keys="IMPALA-2247"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2248" scope="external" format="html" keys="IMPALA-2248"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2249" scope="external" format="html" keys="IMPALA-2249"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2250" scope="external" format="html" keys="IMPALA-2250"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2251" scope="external" format="html" keys="IMPALA-2251"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2252" scope="external" format="html" keys="IMPALA-2252"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2253" scope="external" format="html" keys="IMPALA-2253"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2254" scope="external" format="html" keys="IMPALA-2254"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2255" scope="external" format="html" keys="IMPALA-2255"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2256" scope="external" format="html" keys="IMPALA-2256"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2257" scope="external" format="html" keys="IMPALA-2257"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2258" scope="external" format="html" keys="IMPALA-2258"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2259" scope="external" format="html" keys="IMPALA-2259"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2260" scope="external" format="html" keys="IMPALA-2260"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2261" scope="external" format="html" keys="IMPALA-2261"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2262" scope="external" format="html" keys="IMPALA-2262"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2263" scope="external" format="html" keys="IMPALA-2263"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2264" scope="external" format="html" keys="IMPALA-2264"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2265" scope="external" format="html" keys="IMPALA-2265"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2266" scope="external" format="html" keys="IMPALA-2266"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2267" scope="external" format="html" keys="IMPALA-2267"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2268" scope="external" format="html" keys="IMPALA-2268"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2269" scope="external" format="html" keys="IMPALA-2269"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2270" scope="external" format="html" keys="IMPALA-2270"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2271" scope="external" format="html" keys="IMPALA-2271"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2272" scope="external" format="html" keys="IMPALA-2272"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2273" scope="external" format="html" keys="IMPALA-2273"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2274" scope="external" format="html" keys="IMPALA-2274"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2275" scope="external" format="html" keys="IMPALA-2275"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2276" scope="external" format="html" keys="IMPALA-2276"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2277" scope="external" format="html" keys="IMPALA-2277"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2278" scope="external" format="html" keys="IMPALA-2278"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2279" scope="external" format="html" keys="IMPALA-2279"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2280" scope="external" format="html" keys="IMPALA-2280"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2281" scope="external" format="html" keys="IMPALA-2281"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2282" scope="external" format="html" keys="IMPALA-2282"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2283" scope="external" format="html" keys="IMPALA-2283"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2284" scope="external" format="html" keys="IMPALA-2284"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2285" scope="external" format="html" keys="IMPALA-2285"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2286" scope="external" format="html" keys="IMPALA-2286"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2287" scope="external" format="html" keys="IMPALA-2287"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2288" scope="external" format="html" keys="IMPALA-2288"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2289" scope="external" format="html" keys="IMPALA-2289"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2290" scope="external" format="html" keys="IMPALA-2290"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2291" scope="external" format="html" keys="IMPALA-2291"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2292" scope="external" format="html" keys="IMPALA-2292"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2293" scope="external" format="html" keys="IMPALA-2293"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2294" scope="external" format="html" keys="IMPALA-2294"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2295" scope="external" format="html" keys="IMPALA-2295"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2296" scope="external" format="html" keys="IMPALA-2296"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2297" scope="external" format="html" keys="IMPALA-2297"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2298" scope="external" format="html" keys="IMPALA-2298"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2299" scope="external" format="html" keys="IMPALA-2299"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2300" scope="external" format="html" keys="IMPALA-2300"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2301" scope="external" format="html" keys="IMPALA-2301"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2302" scope="external" format="html" keys="IMPALA-2302"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2303" scope="external" format="html" keys="IMPALA-2303"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2304" scope="external" format="html" keys="IMPALA-2304"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2305" scope="external" format="html" keys="IMPALA-2305"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2306" scope="external" format="html" keys="IMPALA-2306"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2307" scope="external" format="html" keys="IMPALA-2307"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2308" scope="external" format="html" keys="IMPALA-2308"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2309" scope="external" format="html" keys="IMPALA-2309"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2310" scope="external" format="html" keys="IMPALA-2310"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2311" scope="external" format="html" keys="IMPALA-2311"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2312" scope="external" format="html" keys="IMPALA-2312"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2313" scope="external" format="html" keys="IMPALA-2313"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2314" scope="external" format="html" keys="IMPALA-2314"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2315" scope="external" format="html" keys="IMPALA-2315"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2316" scope="external" format="html" keys="IMPALA-2316"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2317" scope="external" format="html" keys="IMPALA-2317"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2318" scope="external" format="html" keys="IMPALA-2318"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2319" scope="external" format="html" keys="IMPALA-2319"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2320" scope="external" format="html" keys="IMPALA-2320"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2321" scope="external" format="html" keys="IMPALA-2321"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2322" scope="external" format="html" keys="IMPALA-2322"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2323" scope="external" format="html" keys="IMPALA-2323"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2324" scope="external" format="html" keys="IMPALA-2324"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2325" scope="external" format="html" keys="IMPALA-2325"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2326" scope="external" format="html" keys="IMPALA-2326"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2327" scope="external" format="html" keys="IMPALA-2327"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2328" scope="external" format="html" keys="IMPALA-2328"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2329" scope="external" format="html" keys="IMPALA-2329"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2330" scope="external" format="html" keys="IMPALA-2330"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2331" scope="external" format="html" keys="IMPALA-2331"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2332" scope="external" format="html" keys="IMPALA-2332"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2333" scope="external" format="html" keys="IMPALA-2333"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2334" scope="external" format="html" keys="IMPALA-2334"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2335" scope="external" format="html" keys="IMPALA-2335"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2336" scope="external" format="html" keys="IMPALA-2336"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2337" scope="external" format="html" keys="IMPALA-2337"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2338" scope="external" format="html" keys="IMPALA-2338"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2339" scope="external" format="html" keys="IMPALA-2339"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2340" scope="external" format="html" keys="IMPALA-2340"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2341" scope="external" format="html" keys="IMPALA-2341"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2342" scope="external" format="html" keys="IMPALA-2342"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2343" scope="external" format="html" keys="IMPALA-2343"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2344" scope="external" format="html" keys="IMPALA-2344"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2345" scope="external" format="html" keys="IMPALA-2345"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2346" scope="external" format="html" keys="IMPALA-2346"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2347" scope="external" format="html" keys="IMPALA-2347"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2348" scope="external" format="html" keys="IMPALA-2348"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2349" scope="external" format="html" keys="IMPALA-2349"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2350" scope="external" format="html" keys="IMPALA-2350"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2351" scope="external" format="html" keys="IMPALA-2351"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2352" scope="external" format="html" keys="IMPALA-2352"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2353" scope="external" format="html" keys="IMPALA-2353"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2354" scope="external" format="html" keys="IMPALA-2354"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2355" scope="external" format="html" keys="IMPALA-2355"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2356" scope="external" format="html" keys="IMPALA-2356"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2357" scope="external" format="html" keys="IMPALA-2357"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2358" scope="external" format="html" keys="IMPALA-2358"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2359" scope="external" format="html" keys="IMPALA-2359"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2360" scope="external" format="html" keys="IMPALA-2360"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2361" scope="external" format="html" keys="IMPALA-2361"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2362" scope="external" format="html" keys="IMPALA-2362"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2363" scope="external" format="html" keys="IMPALA-2363"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2364" scope="external" format="html" keys="IMPALA-2364"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2365" scope="external" format="html" keys="IMPALA-2365"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2366" scope="external" format="html" keys="IMPALA-2366"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2367" scope="external" format="html" keys="IMPALA-2367"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2368" scope="external" format="html" keys="IMPALA-2368"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2369" scope="external" format="html" keys="IMPALA-2369"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2370" scope="external" format="html" keys="IMPALA-2370"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2371" scope="external" format="html" keys="IMPALA-2371"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2372" scope="external" format="html" keys="IMPALA-2372"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2373" scope="external" format="html" keys="IMPALA-2373"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2374" scope="external" format="html" keys="IMPALA-2374"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2375" scope="external" format="html" keys="IMPALA-2375"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2376" scope="external" format="html" keys="IMPALA-2376"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2377" scope="external" format="html" keys="IMPALA-2377"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2378" scope="external" format="html" keys="IMPALA-2378"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2379" scope="external" format="html" keys="IMPALA-2379"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2380" scope="external" format="html" keys="IMPALA-2380"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2381" scope="external" format="html" keys="IMPALA-2381"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2382" scope="external" format="html" keys="IMPALA-2382"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2383" scope="external" format="html" keys="IMPALA-2383"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2384" scope="external" format="html" keys="IMPALA-2384"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2385" scope="external" format="html" keys="IMPALA-2385"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2386" scope="external" format="html" keys="IMPALA-2386"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2387" scope="external" format="html" keys="IMPALA-2387"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2388" scope="external" format="html" keys="IMPALA-2388"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2389" scope="external" format="html" keys="IMPALA-2389"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2390" scope="external" format="html" keys="IMPALA-2390"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2391" scope="external" format="html" keys="IMPALA-2391"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2392" scope="external" format="html" keys="IMPALA-2392"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2393" scope="external" format="html" keys="IMPALA-2393"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2394" scope="external" format="html" keys="IMPALA-2394"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2395" scope="external" format="html" keys="IMPALA-2395"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2396" scope="external" format="html" keys="IMPALA-2396"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2397" scope="external" format="html" keys="IMPALA-2397"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2398" scope="external" format="html" keys="IMPALA-2398"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2399" scope="external" format="html" keys="IMPALA-2399"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2400" scope="external" format="html" keys="IMPALA-2400"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2401" scope="external" format="html" keys="IMPALA-2401"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2402" scope="external" format="html" keys="IMPALA-2402"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2403" scope="external" format="html" keys="IMPALA-2403"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2404" scope="external" format="html" keys="IMPALA-2404"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2405" scope="external" format="html" keys="IMPALA-2405"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2406" scope="external" format="html" keys="IMPALA-2406"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2407" scope="external" format="html" keys="IMPALA-2407"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2408" scope="external" format="html" keys="IMPALA-2408"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2409" scope="external" format="html" keys="IMPALA-2409"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2410" scope="external" format="html" keys="IMPALA-2410"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2411" scope="external" format="html" keys="IMPALA-2411"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2412" scope="external" format="html" keys="IMPALA-2412"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2413" scope="external" format="html" keys="IMPALA-2413"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2414" scope="external" format="html" keys="IMPALA-2414"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2415" scope="external" format="html" keys="IMPALA-2415"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2416" scope="external" format="html" keys="IMPALA-2416"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2417" scope="external" format="html" keys="IMPALA-2417"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2418" scope="external" format="html" keys="IMPALA-2418"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2419" scope="external" format="html" keys="IMPALA-2419"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2420" scope="external" format="html" keys="IMPALA-2420"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2421" scope="external" format="html" keys="IMPALA-2421"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2422" scope="external" format="html" keys="IMPALA-2422"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2423" scope="external" format="html" keys="IMPALA-2423"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2424" scope="external" format="html" keys="IMPALA-2424"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2425" scope="external" format="html" keys="IMPALA-2425"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2426" scope="external" format="html" keys="IMPALA-2426"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2427" scope="external" format="html" keys="IMPALA-2427"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2428" scope="external" format="html" keys="IMPALA-2428"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2429" scope="external" format="html" keys="IMPALA-2429"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2430" scope="external" format="html" keys="IMPALA-2430"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2431" scope="external" format="html" keys="IMPALA-2431"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2432" scope="external" format="html" keys="IMPALA-2432"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2433" scope="external" format="html" keys="IMPALA-2433"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2434" scope="external" format="html" keys="IMPALA-2434"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2435" scope="external" format="html" keys="IMPALA-2435"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2436" scope="external" format="html" keys="IMPALA-2436"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2437" scope="external" format="html" keys="IMPALA-2437"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2438" scope="external" format="html" keys="IMPALA-2438"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2439" scope="external" format="html" keys="IMPALA-2439"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2440" scope="external" format="html" keys="IMPALA-2440"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2441" scope="external" format="html" keys="IMPALA-2441"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2442" scope="external" format="html" keys="IMPALA-2442"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2443" scope="external" format="html" keys="IMPALA-2443"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2444" scope="external" format="html" keys="IMPALA-2444"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2445" scope="external" format="html" keys="IMPALA-2445"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2446" scope="external" format="html" keys="IMPALA-2446"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2447" scope="external" format="html" keys="IMPALA-2447"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2448" scope="external" format="html" keys="IMPALA-2448"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2449" scope="external" format="html" keys="IMPALA-2449"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2450" scope="external" format="html" keys="IMPALA-2450"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2451" scope="external" format="html" keys="IMPALA-2451"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2452" scope="external" format="html" keys="IMPALA-2452"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2453" scope="external" format="html" keys="IMPALA-2453"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2454" scope="external" format="html" keys="IMPALA-2454"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2455" scope="external" format="html" keys="IMPALA-2455"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2456" scope="external" format="html" keys="IMPALA-2456"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2457" scope="external" format="html" keys="IMPALA-2457"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2458" scope="external" format="html" keys="IMPALA-2458"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2459" scope="external" format="html" keys="IMPALA-2459"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2460" scope="external" format="html" keys="IMPALA-2460"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2461" scope="external" format="html" keys="IMPALA-2461"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2462" scope="external" format="html" keys="IMPALA-2462"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2463" scope="external" format="html" keys="IMPALA-2463"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2464" scope="external" format="html" keys="IMPALA-2464"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2465" scope="external" format="html" keys="IMPALA-2465"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2466" scope="external" format="html" keys="IMPALA-2466"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2467" scope="external" format="html" keys="IMPALA-2467"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2468" scope="external" format="html" keys="IMPALA-2468"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2469" scope="external" format="html" keys="IMPALA-2469"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2470" scope="external" format="html" keys="IMPALA-2470"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2471" scope="external" format="html" keys="IMPALA-2471"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2472" scope="external" format="html" keys="IMPALA-2472"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2473" scope="external" format="html" keys="IMPALA-2473"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2474" scope="external" format="html" keys="IMPALA-2474"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2475" scope="external" format="html" keys="IMPALA-2475"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2476" scope="external" format="html" keys="IMPALA-2476"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2477" scope="external" format="html" keys="IMPALA-2477"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2478" scope="external" format="html" keys="IMPALA-2478"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2479" scope="external" format="html" keys="IMPALA-2479"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2480" scope="external" format="html" keys="IMPALA-2480"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2481" scope="external" format="html" keys="IMPALA-2481"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2482" scope="external" format="html" keys="IMPALA-2482"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2483" scope="external" format="html" keys="IMPALA-2483"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2484" scope="external" format="html" keys="IMPALA-2484"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2485" scope="external" format="html" keys="IMPALA-2485"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2486" scope="external" format="html" keys="IMPALA-2486"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2487" scope="external" format="html" keys="IMPALA-2487"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2488" scope="external" format="html" keys="IMPALA-2488"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2489" scope="external" format="html" keys="IMPALA-2489"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2490" scope="external" format="html" keys="IMPALA-2490"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2491" scope="external" format="html" keys="IMPALA-2491"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2492" scope="external" format="html" keys="IMPALA-2492"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2493" scope="external" format="html" keys="IMPALA-2493"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2494" scope="external" format="html" keys="IMPALA-2494"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2495" scope="external" format="html" keys="IMPALA-2495"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2496" scope="external" format="html" keys="IMPALA-2496"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2497" scope="external" format="html" keys="IMPALA-2497"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2498" scope="external" format="html" keys="IMPALA-2498"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2499" scope="external" format="html" keys="IMPALA-2499"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2500" scope="external" format="html" keys="IMPALA-2500"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2501" scope="external" format="html" keys="IMPALA-2501"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2502" scope="external" format="html" keys="IMPALA-2502"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2503" scope="external" format="html" keys="IMPALA-2503"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2504" scope="external" format="html" keys="IMPALA-2504"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2505" scope="external" format="html" keys="IMPALA-2505"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2506" scope="external" format="html" keys="IMPALA-2506"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2507" scope="external" format="html" keys="IMPALA-2507"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2508" scope="external" format="html" keys="IMPALA-2508"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2509" scope="external" format="html" keys="IMPALA-2509"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2510" scope="external" format="html" keys="IMPALA-2510"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2511" scope="external" format="html" keys="IMPALA-2511"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2512" scope="external" format="html" keys="IMPALA-2512"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2513" scope="external" format="html" keys="IMPALA-2513"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2514" scope="external" format="html" keys="IMPALA-2514"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2515" scope="external" format="html" keys="IMPALA-2515"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2516" scope="external" format="html" keys="IMPALA-2516"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2517" scope="external" format="html" keys="IMPALA-2517"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2518" scope="external" format="html" keys="IMPALA-2518"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2519" scope="external" format="html" keys="IMPALA-2519"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2520" scope="external" format="html" keys="IMPALA-2520"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2521" scope="external" format="html" keys="IMPALA-2521"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2522" scope="external" format="html" keys="IMPALA-2522"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2523" scope="external" format="html" keys="IMPALA-2523"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2524" scope="external" format="html" keys="IMPALA-2524"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2525" scope="external" format="html" keys="IMPALA-2525"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2526" scope="external" format="html" keys="IMPALA-2526"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2527" scope="external" format="html" keys="IMPALA-2527"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2528" scope="external" format="html" keys="IMPALA-2528"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2529" scope="external" format="html" keys="IMPALA-2529"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2530" scope="external" format="html" keys="IMPALA-2530"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2531" scope="external" format="html" keys="IMPALA-2531"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2532" scope="external" format="html" keys="IMPALA-2532"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2533" scope="external" format="html" keys="IMPALA-2533"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2534" scope="external" format="html" keys="IMPALA-2534"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2535" scope="external" format="html" keys="IMPALA-2535"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2536" scope="external" format="html" keys="IMPALA-2536"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2537" scope="external" format="html" keys="IMPALA-2537"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2538" scope="external" format="html" keys="IMPALA-2538"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2539" scope="external" format="html" keys="IMPALA-2539"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2540" scope="external" format="html" keys="IMPALA-2540"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2541" scope="external" format="html" keys="IMPALA-2541"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2542" scope="external" format="html" keys="IMPALA-2542"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2543" scope="external" format="html" keys="IMPALA-2543"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2544" scope="external" format="html" keys="IMPALA-2544"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2545" scope="external" format="html" keys="IMPALA-2545"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2546" scope="external" format="html" keys="IMPALA-2546"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2547" scope="external" format="html" keys="IMPALA-2547"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2548" scope="external" format="html" keys="IMPALA-2548"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2549" scope="external" format="html" keys="IMPALA-2549"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2550" scope="external" format="html" keys="IMPALA-2550"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2551" scope="external" format="html" keys="IMPALA-2551"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2552" scope="external" format="html" keys="IMPALA-2552"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2553" scope="external" format="html" keys="IMPALA-2553"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2554" scope="external" format="html" keys="IMPALA-2554"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2555" scope="external" format="html" keys="IMPALA-2555"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2556" scope="external" format="html" keys="IMPALA-2556"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2557" scope="external" format="html" keys="IMPALA-2557"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2558" scope="external" format="html" keys="IMPALA-2558"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2559" scope="external" format="html" keys="IMPALA-2559"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2560" scope="external" format="html" keys="IMPALA-2560"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2561" scope="external" format="html" keys="IMPALA-2561"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2562" scope="external" format="html" keys="IMPALA-2562"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2563" scope="external" format="html" keys="IMPALA-2563"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2564" scope="external" format="html" keys="IMPALA-2564"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2565" scope="external" format="html" keys="IMPALA-2565"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2566" scope="external" format="html" keys="IMPALA-2566"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2567" scope="external" format="html" keys="IMPALA-2567"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2568" scope="external" format="html" keys="IMPALA-2568"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2569" scope="external" format="html" keys="IMPALA-2569"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2570" scope="external" format="html" keys="IMPALA-2570"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2571" scope="external" format="html" keys="IMPALA-2571"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2572" scope="external" format="html" keys="IMPALA-2572"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2573" scope="external" format="html" keys="IMPALA-2573"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2574" scope="external" format="html" keys="IMPALA-2574"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2575" scope="external" format="html" keys="IMPALA-2575"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2576" scope="external" format="html" keys="IMPALA-2576"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2577" scope="external" format="html" keys="IMPALA-2577"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2578" scope="external" format="html" keys="IMPALA-2578"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2579" scope="external" format="html" keys="IMPALA-2579"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2580" scope="external" format="html" keys="IMPALA-2580"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2581" scope="external" format="html" keys="IMPALA-2581"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2582" scope="external" format="html" keys="IMPALA-2582"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2583" scope="external" format="html" keys="IMPALA-2583"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2584" scope="external" format="html" keys="IMPALA-2584"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2585" scope="external" format="html" keys="IMPALA-2585"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2586" scope="external" format="html" keys="IMPALA-2586"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2587" scope="external" format="html" keys="IMPALA-2587"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2588" scope="external" format="html" keys="IMPALA-2588"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2589" scope="external" format="html" keys="IMPALA-2589"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2590" scope="external" format="html" keys="IMPALA-2590"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2591" scope="external" format="html" keys="IMPALA-2591"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2592" scope="external" format="html" keys="IMPALA-2592"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2593" scope="external" format="html" keys="IMPALA-2593"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2594" scope="external" format="html" keys="IMPALA-2594"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2595" scope="external" format="html" keys="IMPALA-2595"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2596" scope="external" format="html" keys="IMPALA-2596"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2597" scope="external" format="html" keys="IMPALA-2597"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2598" scope="external" format="html" keys="IMPALA-2598"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2599" scope="external" format="html" keys="IMPALA-2599"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2600" scope="external" format="html" keys="IMPALA-2600"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2601" scope="external" format="html" keys="IMPALA-2601"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2602" scope="external" format="html" keys="IMPALA-2602"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2603" scope="external" format="html" keys="IMPALA-2603"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2604" scope="external" format="html" keys="IMPALA-2604"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2605" scope="external" format="html" keys="IMPALA-2605"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2606" scope="external" format="html" keys="IMPALA-2606"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2607" scope="external" format="html" keys="IMPALA-2607"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2608" scope="external" format="html" keys="IMPALA-2608"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2609" scope="external" format="html" keys="IMPALA-2609"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2610" scope="external" format="html" keys="IMPALA-2610"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2611" scope="external" format="html" keys="IMPALA-2611"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2612" scope="external" format="html" keys="IMPALA-2612"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2613" scope="external" format="html" keys="IMPALA-2613"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2614" scope="external" format="html" keys="IMPALA-2614"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2615" scope="external" format="html" keys="IMPALA-2615"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2616" scope="external" format="html" keys="IMPALA-2616"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2617" scope="external" format="html" keys="IMPALA-2617"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2618" scope="external" format="html" keys="IMPALA-2618"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2619" scope="external" format="html" keys="IMPALA-2619"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2620" scope="external" format="html" keys="IMPALA-2620"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2621" scope="external" format="html" keys="IMPALA-2621"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2622" scope="external" format="html" keys="IMPALA-2622"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2623" scope="external" format="html" keys="IMPALA-2623"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2624" scope="external" format="html" keys="IMPALA-2624"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2625" scope="external" format="html" keys="IMPALA-2625"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2626" scope="external" format="html" keys="IMPALA-2626"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2627" scope="external" format="html" keys="IMPALA-2627"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2628" scope="external" format="html" keys="IMPALA-2628"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2629" scope="external" format="html" keys="IMPALA-2629"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2630" scope="external" format="html" keys="IMPALA-2630"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2631" scope="external" format="html" keys="IMPALA-2631"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2632" scope="external" format="html" keys="IMPALA-2632"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2633" scope="external" format="html" keys="IMPALA-2633"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2634" scope="external" format="html" keys="IMPALA-2634"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2635" scope="external" format="html" keys="IMPALA-2635"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2636" scope="external" format="html" keys="IMPALA-2636"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2637" scope="external" format="html" keys="IMPALA-2637"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2638" scope="external" format="html" keys="IMPALA-2638"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2639" scope="external" format="html" keys="IMPALA-2639"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2640" scope="external" format="html" keys="IMPALA-2640"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2641" scope="external" format="html" keys="IMPALA-2641"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2642" scope="external" format="html" keys="IMPALA-2642"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2643" scope="external" format="html" keys="IMPALA-2643"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2644" scope="external" format="html" keys="IMPALA-2644"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2645" scope="external" format="html" keys="IMPALA-2645"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2646" scope="external" format="html" keys="IMPALA-2646"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2647" scope="external" format="html" keys="IMPALA-2647"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2648" scope="external" format="html" keys="IMPALA-2648"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2649" scope="external" format="html" keys="IMPALA-2649"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2650" scope="external" format="html" keys="IMPALA-2650"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2651" scope="external" format="html" keys="IMPALA-2651"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2652" scope="external" format="html" keys="IMPALA-2652"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2653" scope="external" format="html" keys="IMPALA-2653"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2654" scope="external" format="html" keys="IMPALA-2654"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2655" scope="external" format="html" keys="IMPALA-2655"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2656" scope="external" format="html" keys="IMPALA-2656"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2657" scope="external" format="html" keys="IMPALA-2657"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2658" scope="external" format="html" keys="IMPALA-2658"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2659" scope="external" format="html" keys="IMPALA-2659"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2660" scope="external" format="html" keys="IMPALA-2660"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2661" scope="external" format="html" keys="IMPALA-2661"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2662" scope="external" format="html" keys="IMPALA-2662"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2663" scope="external" format="html" keys="IMPALA-2663"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2664" scope="external" format="html" keys="IMPALA-2664"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2665" scope="external" format="html" keys="IMPALA-2665"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2666" scope="external" format="html" keys="IMPALA-2666"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2667" scope="external" format="html" keys="IMPALA-2667"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2668" scope="external" format="html" keys="IMPALA-2668"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2669" scope="external" format="html" keys="IMPALA-2669"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2670" scope="external" format="html" keys="IMPALA-2670"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2671" scope="external" format="html" keys="IMPALA-2671"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2672" scope="external" format="html" keys="IMPALA-2672"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2673" scope="external" format="html" keys="IMPALA-2673"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2674" scope="external" format="html" keys="IMPALA-2674"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2675" scope="external" format="html" keys="IMPALA-2675"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2676" scope="external" format="html" keys="IMPALA-2676"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2677" scope="external" format="html" keys="IMPALA-2677"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2678" scope="external" format="html" keys="IMPALA-2678"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2679" scope="external" format="html" keys="IMPALA-2679"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2680" scope="external" format="html" keys="IMPALA-2680"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2681" scope="external" format="html" keys="IMPALA-2681"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2682" scope="external" format="html" keys="IMPALA-2682"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2683" scope="external" format="html" keys="IMPALA-2683"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2684" scope="external" format="html" keys="IMPALA-2684"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2685" scope="external" format="html" keys="IMPALA-2685"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2686" scope="external" format="html" keys="IMPALA-2686"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2687" scope="external" format="html" keys="IMPALA-2687"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2688" scope="external" format="html" keys="IMPALA-2688"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2689" scope="external" format="html" keys="IMPALA-2689"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2690" scope="external" format="html" keys="IMPALA-2690"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2691" scope="external" format="html" keys="IMPALA-2691"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2692" scope="external" format="html" keys="IMPALA-2692"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2693" scope="external" format="html" keys="IMPALA-2693"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2694" scope="external" format="html" keys="IMPALA-2694"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2695" scope="external" format="html" keys="IMPALA-2695"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2696" scope="external" format="html" keys="IMPALA-2696"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2697" scope="external" format="html" keys="IMPALA-2697"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2698" scope="external" format="html" keys="IMPALA-2698"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2699" scope="external" format="html" keys="IMPALA-2699"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2700" scope="external" format="html" keys="IMPALA-2700"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2701" scope="external" format="html" keys="IMPALA-2701"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2702" scope="external" format="html" keys="IMPALA-2702"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2703" scope="external" format="html" keys="IMPALA-2703"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2704" scope="external" format="html" keys="IMPALA-2704"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2705" scope="external" format="html" keys="IMPALA-2705"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2706" scope="external" format="html" keys="IMPALA-2706"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2707" scope="external" format="html" keys="IMPALA-2707"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2708" scope="external" format="html" keys="IMPALA-2708"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2709" scope="external" format="html" keys="IMPALA-2709"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2710" scope="external" format="html" keys="IMPALA-2710"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2711" scope="external" format="html" keys="IMPALA-2711"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2712" scope="external" format="html" keys="IMPALA-2712"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2713" scope="external" format="html" keys="IMPALA-2713"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2714" scope="external" format="html" keys="IMPALA-2714"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2715" scope="external" format="html" keys="IMPALA-2715"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2716" scope="external" format="html" keys="IMPALA-2716"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2717" scope="external" format="html" keys="IMPALA-2717"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2718" scope="external" format="html" keys="IMPALA-2718"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2719" scope="external" format="html" keys="IMPALA-2719"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2720" scope="external" format="html" keys="IMPALA-2720"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2721" scope="external" format="html" keys="IMPALA-2721"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2722" scope="external" format="html" keys="IMPALA-2722"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2723" scope="external" format="html" keys="IMPALA-2723"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2724" scope="external" format="html" keys="IMPALA-2724"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2725" scope="external" format="html" keys="IMPALA-2725"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2726" scope="external" format="html" keys="IMPALA-2726"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2727" scope="external" format="html" keys="IMPALA-2727"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2728" scope="external" format="html" keys="IMPALA-2728"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2729" scope="external" format="html" keys="IMPALA-2729"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2730" scope="external" format="html" keys="IMPALA-2730"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2731" scope="external" format="html" keys="IMPALA-2731"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2732" scope="external" format="html" keys="IMPALA-2732"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2733" scope="external" format="html" keys="IMPALA-2733"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2734" scope="external" format="html" keys="IMPALA-2734"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2735" scope="external" format="html" keys="IMPALA-2735"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2736" scope="external" format="html" keys="IMPALA-2736"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2737" scope="external" format="html" keys="IMPALA-2737"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2738" scope="external" format="html" keys="IMPALA-2738"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2739" scope="external" format="html" keys="IMPALA-2739"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2740" scope="external" format="html" keys="IMPALA-2740"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2741" scope="external" format="html" keys="IMPALA-2741"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2742" scope="external" format="html" keys="IMPALA-2742"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2743" scope="external" format="html" keys="IMPALA-2743"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2744" scope="external" format="html" keys="IMPALA-2744"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2745" scope="external" format="html" keys="IMPALA-2745"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2746" scope="external" format="html" keys="IMPALA-2746"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2747" scope="external" format="html" keys="IMPALA-2747"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2748" scope="external" format="html" keys="IMPALA-2748"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2749" scope="external" format="html" keys="IMPALA-2749"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2750" scope="external" format="html" keys="IMPALA-2750"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2751" scope="external" format="html" keys="IMPALA-2751"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2752" scope="external" format="html" keys="IMPALA-2752"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2753" scope="external" format="html" keys="IMPALA-2753"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2754" scope="external" format="html" keys="IMPALA-2754"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2755" scope="external" format="html" keys="IMPALA-2755"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2756" scope="external" format="html" keys="IMPALA-2756"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2757" scope="external" format="html" keys="IMPALA-2757"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2758" scope="external" format="html" keys="IMPALA-2758"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2759" scope="external" format="html" keys="IMPALA-2759"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2760" scope="external" format="html" keys="IMPALA-2760"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2761" scope="external" format="html" keys="IMPALA-2761"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2762" scope="external" format="html" keys="IMPALA-2762"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2763" scope="external" format="html" keys="IMPALA-2763"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2764" scope="external" format="html" keys="IMPALA-2764"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2765" scope="external" format="html" keys="IMPALA-2765"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2766" scope="external" format="html" keys="IMPALA-2766"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2767" scope="external" format="html" keys="IMPALA-2767"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2768" scope="external" format="html" keys="IMPALA-2768"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2769" scope="external" format="html" keys="IMPALA-2769"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2770" scope="external" format="html" keys="IMPALA-2770"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2771" scope="external" format="html" keys="IMPALA-2771"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2772" scope="external" format="html" keys="IMPALA-2772"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2773" scope="external" format="html" keys="IMPALA-2773"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2774" scope="external" format="html" keys="IMPALA-2774"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2775" scope="external" format="html" keys="IMPALA-2775"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2776" scope="external" format="html" keys="IMPALA-2776"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2777" scope="external" format="html" keys="IMPALA-2777"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2778" scope="external" format="html" keys="IMPALA-2778"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2779" scope="external" format="html" keys="IMPALA-2779"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2780" scope="external" format="html" keys="IMPALA-2780"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2781" scope="external" format="html" keys="IMPALA-2781"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2782" scope="external" format="html" keys="IMPALA-2782"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2783" scope="external" format="html" keys="IMPALA-2783"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2784" scope="external" format="html" keys="IMPALA-2784"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2785" scope="external" format="html" keys="IMPALA-2785"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2786" scope="external" format="html" keys="IMPALA-2786"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2787" scope="external" format="html" keys="IMPALA-2787"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2788" scope="external" format="html" keys="IMPALA-2788"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2789" scope="external" format="html" keys="IMPALA-2789"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2790" scope="external" format="html" keys="IMPALA-2790"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2791" scope="external" format="html" keys="IMPALA-2791"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2792" scope="external" format="html" keys="IMPALA-2792"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2793" scope="external" format="html" keys="IMPALA-2793"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2794" scope="external" format="html" keys="IMPALA-2794"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2795" scope="external" format="html" keys="IMPALA-2795"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2796" scope="external" format="html" keys="IMPALA-2796"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2797" scope="external" format="html" keys="IMPALA-2797"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2798" scope="external" format="html" keys="IMPALA-2798"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2799" scope="external" format="html" keys="IMPALA-2799"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2800" scope="external" format="html" keys="IMPALA-2800"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2801" scope="external" format="html" keys="IMPALA-2801"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2802" scope="external" format="html" keys="IMPALA-2802"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2803" scope="external" format="html" keys="IMPALA-2803"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2804" scope="external" format="html" keys="IMPALA-2804"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2805" scope="external" format="html" keys="IMPALA-2805"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2806" scope="external" format="html" keys="IMPALA-2806"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2807" scope="external" format="html" keys="IMPALA-2807"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2808" scope="external" format="html" keys="IMPALA-2808"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2809" scope="external" format="html" keys="IMPALA-2809"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2810" scope="external" format="html" keys="IMPALA-2810"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2811" scope="external" format="html" keys="IMPALA-2811"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2812" scope="external" format="html" keys="IMPALA-2812"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2813" scope="external" format="html" keys="IMPALA-2813"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2814" scope="external" format="html" keys="IMPALA-2814"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2815" scope="external" format="html" keys="IMPALA-2815"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2816" scope="external" format="html" keys="IMPALA-2816"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2817" scope="external" format="html" keys="IMPALA-2817"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2818" scope="external" format="html" keys="IMPALA-2818"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2819" scope="external" format="html" keys="IMPALA-2819"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2820" scope="external" format="html" keys="IMPALA-2820"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2821" scope="external" format="html" keys="IMPALA-2821"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2822" scope="external" format="html" keys="IMPALA-2822"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2823" scope="external" format="html" keys="IMPALA-2823"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2824" scope="external" format="html" keys="IMPALA-2824"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2825" scope="external" format="html" keys="IMPALA-2825"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2826" scope="external" format="html" keys="IMPALA-2826"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2827" scope="external" format="html" keys="IMPALA-2827"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2828" scope="external" format="html" keys="IMPALA-2828"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2829" scope="external" format="html" keys="IMPALA-2829"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2830" scope="external" format="html" keys="IMPALA-2830"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2831" scope="external" format="html" keys="IMPALA-2831"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2832" scope="external" format="html" keys="IMPALA-2832"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2833" scope="external" format="html" keys="IMPALA-2833"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2834" scope="external" format="html" keys="IMPALA-2834"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2835" scope="external" format="html" keys="IMPALA-2835"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2836" scope="external" format="html" keys="IMPALA-2836"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2837" scope="external" format="html" keys="IMPALA-2837"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2838" scope="external" format="html" keys="IMPALA-2838"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2839" scope="external" format="html" keys="IMPALA-2839"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2840" scope="external" format="html" keys="IMPALA-2840"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2841" scope="external" format="html" keys="IMPALA-2841"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2842" scope="external" format="html" keys="IMPALA-2842"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2843" scope="external" format="html" keys="IMPALA-2843"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2844" scope="external" format="html" keys="IMPALA-2844"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2845" scope="external" format="html" keys="IMPALA-2845"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2846" scope="external" format="html" keys="IMPALA-2846"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2847" scope="external" format="html" keys="IMPALA-2847"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2848" scope="external" format="html" keys="IMPALA-2848"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2849" scope="external" format="html" keys="IMPALA-2849"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2850" scope="external" format="html" keys="IMPALA-2850"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2851" scope="external" format="html" keys="IMPALA-2851"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2852" scope="external" format="html" keys="IMPALA-2852"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2853" scope="external" format="html" keys="IMPALA-2853"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2854" scope="external" format="html" keys="IMPALA-2854"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2855" scope="external" format="html" keys="IMPALA-2855"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2856" scope="external" format="html" keys="IMPALA-2856"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2857" scope="external" format="html" keys="IMPALA-2857"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2858" scope="external" format="html" keys="IMPALA-2858"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2859" scope="external" format="html" keys="IMPALA-2859"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2860" scope="external" format="html" keys="IMPALA-2860"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2861" scope="external" format="html" keys="IMPALA-2861"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2862" scope="external" format="html" keys="IMPALA-2862"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2863" scope="external" format="html" keys="IMPALA-2863"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2864" scope="external" format="html" keys="IMPALA-2864"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2865" scope="external" format="html" keys="IMPALA-2865"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2866" scope="external" format="html" keys="IMPALA-2866"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2867" scope="external" format="html" keys="IMPALA-2867"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2868" scope="external" format="html" keys="IMPALA-2868"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2869" scope="external" format="html" keys="IMPALA-2869"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2870" scope="external" format="html" keys="IMPALA-2870"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2871" scope="external" format="html" keys="IMPALA-2871"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2872" scope="external" format="html" keys="IMPALA-2872"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2873" scope="external" format="html" keys="IMPALA-2873"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2874" scope="external" format="html" keys="IMPALA-2874"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2875" scope="external" format="html" keys="IMPALA-2875"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2876" scope="external" format="html" keys="IMPALA-2876"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2877" scope="external" format="html" keys="IMPALA-2877"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2878" scope="external" format="html" keys="IMPALA-2878"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2879" scope="external" format="html" keys="IMPALA-2879"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2880" scope="external" format="html" keys="IMPALA-2880"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2881" scope="external" format="html" keys="IMPALA-2881"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2882" scope="external" format="html" keys="IMPALA-2882"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2883" scope="external" format="html" keys="IMPALA-2883"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2884" scope="external" format="html" keys="IMPALA-2884"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2885" scope="external" format="html" keys="IMPALA-2885"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2886" scope="external" format="html" keys="IMPALA-2886"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2887" scope="external" format="html" keys="IMPALA-2887"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2888" scope="external" format="html" keys="IMPALA-2888"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2889" scope="external" format="html" keys="IMPALA-2889"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2890" scope="external" format="html" keys="IMPALA-2890"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2891" scope="external" format="html" keys="IMPALA-2891"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2892" scope="external" format="html" keys="IMPALA-2892"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2893" scope="external" format="html" keys="IMPALA-2893"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2894" scope="external" format="html" keys="IMPALA-2894"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2895" scope="external" format="html" keys="IMPALA-2895"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2896" scope="external" format="html" keys="IMPALA-2896"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2897" scope="external" format="html" keys="IMPALA-2897"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2898" scope="external" format="html" keys="IMPALA-2898"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2899" scope="external" format="html" keys="IMPALA-2899"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2900" scope="external" format="html" keys="IMPALA-2900"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2901" scope="external" format="html" keys="IMPALA-2901"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2902" scope="external" format="html" keys="IMPALA-2902"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2903" scope="external" format="html" keys="IMPALA-2903"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2904" scope="external" format="html" keys="IMPALA-2904"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2905" scope="external" format="html" keys="IMPALA-2905"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2906" scope="external" format="html" keys="IMPALA-2906"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2907" scope="external" format="html" keys="IMPALA-2907"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2908" scope="external" format="html" keys="IMPALA-2908"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2909" scope="external" format="html" keys="IMPALA-2909"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2910" scope="external" format="html" keys="IMPALA-2910"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2911" scope="external" format="html" keys="IMPALA-2911"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2912" scope="external" format="html" keys="IMPALA-2912"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2913" scope="external" format="html" keys="IMPALA-2913"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2914" scope="external" format="html" keys="IMPALA-2914"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2915" scope="external" format="html" keys="IMPALA-2915"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2916" scope="external" format="html" keys="IMPALA-2916"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2917" scope="external" format="html" keys="IMPALA-2917"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2918" scope="external" format="html" keys="IMPALA-2918"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2919" scope="external" format="html" keys="IMPALA-2919"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2920" scope="external" format="html" keys="IMPALA-2920"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2921" scope="external" format="html" keys="IMPALA-2921"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2922" scope="external" format="html" keys="IMPALA-2922"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2923" scope="external" format="html" keys="IMPALA-2923"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2924" scope="external" format="html" keys="IMPALA-2924"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2925" scope="external" format="html" keys="IMPALA-2925"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2926" scope="external" format="html" keys="IMPALA-2926"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2927" scope="external" format="html" keys="IMPALA-2927"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2928" scope="external" format="html" keys="IMPALA-2928"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2929" scope="external" format="html" keys="IMPALA-2929"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2930" scope="external" format="html" keys="IMPALA-2930"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2931" scope="external" format="html" keys="IMPALA-2931"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2932" scope="external" format="html" keys="IMPALA-2932"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2933" scope="external" format="html" keys="IMPALA-2933"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2934" scope="external" format="html" keys="IMPALA-2934"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2935" scope="external" format="html" keys="IMPALA-2935"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2936" scope="external" format="html" keys="IMPALA-2936"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2937" scope="external" format="html" keys="IMPALA-2937"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2938" scope="external" format="html" keys="IMPALA-2938"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2939" scope="external" format="html" keys="IMPALA-2939"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2940" scope="external" format="html" keys="IMPALA-2940"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2941" scope="external" format="html" keys="IMPALA-2941"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2942" scope="external" format="html" keys="IMPALA-2942"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2943" scope="external" format="html" keys="IMPALA-2943"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2944" scope="external" format="html" keys="IMPALA-2944"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2945" scope="external" format="html" keys="IMPALA-2945"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2946" scope="external" format="html" keys="IMPALA-2946"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2947" scope="external" format="html" keys="IMPALA-2947"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2948" scope="external" format="html" keys="IMPALA-2948"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2949" scope="external" format="html" keys="IMPALA-2949"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2950" scope="external" format="html" keys="IMPALA-2950"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2951" scope="external" format="html" keys="IMPALA-2951"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2952" scope="external" format="html" keys="IMPALA-2952"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2953" scope="external" format="html" keys="IMPALA-2953"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2954" scope="external" format="html" keys="IMPALA-2954"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2955" scope="external" format="html" keys="IMPALA-2955"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2956" scope="external" format="html" keys="IMPALA-2956"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2957" scope="external" format="html" keys="IMPALA-2957"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2958" scope="external" format="html" keys="IMPALA-2958"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2959" scope="external" format="html" keys="IMPALA-2959"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2960" scope="external" format="html" keys="IMPALA-2960"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2961" scope="external" format="html" keys="IMPALA-2961"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2962" scope="external" format="html" keys="IMPALA-2962"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2963" scope="external" format="html" keys="IMPALA-2963"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2964" scope="external" format="html" keys="IMPALA-2964"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2965" scope="external" format="html" keys="IMPALA-2965"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2966" scope="external" format="html" keys="IMPALA-2966"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2967" scope="external" format="html" keys="IMPALA-2967"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2968" scope="external" format="html" keys="IMPALA-2968"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2969" scope="external" format="html" keys="IMPALA-2969"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2970" scope="external" format="html" keys="IMPALA-2970"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2971" scope="external" format="html" keys="IMPALA-2971"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2972" scope="external" format="html" keys="IMPALA-2972"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2973" scope="external" format="html" keys="IMPALA-2973"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2974" scope="external" format="html" keys="IMPALA-2974"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2975" scope="external" format="html" keys="IMPALA-2975"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2976" scope="external" format="html" keys="IMPALA-2976"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2977" scope="external" format="html" keys="IMPALA-2977"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2978" scope="external" format="html" keys="IMPALA-2978"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2979" scope="external" format="html" keys="IMPALA-2979"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2980" scope="external" format="html" keys="IMPALA-2980"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2981" scope="external" format="html" keys="IMPALA-2981"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2982" scope="external" format="html" keys="IMPALA-2982"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2983" scope="external" format="html" keys="IMPALA-2983"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2984" scope="external" format="html" keys="IMPALA-2984"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2985" scope="external" format="html" keys="IMPALA-2985"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2986" scope="external" format="html" keys="IMPALA-2986"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2987" scope="external" format="html" keys="IMPALA-2987"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2988" scope="external" format="html" keys="IMPALA-2988"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2989" scope="external" format="html" keys="IMPALA-2989"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2990" scope="external" format="html" keys="IMPALA-2990"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2991" scope="external" format="html" keys="IMPALA-2991"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2992" scope="external" format="html" keys="IMPALA-2992"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2993" scope="external" format="html" keys="IMPALA-2993"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2994" scope="external" format="html" keys="IMPALA-2994"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2995" scope="external" format="html" keys="IMPALA-2995"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2996" scope="external" format="html" keys="IMPALA-2996"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2997" scope="external" format="html" keys="IMPALA-2997"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2998" scope="external" format="html" keys="IMPALA-2998"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-2999" scope="external" format="html" keys="IMPALA-2999"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3000" scope="external" format="html" keys="IMPALA-3000"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3001" scope="external" format="html" keys="IMPALA-3001"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3002" scope="external" format="html" keys="IMPALA-3002"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3003" scope="external" format="html" keys="IMPALA-3003"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3004" scope="external" format="html" keys="IMPALA-3004"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3005" scope="external" format="html" keys="IMPALA-3005"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3006" scope="external" format="html" keys="IMPALA-3006"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3007" scope="external" format="html" keys="IMPALA-3007"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3008" scope="external" format="html" keys="IMPALA-3008"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3009" scope="external" format="html" keys="IMPALA-3009"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3010" scope="external" format="html" keys="IMPALA-3010"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3011" scope="external" format="html" keys="IMPALA-3011"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3012" scope="external" format="html" keys="IMPALA-3012"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3013" scope="external" format="html" keys="IMPALA-3013"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3014" scope="external" format="html" keys="IMPALA-3014"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3015" scope="external" format="html" keys="IMPALA-3015"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3016" scope="external" format="html" keys="IMPALA-3016"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3017" scope="external" format="html" keys="IMPALA-3017"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3018" scope="external" format="html" keys="IMPALA-3018"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3019" scope="external" format="html" keys="IMPALA-3019"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3020" scope="external" format="html" keys="IMPALA-3020"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3021" scope="external" format="html" keys="IMPALA-3021"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3022" scope="external" format="html" keys="IMPALA-3022"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3023" scope="external" format="html" keys="IMPALA-3023"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3024" scope="external" format="html" keys="IMPALA-3024"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3025" scope="external" format="html" keys="IMPALA-3025"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3026" scope="external" format="html" keys="IMPALA-3026"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3027" scope="external" format="html" keys="IMPALA-3027"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3028" scope="external" format="html" keys="IMPALA-3028"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3029" scope="external" format="html" keys="IMPALA-3029"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3030" scope="external" format="html" keys="IMPALA-3030"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3031" scope="external" format="html" keys="IMPALA-3031"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3032" scope="external" format="html" keys="IMPALA-3032"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3033" scope="external" format="html" keys="IMPALA-3033"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3034" scope="external" format="html" keys="IMPALA-3034"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3035" scope="external" format="html" keys="IMPALA-3035"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3036" scope="external" format="html" keys="IMPALA-3036"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3037" scope="external" format="html" keys="IMPALA-3037"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3038" scope="external" format="html" keys="IMPALA-3038"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3039" scope="external" format="html" keys="IMPALA-3039"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3040" scope="external" format="html" keys="IMPALA-3040"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3041" scope="external" format="html" keys="IMPALA-3041"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3042" scope="external" format="html" keys="IMPALA-3042"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3043" scope="external" format="html" keys="IMPALA-3043"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3044" scope="external" format="html" keys="IMPALA-3044"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3045" scope="external" format="html" keys="IMPALA-3045"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3046" scope="external" format="html" keys="IMPALA-3046"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3047" scope="external" format="html" keys="IMPALA-3047"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3048" scope="external" format="html" keys="IMPALA-3048"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3049" scope="external" format="html" keys="IMPALA-3049"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3050" scope="external" format="html" keys="IMPALA-3050"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3051" scope="external" format="html" keys="IMPALA-3051"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3052" scope="external" format="html" keys="IMPALA-3052"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3053" scope="external" format="html" keys="IMPALA-3053"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3054" scope="external" format="html" keys="IMPALA-3054"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3055" scope="external" format="html" keys="IMPALA-3055"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3056" scope="external" format="html" keys="IMPALA-3056"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3057" scope="external" format="html" keys="IMPALA-3057"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3058" scope="external" format="html" keys="IMPALA-3058"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3059" scope="external" format="html" keys="IMPALA-3059"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3060" scope="external" format="html" keys="IMPALA-3060"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3061" scope="external" format="html" keys="IMPALA-3061"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3062" scope="external" format="html" keys="IMPALA-3062"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3063" scope="external" format="html" keys="IMPALA-3063"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3064" scope="external" format="html" keys="IMPALA-3064"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3065" scope="external" format="html" keys="IMPALA-3065"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3066" scope="external" format="html" keys="IMPALA-3066"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3067" scope="external" format="html" keys="IMPALA-3067"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3068" scope="external" format="html" keys="IMPALA-3068"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3069" scope="external" format="html" keys="IMPALA-3069"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3070" scope="external" format="html" keys="IMPALA-3070"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3071" scope="external" format="html" keys="IMPALA-3071"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3072" scope="external" format="html" keys="IMPALA-3072"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3073" scope="external" format="html" keys="IMPALA-3073"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3074" scope="external" format="html" keys="IMPALA-3074"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3075" scope="external" format="html" keys="IMPALA-3075"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3076" scope="external" format="html" keys="IMPALA-3076"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3077" scope="external" format="html" keys="IMPALA-3077"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3078" scope="external" format="html" keys="IMPALA-3078"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3079" scope="external" format="html" keys="IMPALA-3079"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3080" scope="external" format="html" keys="IMPALA-3080"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3081" scope="external" format="html" keys="IMPALA-3081"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3082" scope="external" format="html" keys="IMPALA-3082"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3083" scope="external" format="html" keys="IMPALA-3083"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3084" scope="external" format="html" keys="IMPALA-3084"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3085" scope="external" format="html" keys="IMPALA-3085"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3086" scope="external" format="html" keys="IMPALA-3086"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3087" scope="external" format="html" keys="IMPALA-3087"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3088" scope="external" format="html" keys="IMPALA-3088"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3089" scope="external" format="html" keys="IMPALA-3089"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3090" scope="external" format="html" keys="IMPALA-3090"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3091" scope="external" format="html" keys="IMPALA-3091"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3092" scope="external" format="html" keys="IMPALA-3092"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3093" scope="external" format="html" keys="IMPALA-3093"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3094" scope="external" format="html" keys="IMPALA-3094"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3095" scope="external" format="html" keys="IMPALA-3095"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3096" scope="external" format="html" keys="IMPALA-3096"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3097" scope="external" format="html" keys="IMPALA-3097"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3098" scope="external" format="html" keys="IMPALA-3098"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3099" scope="external" format="html" keys="IMPALA-3099"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3100" scope="external" format="html" keys="IMPALA-3100"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3101" scope="external" format="html" keys="IMPALA-3101"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3102" scope="external" format="html" keys="IMPALA-3102"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3103" scope="external" format="html" keys="IMPALA-3103"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3104" scope="external" format="html" keys="IMPALA-3104"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3105" scope="external" format="html" keys="IMPALA-3105"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3106" scope="external" format="html" keys="IMPALA-3106"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3107" scope="external" format="html" keys="IMPALA-3107"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3108" scope="external" format="html" keys="IMPALA-3108"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3109" scope="external" format="html" keys="IMPALA-3109"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3110" scope="external" format="html" keys="IMPALA-3110"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3111" scope="external" format="html" keys="IMPALA-3111"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3112" scope="external" format="html" keys="IMPALA-3112"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3113" scope="external" format="html" keys="IMPALA-3113"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3114" scope="external" format="html" keys="IMPALA-3114"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3115" scope="external" format="html" keys="IMPALA-3115"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3116" scope="external" format="html" keys="IMPALA-3116"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3117" scope="external" format="html" keys="IMPALA-3117"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3118" scope="external" format="html" keys="IMPALA-3118"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3119" scope="external" format="html" keys="IMPALA-3119"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3120" scope="external" format="html" keys="IMPALA-3120"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3121" scope="external" format="html" keys="IMPALA-3121"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3122" scope="external" format="html" keys="IMPALA-3122"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3123" scope="external" format="html" keys="IMPALA-3123"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3124" scope="external" format="html" keys="IMPALA-3124"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3125" scope="external" format="html" keys="IMPALA-3125"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3126" scope="external" format="html" keys="IMPALA-3126"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3127" scope="external" format="html" keys="IMPALA-3127"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3128" scope="external" format="html" keys="IMPALA-3128"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3129" scope="external" format="html" keys="IMPALA-3129"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3130" scope="external" format="html" keys="IMPALA-3130"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3131" scope="external" format="html" keys="IMPALA-3131"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3132" scope="external" format="html" keys="IMPALA-3132"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3133" scope="external" format="html" keys="IMPALA-3133"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3134" scope="external" format="html" keys="IMPALA-3134"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3135" scope="external" format="html" keys="IMPALA-3135"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3136" scope="external" format="html" keys="IMPALA-3136"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3137" scope="external" format="html" keys="IMPALA-3137"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3138" scope="external" format="html" keys="IMPALA-3138"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3139" scope="external" format="html" keys="IMPALA-3139"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3140" scope="external" format="html" keys="IMPALA-3140"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3141" scope="external" format="html" keys="IMPALA-3141"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3142" scope="external" format="html" keys="IMPALA-3142"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3143" scope="external" format="html" keys="IMPALA-3143"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3144" scope="external" format="html" keys="IMPALA-3144"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3145" scope="external" format="html" keys="IMPALA-3145"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3146" scope="external" format="html" keys="IMPALA-3146"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3147" scope="external" format="html" keys="IMPALA-3147"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3148" scope="external" format="html" keys="IMPALA-3148"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3149" scope="external" format="html" keys="IMPALA-3149"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3150" scope="external" format="html" keys="IMPALA-3150"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3151" scope="external" format="html" keys="IMPALA-3151"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3152" scope="external" format="html" keys="IMPALA-3152"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3153" scope="external" format="html" keys="IMPALA-3153"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3154" scope="external" format="html" keys="IMPALA-3154"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3155" scope="external" format="html" keys="IMPALA-3155"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3156" scope="external" format="html" keys="IMPALA-3156"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3157" scope="external" format="html" keys="IMPALA-3157"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3158" scope="external" format="html" keys="IMPALA-3158"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3159" scope="external" format="html" keys="IMPALA-3159"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3160" scope="external" format="html" keys="IMPALA-3160"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3161" scope="external" format="html" keys="IMPALA-3161"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3162" scope="external" format="html" keys="IMPALA-3162"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3163" scope="external" format="html" keys="IMPALA-3163"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3164" scope="external" format="html" keys="IMPALA-3164"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3165" scope="external" format="html" keys="IMPALA-3165"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3166" scope="external" format="html" keys="IMPALA-3166"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3167" scope="external" format="html" keys="IMPALA-3167"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3168" scope="external" format="html" keys="IMPALA-3168"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3169" scope="external" format="html" keys="IMPALA-3169"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3170" scope="external" format="html" keys="IMPALA-3170"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3171" scope="external" format="html" keys="IMPALA-3171"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3172" scope="external" format="html" keys="IMPALA-3172"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3173" scope="external" format="html" keys="IMPALA-3173"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3174" scope="external" format="html" keys="IMPALA-3174"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3175" scope="external" format="html" keys="IMPALA-3175"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3176" scope="external" format="html" keys="IMPALA-3176"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3177" scope="external" format="html" keys="IMPALA-3177"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3178" scope="external" format="html" keys="IMPALA-3178"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3179" scope="external" format="html" keys="IMPALA-3179"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3180" scope="external" format="html" keys="IMPALA-3180"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3181" scope="external" format="html" keys="IMPALA-3181"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3182" scope="external" format="html" keys="IMPALA-3182"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3183" scope="external" format="html" keys="IMPALA-3183"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3184" scope="external" format="html" keys="IMPALA-3184"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3185" scope="external" format="html" keys="IMPALA-3185"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3186" scope="external" format="html" keys="IMPALA-3186"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3187" scope="external" format="html" keys="IMPALA-3187"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3188" scope="external" format="html" keys="IMPALA-3188"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3189" scope="external" format="html" keys="IMPALA-3189"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3190" scope="external" format="html" keys="IMPALA-3190"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3191" scope="external" format="html" keys="IMPALA-3191"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3192" scope="external" format="html" keys="IMPALA-3192"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3193" scope="external" format="html" keys="IMPALA-3193"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3194" scope="external" format="html" keys="IMPALA-3194"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3195" scope="external" format="html" keys="IMPALA-3195"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3196" scope="external" format="html" keys="IMPALA-3196"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3197" scope="external" format="html" keys="IMPALA-3197"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3198" scope="external" format="html" keys="IMPALA-3198"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3199" scope="external" format="html" keys="IMPALA-3199"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3200" scope="external" format="html" keys="IMPALA-3200"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3201" scope="external" format="html" keys="IMPALA-3201"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3202" scope="external" format="html" keys="IMPALA-3202"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3203" scope="external" format="html" keys="IMPALA-3203"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3204" scope="external" format="html" keys="IMPALA-3204"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3205" scope="external" format="html" keys="IMPALA-3205"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3206" scope="external" format="html" keys="IMPALA-3206"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3207" scope="external" format="html" keys="IMPALA-3207"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3208" scope="external" format="html" keys="IMPALA-3208"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3209" scope="external" format="html" keys="IMPALA-3209"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3210" scope="external" format="html" keys="IMPALA-3210"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3211" scope="external" format="html" keys="IMPALA-3211"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3212" scope="external" format="html" keys="IMPALA-3212"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3213" scope="external" format="html" keys="IMPALA-3213"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3214" scope="external" format="html" keys="IMPALA-3214"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3215" scope="external" format="html" keys="IMPALA-3215"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3216" scope="external" format="html" keys="IMPALA-3216"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3217" scope="external" format="html" keys="IMPALA-3217"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3218" scope="external" format="html" keys="IMPALA-3218"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3219" scope="external" format="html" keys="IMPALA-3219"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3220" scope="external" format="html" keys="IMPALA-3220"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3221" scope="external" format="html" keys="IMPALA-3221"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3222" scope="external" format="html" keys="IMPALA-3222"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3223" scope="external" format="html" keys="IMPALA-3223"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3224" scope="external" format="html" keys="IMPALA-3224"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3225" scope="external" format="html" keys="IMPALA-3225"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3226" scope="external" format="html" keys="IMPALA-3226"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3227" scope="external" format="html" keys="IMPALA-3227"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3228" scope="external" format="html" keys="IMPALA-3228"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3229" scope="external" format="html" keys="IMPALA-3229"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3230" scope="external" format="html" keys="IMPALA-3230"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3231" scope="external" format="html" keys="IMPALA-3231"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3232" scope="external" format="html" keys="IMPALA-3232"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3233" scope="external" format="html" keys="IMPALA-3233"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3234" scope="external" format="html" keys="IMPALA-3234"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3235" scope="external" format="html" keys="IMPALA-3235"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3236" scope="external" format="html" keys="IMPALA-3236"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3237" scope="external" format="html" keys="IMPALA-3237"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3238" scope="external" format="html" keys="IMPALA-3238"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3239" scope="external" format="html" keys="IMPALA-3239"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3240" scope="external" format="html" keys="IMPALA-3240"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3241" scope="external" format="html" keys="IMPALA-3241"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3242" scope="external" format="html" keys="IMPALA-3242"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3243" scope="external" format="html" keys="IMPALA-3243"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3244" scope="external" format="html" keys="IMPALA-3244"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3245" scope="external" format="html" keys="IMPALA-3245"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3246" scope="external" format="html" keys="IMPALA-3246"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3247" scope="external" format="html" keys="IMPALA-3247"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3248" scope="external" format="html" keys="IMPALA-3248"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3249" scope="external" format="html" keys="IMPALA-3249"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3250" scope="external" format="html" keys="IMPALA-3250"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3251" scope="external" format="html" keys="IMPALA-3251"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3252" scope="external" format="html" keys="IMPALA-3252"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3253" scope="external" format="html" keys="IMPALA-3253"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3254" scope="external" format="html" keys="IMPALA-3254"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3255" scope="external" format="html" keys="IMPALA-3255"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3256" scope="external" format="html" keys="IMPALA-3256"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3257" scope="external" format="html" keys="IMPALA-3257"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3258" scope="external" format="html" keys="IMPALA-3258"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3259" scope="external" format="html" keys="IMPALA-3259"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3260" scope="external" format="html" keys="IMPALA-3260"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3261" scope="external" format="html" keys="IMPALA-3261"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3262" scope="external" format="html" keys="IMPALA-3262"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3263" scope="external" format="html" keys="IMPALA-3263"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3264" scope="external" format="html" keys="IMPALA-3264"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3265" scope="external" format="html" keys="IMPALA-3265"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3266" scope="external" format="html" keys="IMPALA-3266"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3267" scope="external" format="html" keys="IMPALA-3267"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3268" scope="external" format="html" keys="IMPALA-3268"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3269" scope="external" format="html" keys="IMPALA-3269"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3270" scope="external" format="html" keys="IMPALA-3270"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3271" scope="external" format="html" keys="IMPALA-3271"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3272" scope="external" format="html" keys="IMPALA-3272"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3273" scope="external" format="html" keys="IMPALA-3273"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3274" scope="external" format="html" keys="IMPALA-3274"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3275" scope="external" format="html" keys="IMPALA-3275"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3276" scope="external" format="html" keys="IMPALA-3276"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3277" scope="external" format="html" keys="IMPALA-3277"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3278" scope="external" format="html" keys="IMPALA-3278"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3279" scope="external" format="html" keys="IMPALA-3279"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3280" scope="external" format="html" keys="IMPALA-3280"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3281" scope="external" format="html" keys="IMPALA-3281"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3282" scope="external" format="html" keys="IMPALA-3282"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3283" scope="external" format="html" keys="IMPALA-3283"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3284" scope="external" format="html" keys="IMPALA-3284"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3285" scope="external" format="html" keys="IMPALA-3285"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3286" scope="external" format="html" keys="IMPALA-3286"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3287" scope="external" format="html" keys="IMPALA-3287"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3288" scope="external" format="html" keys="IMPALA-3288"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3289" scope="external" format="html" keys="IMPALA-3289"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3290" scope="external" format="html" keys="IMPALA-3290"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3291" scope="external" format="html" keys="IMPALA-3291"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3292" scope="external" format="html" keys="IMPALA-3292"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3293" scope="external" format="html" keys="IMPALA-3293"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3294" scope="external" format="html" keys="IMPALA-3294"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3295" scope="external" format="html" keys="IMPALA-3295"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3296" scope="external" format="html" keys="IMPALA-3296"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3297" scope="external" format="html" keys="IMPALA-3297"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3298" scope="external" format="html" keys="IMPALA-3298"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3299" scope="external" format="html" keys="IMPALA-3299"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3300" scope="external" format="html" keys="IMPALA-3300"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3301" scope="external" format="html" keys="IMPALA-3301"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3302" scope="external" format="html" keys="IMPALA-3302"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3303" scope="external" format="html" keys="IMPALA-3303"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3304" scope="external" format="html" keys="IMPALA-3304"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3305" scope="external" format="html" keys="IMPALA-3305"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3306" scope="external" format="html" keys="IMPALA-3306"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3307" scope="external" format="html" keys="IMPALA-3307"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3308" scope="external" format="html" keys="IMPALA-3308"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3309" scope="external" format="html" keys="IMPALA-3309"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3310" scope="external" format="html" keys="IMPALA-3310"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3311" scope="external" format="html" keys="IMPALA-3311"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3312" scope="external" format="html" keys="IMPALA-3312"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3313" scope="external" format="html" keys="IMPALA-3313"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3314" scope="external" format="html" keys="IMPALA-3314"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3315" scope="external" format="html" keys="IMPALA-3315"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3316" scope="external" format="html" keys="IMPALA-3316"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3317" scope="external" format="html" keys="IMPALA-3317"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3318" scope="external" format="html" keys="IMPALA-3318"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3319" scope="external" format="html" keys="IMPALA-3319"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3320" scope="external" format="html" keys="IMPALA-3320"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3321" scope="external" format="html" keys="IMPALA-3321"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3322" scope="external" format="html" keys="IMPALA-3322"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3323" scope="external" format="html" keys="IMPALA-3323"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3324" scope="external" format="html" keys="IMPALA-3324"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3325" scope="external" format="html" keys="IMPALA-3325"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3326" scope="external" format="html" keys="IMPALA-3326"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3327" scope="external" format="html" keys="IMPALA-3327"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3328" scope="external" format="html" keys="IMPALA-3328"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3329" scope="external" format="html" keys="IMPALA-3329"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3330" scope="external" format="html" keys="IMPALA-3330"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3331" scope="external" format="html" keys="IMPALA-3331"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3332" scope="external" format="html" keys="IMPALA-3332"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3333" scope="external" format="html" keys="IMPALA-3333"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3334" scope="external" format="html" keys="IMPALA-3334"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3335" scope="external" format="html" keys="IMPALA-3335"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3336" scope="external" format="html" keys="IMPALA-3336"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3337" scope="external" format="html" keys="IMPALA-3337"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3338" scope="external" format="html" keys="IMPALA-3338"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3339" scope="external" format="html" keys="IMPALA-3339"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3340" scope="external" format="html" keys="IMPALA-3340"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3341" scope="external" format="html" keys="IMPALA-3341"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3342" scope="external" format="html" keys="IMPALA-3342"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3343" scope="external" format="html" keys="IMPALA-3343"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3344" scope="external" format="html" keys="IMPALA-3344"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3345" scope="external" format="html" keys="IMPALA-3345"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3346" scope="external" format="html" keys="IMPALA-3346"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3347" scope="external" format="html" keys="IMPALA-3347"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3348" scope="external" format="html" keys="IMPALA-3348"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3349" scope="external" format="html" keys="IMPALA-3349"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3350" scope="external" format="html" keys="IMPALA-3350"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3351" scope="external" format="html" keys="IMPALA-3351"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3352" scope="external" format="html" keys="IMPALA-3352"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3353" scope="external" format="html" keys="IMPALA-3353"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3354" scope="external" format="html" keys="IMPALA-3354"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3355" scope="external" format="html" keys="IMPALA-3355"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3356" scope="external" format="html" keys="IMPALA-3356"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3357" scope="external" format="html" keys="IMPALA-3357"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3358" scope="external" format="html" keys="IMPALA-3358"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3359" scope="external" format="html" keys="IMPALA-3359"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3360" scope="external" format="html" keys="IMPALA-3360"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3361" scope="external" format="html" keys="IMPALA-3361"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3362" scope="external" format="html" keys="IMPALA-3362"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3363" scope="external" format="html" keys="IMPALA-3363"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3364" scope="external" format="html" keys="IMPALA-3364"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3365" scope="external" format="html" keys="IMPALA-3365"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3366" scope="external" format="html" keys="IMPALA-3366"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3367" scope="external" format="html" keys="IMPALA-3367"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3368" scope="external" format="html" keys="IMPALA-3368"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3369" scope="external" format="html" keys="IMPALA-3369"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3370" scope="external" format="html" keys="IMPALA-3370"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3371" scope="external" format="html" keys="IMPALA-3371"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3372" scope="external" format="html" keys="IMPALA-3372"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3373" scope="external" format="html" keys="IMPALA-3373"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3374" scope="external" format="html" keys="IMPALA-3374"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3375" scope="external" format="html" keys="IMPALA-3375"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3376" scope="external" format="html" keys="IMPALA-3376"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3377" scope="external" format="html" keys="IMPALA-3377"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3378" scope="external" format="html" keys="IMPALA-3378"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3379" scope="external" format="html" keys="IMPALA-3379"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3380" scope="external" format="html" keys="IMPALA-3380"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3381" scope="external" format="html" keys="IMPALA-3381"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3382" scope="external" format="html" keys="IMPALA-3382"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3383" scope="external" format="html" keys="IMPALA-3383"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3384" scope="external" format="html" keys="IMPALA-3384"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3385" scope="external" format="html" keys="IMPALA-3385"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3386" scope="external" format="html" keys="IMPALA-3386"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3387" scope="external" format="html" keys="IMPALA-3387"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3388" scope="external" format="html" keys="IMPALA-3388"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3389" scope="external" format="html" keys="IMPALA-3389"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3390" scope="external" format="html" keys="IMPALA-3390"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3391" scope="external" format="html" keys="IMPALA-3391"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3392" scope="external" format="html" keys="IMPALA-3392"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3393" scope="external" format="html" keys="IMPALA-3393"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3394" scope="external" format="html" keys="IMPALA-3394"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3395" scope="external" format="html" keys="IMPALA-3395"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3396" scope="external" format="html" keys="IMPALA-3396"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3397" scope="external" format="html" keys="IMPALA-3397"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3398" scope="external" format="html" keys="IMPALA-3398"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3399" scope="external" format="html" keys="IMPALA-3399"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3400" scope="external" format="html" keys="IMPALA-3400"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3401" scope="external" format="html" keys="IMPALA-3401"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3402" scope="external" format="html" keys="IMPALA-3402"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3403" scope="external" format="html" keys="IMPALA-3403"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3404" scope="external" format="html" keys="IMPALA-3404"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3405" scope="external" format="html" keys="IMPALA-3405"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3406" scope="external" format="html" keys="IMPALA-3406"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3407" scope="external" format="html" keys="IMPALA-3407"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3408" scope="external" format="html" keys="IMPALA-3408"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3409" scope="external" format="html" keys="IMPALA-3409"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3410" scope="external" format="html" keys="IMPALA-3410"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3411" scope="external" format="html" keys="IMPALA-3411"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3412" scope="external" format="html" keys="IMPALA-3412"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3413" scope="external" format="html" keys="IMPALA-3413"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3414" scope="external" format="html" keys="IMPALA-3414"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3415" scope="external" format="html" keys="IMPALA-3415"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3416" scope="external" format="html" keys="IMPALA-3416"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3417" scope="external" format="html" keys="IMPALA-3417"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3418" scope="external" format="html" keys="IMPALA-3418"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3419" scope="external" format="html" keys="IMPALA-3419"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3420" scope="external" format="html" keys="IMPALA-3420"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3421" scope="external" format="html" keys="IMPALA-3421"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3422" scope="external" format="html" keys="IMPALA-3422"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3423" scope="external" format="html" keys="IMPALA-3423"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3424" scope="external" format="html" keys="IMPALA-3424"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3425" scope="external" format="html" keys="IMPALA-3425"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3426" scope="external" format="html" keys="IMPALA-3426"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3427" scope="external" format="html" keys="IMPALA-3427"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3428" scope="external" format="html" keys="IMPALA-3428"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3429" scope="external" format="html" keys="IMPALA-3429"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3430" scope="external" format="html" keys="IMPALA-3430"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3431" scope="external" format="html" keys="IMPALA-3431"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3432" scope="external" format="html" keys="IMPALA-3432"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3433" scope="external" format="html" keys="IMPALA-3433"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3434" scope="external" format="html" keys="IMPALA-3434"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3435" scope="external" format="html" keys="IMPALA-3435"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3436" scope="external" format="html" keys="IMPALA-3436"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3437" scope="external" format="html" keys="IMPALA-3437"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3438" scope="external" format="html" keys="IMPALA-3438"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3439" scope="external" format="html" keys="IMPALA-3439"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3440" scope="external" format="html" keys="IMPALA-3440"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3441" scope="external" format="html" keys="IMPALA-3441"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3442" scope="external" format="html" keys="IMPALA-3442"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3443" scope="external" format="html" keys="IMPALA-3443"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3444" scope="external" format="html" keys="IMPALA-3444"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3445" scope="external" format="html" keys="IMPALA-3445"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3446" scope="external" format="html" keys="IMPALA-3446"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3447" scope="external" format="html" keys="IMPALA-3447"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3448" scope="external" format="html" keys="IMPALA-3448"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3449" scope="external" format="html" keys="IMPALA-3449"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3450" scope="external" format="html" keys="IMPALA-3450"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3451" scope="external" format="html" keys="IMPALA-3451"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3452" scope="external" format="html" keys="IMPALA-3452"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3453" scope="external" format="html" keys="IMPALA-3453"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3454" scope="external" format="html" keys="IMPALA-3454"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3455" scope="external" format="html" keys="IMPALA-3455"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3456" scope="external" format="html" keys="IMPALA-3456"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3457" scope="external" format="html" keys="IMPALA-3457"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3458" scope="external" format="html" keys="IMPALA-3458"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3459" scope="external" format="html" keys="IMPALA-3459"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3460" scope="external" format="html" keys="IMPALA-3460"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3461" scope="external" format="html" keys="IMPALA-3461"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3462" scope="external" format="html" keys="IMPALA-3462"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3463" scope="external" format="html" keys="IMPALA-3463"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3464" scope="external" format="html" keys="IMPALA-3464"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3465" scope="external" format="html" keys="IMPALA-3465"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3466" scope="external" format="html" keys="IMPALA-3466"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3467" scope="external" format="html" keys="IMPALA-3467"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3468" scope="external" format="html" keys="IMPALA-3468"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3469" scope="external" format="html" keys="IMPALA-3469"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3470" scope="external" format="html" keys="IMPALA-3470"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3471" scope="external" format="html" keys="IMPALA-3471"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3472" scope="external" format="html" keys="IMPALA-3472"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3473" scope="external" format="html" keys="IMPALA-3473"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3474" scope="external" format="html" keys="IMPALA-3474"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3475" scope="external" format="html" keys="IMPALA-3475"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3476" scope="external" format="html" keys="IMPALA-3476"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3477" scope="external" format="html" keys="IMPALA-3477"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3478" scope="external" format="html" keys="IMPALA-3478"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3479" scope="external" format="html" keys="IMPALA-3479"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3480" scope="external" format="html" keys="IMPALA-3480"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3481" scope="external" format="html" keys="IMPALA-3481"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3482" scope="external" format="html" keys="IMPALA-3482"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3483" scope="external" format="html" keys="IMPALA-3483"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3484" scope="external" format="html" keys="IMPALA-3484"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3485" scope="external" format="html" keys="IMPALA-3485"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3486" scope="external" format="html" keys="IMPALA-3486"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3487" scope="external" format="html" keys="IMPALA-3487"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3488" scope="external" format="html" keys="IMPALA-3488"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3489" scope="external" format="html" keys="IMPALA-3489"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3490" scope="external" format="html" keys="IMPALA-3490"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3491" scope="external" format="html" keys="IMPALA-3491"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3492" scope="external" format="html" keys="IMPALA-3492"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3493" scope="external" format="html" keys="IMPALA-3493"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3494" scope="external" format="html" keys="IMPALA-3494"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3495" scope="external" format="html" keys="IMPALA-3495"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3496" scope="external" format="html" keys="IMPALA-3496"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3497" scope="external" format="html" keys="IMPALA-3497"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3498" scope="external" format="html" keys="IMPALA-3498"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3499" scope="external" format="html" keys="IMPALA-3499"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3500" scope="external" format="html" keys="IMPALA-3500"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3501" scope="external" format="html" keys="IMPALA-3501"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3502" scope="external" format="html" keys="IMPALA-3502"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3503" scope="external" format="html" keys="IMPALA-3503"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3504" scope="external" format="html" keys="IMPALA-3504"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3505" scope="external" format="html" keys="IMPALA-3505"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3506" scope="external" format="html" keys="IMPALA-3506"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3507" scope="external" format="html" keys="IMPALA-3507"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3508" scope="external" format="html" keys="IMPALA-3508"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3509" scope="external" format="html" keys="IMPALA-3509"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3510" scope="external" format="html" keys="IMPALA-3510"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3511" scope="external" format="html" keys="IMPALA-3511"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3512" scope="external" format="html" keys="IMPALA-3512"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3513" scope="external" format="html" keys="IMPALA-3513"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3514" scope="external" format="html" keys="IMPALA-3514"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3515" scope="external" format="html" keys="IMPALA-3515"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3516" scope="external" format="html" keys="IMPALA-3516"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3517" scope="external" format="html" keys="IMPALA-3517"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3518" scope="external" format="html" keys="IMPALA-3518"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3519" scope="external" format="html" keys="IMPALA-3519"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3520" scope="external" format="html" keys="IMPALA-3520"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3521" scope="external" format="html" keys="IMPALA-3521"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3522" scope="external" format="html" keys="IMPALA-3522"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3523" scope="external" format="html" keys="IMPALA-3523"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3524" scope="external" format="html" keys="IMPALA-3524"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3525" scope="external" format="html" keys="IMPALA-3525"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3526" scope="external" format="html" keys="IMPALA-3526"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3527" scope="external" format="html" keys="IMPALA-3527"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3528" scope="external" format="html" keys="IMPALA-3528"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3529" scope="external" format="html" keys="IMPALA-3529"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3530" scope="external" format="html" keys="IMPALA-3530"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3531" scope="external" format="html" keys="IMPALA-3531"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3532" scope="external" format="html" keys="IMPALA-3532"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3533" scope="external" format="html" keys="IMPALA-3533"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3534" scope="external" format="html" keys="IMPALA-3534"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3535" scope="external" format="html" keys="IMPALA-3535"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3536" scope="external" format="html" keys="IMPALA-3536"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3537" scope="external" format="html" keys="IMPALA-3537"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3538" scope="external" format="html" keys="IMPALA-3538"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3539" scope="external" format="html" keys="IMPALA-3539"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3540" scope="external" format="html" keys="IMPALA-3540"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3541" scope="external" format="html" keys="IMPALA-3541"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3542" scope="external" format="html" keys="IMPALA-3542"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3543" scope="external" format="html" keys="IMPALA-3543"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3544" scope="external" format="html" keys="IMPALA-3544"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3545" scope="external" format="html" keys="IMPALA-3545"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3546" scope="external" format="html" keys="IMPALA-3546"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3547" scope="external" format="html" keys="IMPALA-3547"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3548" scope="external" format="html" keys="IMPALA-3548"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3549" scope="external" format="html" keys="IMPALA-3549"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3550" scope="external" format="html" keys="IMPALA-3550"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3551" scope="external" format="html" keys="IMPALA-3551"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3552" scope="external" format="html" keys="IMPALA-3552"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3553" scope="external" format="html" keys="IMPALA-3553"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3554" scope="external" format="html" keys="IMPALA-3554"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3555" scope="external" format="html" keys="IMPALA-3555"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3556" scope="external" format="html" keys="IMPALA-3556"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3557" scope="external" format="html" keys="IMPALA-3557"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3558" scope="external" format="html" keys="IMPALA-3558"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3559" scope="external" format="html" keys="IMPALA-3559"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3560" scope="external" format="html" keys="IMPALA-3560"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3561" scope="external" format="html" keys="IMPALA-3561"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3562" scope="external" format="html" keys="IMPALA-3562"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3563" scope="external" format="html" keys="IMPALA-3563"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3564" scope="external" format="html" keys="IMPALA-3564"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3565" scope="external" format="html" keys="IMPALA-3565"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3566" scope="external" format="html" keys="IMPALA-3566"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3567" scope="external" format="html" keys="IMPALA-3567"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3568" scope="external" format="html" keys="IMPALA-3568"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3569" scope="external" format="html" keys="IMPALA-3569"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3570" scope="external" format="html" keys="IMPALA-3570"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3571" scope="external" format="html" keys="IMPALA-3571"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3572" scope="external" format="html" keys="IMPALA-3572"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3573" scope="external" format="html" keys="IMPALA-3573"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3574" scope="external" format="html" keys="IMPALA-3574"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3575" scope="external" format="html" keys="IMPALA-3575"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3576" scope="external" format="html" keys="IMPALA-3576"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3577" scope="external" format="html" keys="IMPALA-3577"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3578" scope="external" format="html" keys="IMPALA-3578"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3579" scope="external" format="html" keys="IMPALA-3579"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3580" scope="external" format="html" keys="IMPALA-3580"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3581" scope="external" format="html" keys="IMPALA-3581"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3582" scope="external" format="html" keys="IMPALA-3582"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3583" scope="external" format="html" keys="IMPALA-3583"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3584" scope="external" format="html" keys="IMPALA-3584"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3585" scope="external" format="html" keys="IMPALA-3585"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3586" scope="external" format="html" keys="IMPALA-3586"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3587" scope="external" format="html" keys="IMPALA-3587"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3588" scope="external" format="html" keys="IMPALA-3588"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3589" scope="external" format="html" keys="IMPALA-3589"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3590" scope="external" format="html" keys="IMPALA-3590"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3591" scope="external" format="html" keys="IMPALA-3591"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3592" scope="external" format="html" keys="IMPALA-3592"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3593" scope="external" format="html" keys="IMPALA-3593"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3594" scope="external" format="html" keys="IMPALA-3594"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3595" scope="external" format="html" keys="IMPALA-3595"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3596" scope="external" format="html" keys="IMPALA-3596"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3597" scope="external" format="html" keys="IMPALA-3597"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3598" scope="external" format="html" keys="IMPALA-3598"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3599" scope="external" format="html" keys="IMPALA-3599"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3600" scope="external" format="html" keys="IMPALA-3600"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3601" scope="external" format="html" keys="IMPALA-3601"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3602" scope="external" format="html" keys="IMPALA-3602"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3603" scope="external" format="html" keys="IMPALA-3603"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3604" scope="external" format="html" keys="IMPALA-3604"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3605" scope="external" format="html" keys="IMPALA-3605"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3606" scope="external" format="html" keys="IMPALA-3606"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3607" scope="external" format="html" keys="IMPALA-3607"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3608" scope="external" format="html" keys="IMPALA-3608"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3609" scope="external" format="html" keys="IMPALA-3609"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3610" scope="external" format="html" keys="IMPALA-3610"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3611" scope="external" format="html" keys="IMPALA-3611"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3612" scope="external" format="html" keys="IMPALA-3612"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3613" scope="external" format="html" keys="IMPALA-3613"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3614" scope="external" format="html" keys="IMPALA-3614"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3615" scope="external" format="html" keys="IMPALA-3615"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3616" scope="external" format="html" keys="IMPALA-3616"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3617" scope="external" format="html" keys="IMPALA-3617"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3618" scope="external" format="html" keys="IMPALA-3618"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3619" scope="external" format="html" keys="IMPALA-3619"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3620" scope="external" format="html" keys="IMPALA-3620"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3621" scope="external" format="html" keys="IMPALA-3621"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3622" scope="external" format="html" keys="IMPALA-3622"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3623" scope="external" format="html" keys="IMPALA-3623"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3624" scope="external" format="html" keys="IMPALA-3624"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3625" scope="external" format="html" keys="IMPALA-3625"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3626" scope="external" format="html" keys="IMPALA-3626"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3627" scope="external" format="html" keys="IMPALA-3627"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3628" scope="external" format="html" keys="IMPALA-3628"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3629" scope="external" format="html" keys="IMPALA-3629"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3630" scope="external" format="html" keys="IMPALA-3630"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3631" scope="external" format="html" keys="IMPALA-3631"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3632" scope="external" format="html" keys="IMPALA-3632"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3633" scope="external" format="html" keys="IMPALA-3633"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3634" scope="external" format="html" keys="IMPALA-3634"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3635" scope="external" format="html" keys="IMPALA-3635"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3636" scope="external" format="html" keys="IMPALA-3636"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3637" scope="external" format="html" keys="IMPALA-3637"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3638" scope="external" format="html" keys="IMPALA-3638"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3639" scope="external" format="html" keys="IMPALA-3639"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3640" scope="external" format="html" keys="IMPALA-3640"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3641" scope="external" format="html" keys="IMPALA-3641"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3642" scope="external" format="html" keys="IMPALA-3642"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3643" scope="external" format="html" keys="IMPALA-3643"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3644" scope="external" format="html" keys="IMPALA-3644"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3645" scope="external" format="html" keys="IMPALA-3645"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3646" scope="external" format="html" keys="IMPALA-3646"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3647" scope="external" format="html" keys="IMPALA-3647"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3648" scope="external" format="html" keys="IMPALA-3648"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3649" scope="external" format="html" keys="IMPALA-3649"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3650" scope="external" format="html" keys="IMPALA-3650"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3651" scope="external" format="html" keys="IMPALA-3651"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3652" scope="external" format="html" keys="IMPALA-3652"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3653" scope="external" format="html" keys="IMPALA-3653"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3654" scope="external" format="html" keys="IMPALA-3654"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3655" scope="external" format="html" keys="IMPALA-3655"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3656" scope="external" format="html" keys="IMPALA-3656"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3657" scope="external" format="html" keys="IMPALA-3657"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3658" scope="external" format="html" keys="IMPALA-3658"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3659" scope="external" format="html" keys="IMPALA-3659"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3660" scope="external" format="html" keys="IMPALA-3660"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3661" scope="external" format="html" keys="IMPALA-3661"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3662" scope="external" format="html" keys="IMPALA-3662"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3663" scope="external" format="html" keys="IMPALA-3663"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3664" scope="external" format="html" keys="IMPALA-3664"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3665" scope="external" format="html" keys="IMPALA-3665"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3666" scope="external" format="html" keys="IMPALA-3666"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3667" scope="external" format="html" keys="IMPALA-3667"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3668" scope="external" format="html" keys="IMPALA-3668"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3669" scope="external" format="html" keys="IMPALA-3669"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3670" scope="external" format="html" keys="IMPALA-3670"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3671" scope="external" format="html" keys="IMPALA-3671"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3672" scope="external" format="html" keys="IMPALA-3672"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3673" scope="external" format="html" keys="IMPALA-3673"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3674" scope="external" format="html" keys="IMPALA-3674"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3675" scope="external" format="html" keys="IMPALA-3675"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3676" scope="external" format="html" keys="IMPALA-3676"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3677" scope="external" format="html" keys="IMPALA-3677"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3678" scope="external" format="html" keys="IMPALA-3678"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3679" scope="external" format="html" keys="IMPALA-3679"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3680" scope="external" format="html" keys="IMPALA-3680"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3681" scope="external" format="html" keys="IMPALA-3681"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3682" scope="external" format="html" keys="IMPALA-3682"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3683" scope="external" format="html" keys="IMPALA-3683"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3684" scope="external" format="html" keys="IMPALA-3684"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3685" scope="external" format="html" keys="IMPALA-3685"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3686" scope="external" format="html" keys="IMPALA-3686"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3687" scope="external" format="html" keys="IMPALA-3687"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3688" scope="external" format="html" keys="IMPALA-3688"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3689" scope="external" format="html" keys="IMPALA-3689"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3690" scope="external" format="html" keys="IMPALA-3690"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3691" scope="external" format="html" keys="IMPALA-3691"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3692" scope="external" format="html" keys="IMPALA-3692"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3693" scope="external" format="html" keys="IMPALA-3693"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3694" scope="external" format="html" keys="IMPALA-3694"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3695" scope="external" format="html" keys="IMPALA-3695"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3696" scope="external" format="html" keys="IMPALA-3696"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3697" scope="external" format="html" keys="IMPALA-3697"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3698" scope="external" format="html" keys="IMPALA-3698"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3699" scope="external" format="html" keys="IMPALA-3699"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3700" scope="external" format="html" keys="IMPALA-3700"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3701" scope="external" format="html" keys="IMPALA-3701"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3702" scope="external" format="html" keys="IMPALA-3702"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3703" scope="external" format="html" keys="IMPALA-3703"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3704" scope="external" format="html" keys="IMPALA-3704"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3705" scope="external" format="html" keys="IMPALA-3705"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3706" scope="external" format="html" keys="IMPALA-3706"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3707" scope="external" format="html" keys="IMPALA-3707"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3708" scope="external" format="html" keys="IMPALA-3708"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3709" scope="external" format="html" keys="IMPALA-3709"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3710" scope="external" format="html" keys="IMPALA-3710"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3711" scope="external" format="html" keys="IMPALA-3711"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3712" scope="external" format="html" keys="IMPALA-3712"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3713" scope="external" format="html" keys="IMPALA-3713"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3714" scope="external" format="html" keys="IMPALA-3714"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3715" scope="external" format="html" keys="IMPALA-3715"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3716" scope="external" format="html" keys="IMPALA-3716"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3717" scope="external" format="html" keys="IMPALA-3717"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3718" scope="external" format="html" keys="IMPALA-3718"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3719" scope="external" format="html" keys="IMPALA-3719"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3720" scope="external" format="html" keys="IMPALA-3720"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3721" scope="external" format="html" keys="IMPALA-3721"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3722" scope="external" format="html" keys="IMPALA-3722"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3723" scope="external" format="html" keys="IMPALA-3723"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3724" scope="external" format="html" keys="IMPALA-3724"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3725" scope="external" format="html" keys="IMPALA-3725"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3726" scope="external" format="html" keys="IMPALA-3726"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3727" scope="external" format="html" keys="IMPALA-3727"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3728" scope="external" format="html" keys="IMPALA-3728"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3729" scope="external" format="html" keys="IMPALA-3729"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3730" scope="external" format="html" keys="IMPALA-3730"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3731" scope="external" format="html" keys="IMPALA-3731"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3732" scope="external" format="html" keys="IMPALA-3732"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3733" scope="external" format="html" keys="IMPALA-3733"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3734" scope="external" format="html" keys="IMPALA-3734"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3735" scope="external" format="html" keys="IMPALA-3735"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3736" scope="external" format="html" keys="IMPALA-3736"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3737" scope="external" format="html" keys="IMPALA-3737"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3738" scope="external" format="html" keys="IMPALA-3738"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3739" scope="external" format="html" keys="IMPALA-3739"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3740" scope="external" format="html" keys="IMPALA-3740"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3741" scope="external" format="html" keys="IMPALA-3741"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3742" scope="external" format="html" keys="IMPALA-3742"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3743" scope="external" format="html" keys="IMPALA-3743"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3744" scope="external" format="html" keys="IMPALA-3744"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3745" scope="external" format="html" keys="IMPALA-3745"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3746" scope="external" format="html" keys="IMPALA-3746"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3747" scope="external" format="html" keys="IMPALA-3747"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3748" scope="external" format="html" keys="IMPALA-3748"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3749" scope="external" format="html" keys="IMPALA-3749"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3750" scope="external" format="html" keys="IMPALA-3750"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3751" scope="external" format="html" keys="IMPALA-3751"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3752" scope="external" format="html" keys="IMPALA-3752"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3753" scope="external" format="html" keys="IMPALA-3753"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3754" scope="external" format="html" keys="IMPALA-3754"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3755" scope="external" format="html" keys="IMPALA-3755"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3756" scope="external" format="html" keys="IMPALA-3756"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3757" scope="external" format="html" keys="IMPALA-3757"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3758" scope="external" format="html" keys="IMPALA-3758"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3759" scope="external" format="html" keys="IMPALA-3759"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3760" scope="external" format="html" keys="IMPALA-3760"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3761" scope="external" format="html" keys="IMPALA-3761"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3762" scope="external" format="html" keys="IMPALA-3762"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3763" scope="external" format="html" keys="IMPALA-3763"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3764" scope="external" format="html" keys="IMPALA-3764"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3765" scope="external" format="html" keys="IMPALA-3765"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3766" scope="external" format="html" keys="IMPALA-3766"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3767" scope="external" format="html" keys="IMPALA-3767"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3768" scope="external" format="html" keys="IMPALA-3768"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3769" scope="external" format="html" keys="IMPALA-3769"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3770" scope="external" format="html" keys="IMPALA-3770"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3771" scope="external" format="html" keys="IMPALA-3771"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3772" scope="external" format="html" keys="IMPALA-3772"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3773" scope="external" format="html" keys="IMPALA-3773"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3774" scope="external" format="html" keys="IMPALA-3774"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3775" scope="external" format="html" keys="IMPALA-3775"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3776" scope="external" format="html" keys="IMPALA-3776"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3777" scope="external" format="html" keys="IMPALA-3777"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3778" scope="external" format="html" keys="IMPALA-3778"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3779" scope="external" format="html" keys="IMPALA-3779"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3780" scope="external" format="html" keys="IMPALA-3780"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3781" scope="external" format="html" keys="IMPALA-3781"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3782" scope="external" format="html" keys="IMPALA-3782"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3783" scope="external" format="html" keys="IMPALA-3783"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3784" scope="external" format="html" keys="IMPALA-3784"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3785" scope="external" format="html" keys="IMPALA-3785"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3786" scope="external" format="html" keys="IMPALA-3786"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3787" scope="external" format="html" keys="IMPALA-3787"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3788" scope="external" format="html" keys="IMPALA-3788"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3789" scope="external" format="html" keys="IMPALA-3789"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3790" scope="external" format="html" keys="IMPALA-3790"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3791" scope="external" format="html" keys="IMPALA-3791"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3792" scope="external" format="html" keys="IMPALA-3792"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3793" scope="external" format="html" keys="IMPALA-3793"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3794" scope="external" format="html" keys="IMPALA-3794"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3795" scope="external" format="html" keys="IMPALA-3795"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3796" scope="external" format="html" keys="IMPALA-3796"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3797" scope="external" format="html" keys="IMPALA-3797"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3798" scope="external" format="html" keys="IMPALA-3798"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3799" scope="external" format="html" keys="IMPALA-3799"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3800" scope="external" format="html" keys="IMPALA-3800"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3801" scope="external" format="html" keys="IMPALA-3801"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3802" scope="external" format="html" keys="IMPALA-3802"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3803" scope="external" format="html" keys="IMPALA-3803"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3804" scope="external" format="html" keys="IMPALA-3804"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3805" scope="external" format="html" keys="IMPALA-3805"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3806" scope="external" format="html" keys="IMPALA-3806"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3807" scope="external" format="html" keys="IMPALA-3807"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3808" scope="external" format="html" keys="IMPALA-3808"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3809" scope="external" format="html" keys="IMPALA-3809"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3810" scope="external" format="html" keys="IMPALA-3810"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3811" scope="external" format="html" keys="IMPALA-3811"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3812" scope="external" format="html" keys="IMPALA-3812"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3813" scope="external" format="html" keys="IMPALA-3813"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3814" scope="external" format="html" keys="IMPALA-3814"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3815" scope="external" format="html" keys="IMPALA-3815"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3816" scope="external" format="html" keys="IMPALA-3816"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3817" scope="external" format="html" keys="IMPALA-3817"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3818" scope="external" format="html" keys="IMPALA-3818"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3819" scope="external" format="html" keys="IMPALA-3819"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3820" scope="external" format="html" keys="IMPALA-3820"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3821" scope="external" format="html" keys="IMPALA-3821"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3822" scope="external" format="html" keys="IMPALA-3822"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3823" scope="external" format="html" keys="IMPALA-3823"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3824" scope="external" format="html" keys="IMPALA-3824"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3825" scope="external" format="html" keys="IMPALA-3825"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3826" scope="external" format="html" keys="IMPALA-3826"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3827" scope="external" format="html" keys="IMPALA-3827"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3828" scope="external" format="html" keys="IMPALA-3828"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3829" scope="external" format="html" keys="IMPALA-3829"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3830" scope="external" format="html" keys="IMPALA-3830"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3831" scope="external" format="html" keys="IMPALA-3831"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3832" scope="external" format="html" keys="IMPALA-3832"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3833" scope="external" format="html" keys="IMPALA-3833"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3834" scope="external" format="html" keys="IMPALA-3834"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3835" scope="external" format="html" keys="IMPALA-3835"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3836" scope="external" format="html" keys="IMPALA-3836"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3837" scope="external" format="html" keys="IMPALA-3837"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3838" scope="external" format="html" keys="IMPALA-3838"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3839" scope="external" format="html" keys="IMPALA-3839"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3840" scope="external" format="html" keys="IMPALA-3840"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3841" scope="external" format="html" keys="IMPALA-3841"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3842" scope="external" format="html" keys="IMPALA-3842"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3843" scope="external" format="html" keys="IMPALA-3843"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3844" scope="external" format="html" keys="IMPALA-3844"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3845" scope="external" format="html" keys="IMPALA-3845"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3846" scope="external" format="html" keys="IMPALA-3846"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3847" scope="external" format="html" keys="IMPALA-3847"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3848" scope="external" format="html" keys="IMPALA-3848"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3849" scope="external" format="html" keys="IMPALA-3849"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3850" scope="external" format="html" keys="IMPALA-3850"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3851" scope="external" format="html" keys="IMPALA-3851"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3852" scope="external" format="html" keys="IMPALA-3852"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3853" scope="external" format="html" keys="IMPALA-3853"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3854" scope="external" format="html" keys="IMPALA-3854"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3855" scope="external" format="html" keys="IMPALA-3855"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3856" scope="external" format="html" keys="IMPALA-3856"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3857" scope="external" format="html" keys="IMPALA-3857"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3858" scope="external" format="html" keys="IMPALA-3858"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3859" scope="external" format="html" keys="IMPALA-3859"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3860" scope="external" format="html" keys="IMPALA-3860"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3861" scope="external" format="html" keys="IMPALA-3861"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3862" scope="external" format="html" keys="IMPALA-3862"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3863" scope="external" format="html" keys="IMPALA-3863"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3864" scope="external" format="html" keys="IMPALA-3864"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3865" scope="external" format="html" keys="IMPALA-3865"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3866" scope="external" format="html" keys="IMPALA-3866"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3867" scope="external" format="html" keys="IMPALA-3867"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3868" scope="external" format="html" keys="IMPALA-3868"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3869" scope="external" format="html" keys="IMPALA-3869"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3870" scope="external" format="html" keys="IMPALA-3870"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3871" scope="external" format="html" keys="IMPALA-3871"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3872" scope="external" format="html" keys="IMPALA-3872"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3873" scope="external" format="html" keys="IMPALA-3873"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3874" scope="external" format="html" keys="IMPALA-3874"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3875" scope="external" format="html" keys="IMPALA-3875"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3876" scope="external" format="html" keys="IMPALA-3876"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3877" scope="external" format="html" keys="IMPALA-3877"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3878" scope="external" format="html" keys="IMPALA-3878"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3879" scope="external" format="html" keys="IMPALA-3879"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3880" scope="external" format="html" keys="IMPALA-3880"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3881" scope="external" format="html" keys="IMPALA-3881"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3882" scope="external" format="html" keys="IMPALA-3882"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3883" scope="external" format="html" keys="IMPALA-3883"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3884" scope="external" format="html" keys="IMPALA-3884"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3885" scope="external" format="html" keys="IMPALA-3885"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3886" scope="external" format="html" keys="IMPALA-3886"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3887" scope="external" format="html" keys="IMPALA-3887"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3888" scope="external" format="html" keys="IMPALA-3888"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3889" scope="external" format="html" keys="IMPALA-3889"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3890" scope="external" format="html" keys="IMPALA-3890"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3891" scope="external" format="html" keys="IMPALA-3891"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3892" scope="external" format="html" keys="IMPALA-3892"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3893" scope="external" format="html" keys="IMPALA-3893"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3894" scope="external" format="html" keys="IMPALA-3894"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3895" scope="external" format="html" keys="IMPALA-3895"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3896" scope="external" format="html" keys="IMPALA-3896"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3897" scope="external" format="html" keys="IMPALA-3897"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3898" scope="external" format="html" keys="IMPALA-3898"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3899" scope="external" format="html" keys="IMPALA-3899"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3900" scope="external" format="html" keys="IMPALA-3900"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3901" scope="external" format="html" keys="IMPALA-3901"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3902" scope="external" format="html" keys="IMPALA-3902"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3903" scope="external" format="html" keys="IMPALA-3903"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3904" scope="external" format="html" keys="IMPALA-3904"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3905" scope="external" format="html" keys="IMPALA-3905"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3906" scope="external" format="html" keys="IMPALA-3906"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3907" scope="external" format="html" keys="IMPALA-3907"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3908" scope="external" format="html" keys="IMPALA-3908"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3909" scope="external" format="html" keys="IMPALA-3909"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3910" scope="external" format="html" keys="IMPALA-3910"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3911" scope="external" format="html" keys="IMPALA-3911"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3912" scope="external" format="html" keys="IMPALA-3912"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3913" scope="external" format="html" keys="IMPALA-3913"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3914" scope="external" format="html" keys="IMPALA-3914"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3915" scope="external" format="html" keys="IMPALA-3915"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3916" scope="external" format="html" keys="IMPALA-3916"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3917" scope="external" format="html" keys="IMPALA-3917"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3918" scope="external" format="html" keys="IMPALA-3918"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3919" scope="external" format="html" keys="IMPALA-3919"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3920" scope="external" format="html" keys="IMPALA-3920"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3921" scope="external" format="html" keys="IMPALA-3921"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3922" scope="external" format="html" keys="IMPALA-3922"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3923" scope="external" format="html" keys="IMPALA-3923"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3924" scope="external" format="html" keys="IMPALA-3924"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3925" scope="external" format="html" keys="IMPALA-3925"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3926" scope="external" format="html" keys="IMPALA-3926"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3927" scope="external" format="html" keys="IMPALA-3927"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3928" scope="external" format="html" keys="IMPALA-3928"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3929" scope="external" format="html" keys="IMPALA-3929"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3930" scope="external" format="html" keys="IMPALA-3930"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3931" scope="external" format="html" keys="IMPALA-3931"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3932" scope="external" format="html" keys="IMPALA-3932"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3933" scope="external" format="html" keys="IMPALA-3933"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3934" scope="external" format="html" keys="IMPALA-3934"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3935" scope="external" format="html" keys="IMPALA-3935"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3936" scope="external" format="html" keys="IMPALA-3936"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3937" scope="external" format="html" keys="IMPALA-3937"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3938" scope="external" format="html" keys="IMPALA-3938"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3939" scope="external" format="html" keys="IMPALA-3939"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3940" scope="external" format="html" keys="IMPALA-3940"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3941" scope="external" format="html" keys="IMPALA-3941"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3942" scope="external" format="html" keys="IMPALA-3942"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3943" scope="external" format="html" keys="IMPALA-3943"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3944" scope="external" format="html" keys="IMPALA-3944"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3945" scope="external" format="html" keys="IMPALA-3945"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3946" scope="external" format="html" keys="IMPALA-3946"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3947" scope="external" format="html" keys="IMPALA-3947"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3948" scope="external" format="html" keys="IMPALA-3948"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3949" scope="external" format="html" keys="IMPALA-3949"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3950" scope="external" format="html" keys="IMPALA-3950"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3951" scope="external" format="html" keys="IMPALA-3951"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3952" scope="external" format="html" keys="IMPALA-3952"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3953" scope="external" format="html" keys="IMPALA-3953"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3954" scope="external" format="html" keys="IMPALA-3954"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3955" scope="external" format="html" keys="IMPALA-3955"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3956" scope="external" format="html" keys="IMPALA-3956"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3957" scope="external" format="html" keys="IMPALA-3957"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3958" scope="external" format="html" keys="IMPALA-3958"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3959" scope="external" format="html" keys="IMPALA-3959"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3960" scope="external" format="html" keys="IMPALA-3960"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3961" scope="external" format="html" keys="IMPALA-3961"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3962" scope="external" format="html" keys="IMPALA-3962"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3963" scope="external" format="html" keys="IMPALA-3963"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3964" scope="external" format="html" keys="IMPALA-3964"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3965" scope="external" format="html" keys="IMPALA-3965"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3966" scope="external" format="html" keys="IMPALA-3966"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3967" scope="external" format="html" keys="IMPALA-3967"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3968" scope="external" format="html" keys="IMPALA-3968"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3969" scope="external" format="html" keys="IMPALA-3969"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3970" scope="external" format="html" keys="IMPALA-3970"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3971" scope="external" format="html" keys="IMPALA-3971"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3972" scope="external" format="html" keys="IMPALA-3972"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3973" scope="external" format="html" keys="IMPALA-3973"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3974" scope="external" format="html" keys="IMPALA-3974"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3975" scope="external" format="html" keys="IMPALA-3975"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3976" scope="external" format="html" keys="IMPALA-3976"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3977" scope="external" format="html" keys="IMPALA-3977"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3978" scope="external" format="html" keys="IMPALA-3978"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3979" scope="external" format="html" keys="IMPALA-3979"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3980" scope="external" format="html" keys="IMPALA-3980"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3981" scope="external" format="html" keys="IMPALA-3981"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3982" scope="external" format="html" keys="IMPALA-3982"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3983" scope="external" format="html" keys="IMPALA-3983"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3984" scope="external" format="html" keys="IMPALA-3984"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3985" scope="external" format="html" keys="IMPALA-3985"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3986" scope="external" format="html" keys="IMPALA-3986"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3987" scope="external" format="html" keys="IMPALA-3987"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3988" scope="external" format="html" keys="IMPALA-3988"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3989" scope="external" format="html" keys="IMPALA-3989"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3990" scope="external" format="html" keys="IMPALA-3990"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3991" scope="external" format="html" keys="IMPALA-3991"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3992" scope="external" format="html" keys="IMPALA-3992"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3993" scope="external" format="html" keys="IMPALA-3993"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3994" scope="external" format="html" keys="IMPALA-3994"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3995" scope="external" format="html" keys="IMPALA-3995"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3996" scope="external" format="html" keys="IMPALA-3996"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3997" scope="external" format="html" keys="IMPALA-3997"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3998" scope="external" format="html" keys="IMPALA-3998"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-3999" scope="external" format="html" keys="IMPALA-3999"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4000" scope="external" format="html" keys="IMPALA-4000"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4001" scope="external" format="html" keys="IMPALA-4001"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4002" scope="external" format="html" keys="IMPALA-4002"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4003" scope="external" format="html" keys="IMPALA-4003"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4004" scope="external" format="html" keys="IMPALA-4004"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4005" scope="external" format="html" keys="IMPALA-4005"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4006" scope="external" format="html" keys="IMPALA-4006"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4007" scope="external" format="html" keys="IMPALA-4007"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4008" scope="external" format="html" keys="IMPALA-4008"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4009" scope="external" format="html" keys="IMPALA-4009"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4010" scope="external" format="html" keys="IMPALA-4010"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4011" scope="external" format="html" keys="IMPALA-4011"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4012" scope="external" format="html" keys="IMPALA-4012"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4013" scope="external" format="html" keys="IMPALA-4013"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4014" scope="external" format="html" keys="IMPALA-4014"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4015" scope="external" format="html" keys="IMPALA-4015"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4016" scope="external" format="html" keys="IMPALA-4016"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4017" scope="external" format="html" keys="IMPALA-4017"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4018" scope="external" format="html" keys="IMPALA-4018"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4019" scope="external" format="html" keys="IMPALA-4019"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4020" scope="external" format="html" keys="IMPALA-4020"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4021" scope="external" format="html" keys="IMPALA-4021"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4022" scope="external" format="html" keys="IMPALA-4022"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4023" scope="external" format="html" keys="IMPALA-4023"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4024" scope="external" format="html" keys="IMPALA-4024"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4025" scope="external" format="html" keys="IMPALA-4025"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4026" scope="external" format="html" keys="IMPALA-4026"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4027" scope="external" format="html" keys="IMPALA-4027"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4028" scope="external" format="html" keys="IMPALA-4028"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4029" scope="external" format="html" keys="IMPALA-4029"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4030" scope="external" format="html" keys="IMPALA-4030"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4031" scope="external" format="html" keys="IMPALA-4031"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4032" scope="external" format="html" keys="IMPALA-4032"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4033" scope="external" format="html" keys="IMPALA-4033"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4034" scope="external" format="html" keys="IMPALA-4034"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4035" scope="external" format="html" keys="IMPALA-4035"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4036" scope="external" format="html" keys="IMPALA-4036"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4037" scope="external" format="html" keys="IMPALA-4037"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4038" scope="external" format="html" keys="IMPALA-4038"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4039" scope="external" format="html" keys="IMPALA-4039"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4040" scope="external" format="html" keys="IMPALA-4040"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4041" scope="external" format="html" keys="IMPALA-4041"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4042" scope="external" format="html" keys="IMPALA-4042"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4043" scope="external" format="html" keys="IMPALA-4043"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4044" scope="external" format="html" keys="IMPALA-4044"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4045" scope="external" format="html" keys="IMPALA-4045"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4046" scope="external" format="html" keys="IMPALA-4046"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4047" scope="external" format="html" keys="IMPALA-4047"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4048" scope="external" format="html" keys="IMPALA-4048"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4049" scope="external" format="html" keys="IMPALA-4049"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4050" scope="external" format="html" keys="IMPALA-4050"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4051" scope="external" format="html" keys="IMPALA-4051"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4052" scope="external" format="html" keys="IMPALA-4052"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4053" scope="external" format="html" keys="IMPALA-4053"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4054" scope="external" format="html" keys="IMPALA-4054"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4055" scope="external" format="html" keys="IMPALA-4055"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4056" scope="external" format="html" keys="IMPALA-4056"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4057" scope="external" format="html" keys="IMPALA-4057"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4058" scope="external" format="html" keys="IMPALA-4058"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4059" scope="external" format="html" keys="IMPALA-4059"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4060" scope="external" format="html" keys="IMPALA-4060"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4061" scope="external" format="html" keys="IMPALA-4061"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4062" scope="external" format="html" keys="IMPALA-4062"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4063" scope="external" format="html" keys="IMPALA-4063"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4064" scope="external" format="html" keys="IMPALA-4064"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4065" scope="external" format="html" keys="IMPALA-4065"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4066" scope="external" format="html" keys="IMPALA-4066"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4067" scope="external" format="html" keys="IMPALA-4067"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4068" scope="external" format="html" keys="IMPALA-4068"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4069" scope="external" format="html" keys="IMPALA-4069"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4070" scope="external" format="html" keys="IMPALA-4070"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4071" scope="external" format="html" keys="IMPALA-4071"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4072" scope="external" format="html" keys="IMPALA-4072"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4073" scope="external" format="html" keys="IMPALA-4073"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4074" scope="external" format="html" keys="IMPALA-4074"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4075" scope="external" format="html" keys="IMPALA-4075"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4076" scope="external" format="html" keys="IMPALA-4076"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4077" scope="external" format="html" keys="IMPALA-4077"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4078" scope="external" format="html" keys="IMPALA-4078"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4079" scope="external" format="html" keys="IMPALA-4079"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4080" scope="external" format="html" keys="IMPALA-4080"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4081" scope="external" format="html" keys="IMPALA-4081"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4082" scope="external" format="html" keys="IMPALA-4082"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4083" scope="external" format="html" keys="IMPALA-4083"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4084" scope="external" format="html" keys="IMPALA-4084"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4085" scope="external" format="html" keys="IMPALA-4085"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4086" scope="external" format="html" keys="IMPALA-4086"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4087" scope="external" format="html" keys="IMPALA-4087"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4088" scope="external" format="html" keys="IMPALA-4088"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4089" scope="external" format="html" keys="IMPALA-4089"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4090" scope="external" format="html" keys="IMPALA-4090"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4091" scope="external" format="html" keys="IMPALA-4091"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4092" scope="external" format="html" keys="IMPALA-4092"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4093" scope="external" format="html" keys="IMPALA-4093"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4094" scope="external" format="html" keys="IMPALA-4094"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4095" scope="external" format="html" keys="IMPALA-4095"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4096" scope="external" format="html" keys="IMPALA-4096"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4097" scope="external" format="html" keys="IMPALA-4097"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4098" scope="external" format="html" keys="IMPALA-4098"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4099" scope="external" format="html" keys="IMPALA-4099"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4100" scope="external" format="html" keys="IMPALA-4100"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4101" scope="external" format="html" keys="IMPALA-4101"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4102" scope="external" format="html" keys="IMPALA-4102"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4103" scope="external" format="html" keys="IMPALA-4103"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4104" scope="external" format="html" keys="IMPALA-4104"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4105" scope="external" format="html" keys="IMPALA-4105"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4106" scope="external" format="html" keys="IMPALA-4106"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4107" scope="external" format="html" keys="IMPALA-4107"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4108" scope="external" format="html" keys="IMPALA-4108"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4109" scope="external" format="html" keys="IMPALA-4109"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4110" scope="external" format="html" keys="IMPALA-4110"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4111" scope="external" format="html" keys="IMPALA-4111"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4112" scope="external" format="html" keys="IMPALA-4112"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4113" scope="external" format="html" keys="IMPALA-4113"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4114" scope="external" format="html" keys="IMPALA-4114"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4115" scope="external" format="html" keys="IMPALA-4115"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4116" scope="external" format="html" keys="IMPALA-4116"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4117" scope="external" format="html" keys="IMPALA-4117"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4118" scope="external" format="html" keys="IMPALA-4118"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4119" scope="external" format="html" keys="IMPALA-4119"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4120" scope="external" format="html" keys="IMPALA-4120"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4121" scope="external" format="html" keys="IMPALA-4121"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4122" scope="external" format="html" keys="IMPALA-4122"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4123" scope="external" format="html" keys="IMPALA-4123"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4124" scope="external" format="html" keys="IMPALA-4124"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4125" scope="external" format="html" keys="IMPALA-4125"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4126" scope="external" format="html" keys="IMPALA-4126"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4127" scope="external" format="html" keys="IMPALA-4127"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4128" scope="external" format="html" keys="IMPALA-4128"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4129" scope="external" format="html" keys="IMPALA-4129"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4130" scope="external" format="html" keys="IMPALA-4130"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4131" scope="external" format="html" keys="IMPALA-4131"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4132" scope="external" format="html" keys="IMPALA-4132"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4133" scope="external" format="html" keys="IMPALA-4133"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4134" scope="external" format="html" keys="IMPALA-4134"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4135" scope="external" format="html" keys="IMPALA-4135"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4136" scope="external" format="html" keys="IMPALA-4136"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4137" scope="external" format="html" keys="IMPALA-4137"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4138" scope="external" format="html" keys="IMPALA-4138"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4139" scope="external" format="html" keys="IMPALA-4139"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4140" scope="external" format="html" keys="IMPALA-4140"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4141" scope="external" format="html" keys="IMPALA-4141"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4142" scope="external" format="html" keys="IMPALA-4142"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4143" scope="external" format="html" keys="IMPALA-4143"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4144" scope="external" format="html" keys="IMPALA-4144"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4145" scope="external" format="html" keys="IMPALA-4145"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4146" scope="external" format="html" keys="IMPALA-4146"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4147" scope="external" format="html" keys="IMPALA-4147"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4148" scope="external" format="html" keys="IMPALA-4148"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4149" scope="external" format="html" keys="IMPALA-4149"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4150" scope="external" format="html" keys="IMPALA-4150"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4151" scope="external" format="html" keys="IMPALA-4151"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4152" scope="external" format="html" keys="IMPALA-4152"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4153" scope="external" format="html" keys="IMPALA-4153"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4154" scope="external" format="html" keys="IMPALA-4154"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4155" scope="external" format="html" keys="IMPALA-4155"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4156" scope="external" format="html" keys="IMPALA-4156"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4157" scope="external" format="html" keys="IMPALA-4157"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4158" scope="external" format="html" keys="IMPALA-4158"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4159" scope="external" format="html" keys="IMPALA-4159"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4160" scope="external" format="html" keys="IMPALA-4160"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4161" scope="external" format="html" keys="IMPALA-4161"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4162" scope="external" format="html" keys="IMPALA-4162"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4163" scope="external" format="html" keys="IMPALA-4163"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4164" scope="external" format="html" keys="IMPALA-4164"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4165" scope="external" format="html" keys="IMPALA-4165"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4166" scope="external" format="html" keys="IMPALA-4166"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4167" scope="external" format="html" keys="IMPALA-4167"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4168" scope="external" format="html" keys="IMPALA-4168"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4169" scope="external" format="html" keys="IMPALA-4169"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4170" scope="external" format="html" keys="IMPALA-4170"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4171" scope="external" format="html" keys="IMPALA-4171"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4172" scope="external" format="html" keys="IMPALA-4172"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4173" scope="external" format="html" keys="IMPALA-4173"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4174" scope="external" format="html" keys="IMPALA-4174"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4175" scope="external" format="html" keys="IMPALA-4175"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4176" scope="external" format="html" keys="IMPALA-4176"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4177" scope="external" format="html" keys="IMPALA-4177"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4178" scope="external" format="html" keys="IMPALA-4178"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4179" scope="external" format="html" keys="IMPALA-4179"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4180" scope="external" format="html" keys="IMPALA-4180"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4181" scope="external" format="html" keys="IMPALA-4181"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4182" scope="external" format="html" keys="IMPALA-4182"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4183" scope="external" format="html" keys="IMPALA-4183"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4184" scope="external" format="html" keys="IMPALA-4184"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4185" scope="external" format="html" keys="IMPALA-4185"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4186" scope="external" format="html" keys="IMPALA-4186"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4187" scope="external" format="html" keys="IMPALA-4187"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4188" scope="external" format="html" keys="IMPALA-4188"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4189" scope="external" format="html" keys="IMPALA-4189"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4190" scope="external" format="html" keys="IMPALA-4190"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4191" scope="external" format="html" keys="IMPALA-4191"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4192" scope="external" format="html" keys="IMPALA-4192"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4193" scope="external" format="html" keys="IMPALA-4193"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4194" scope="external" format="html" keys="IMPALA-4194"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4195" scope="external" format="html" keys="IMPALA-4195"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4196" scope="external" format="html" keys="IMPALA-4196"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4197" scope="external" format="html" keys="IMPALA-4197"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4198" scope="external" format="html" keys="IMPALA-4198"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4199" scope="external" format="html" keys="IMPALA-4199"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4200" scope="external" format="html" keys="IMPALA-4200"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4201" scope="external" format="html" keys="IMPALA-4201"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4202" scope="external" format="html" keys="IMPALA-4202"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4203" scope="external" format="html" keys="IMPALA-4203"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4204" scope="external" format="html" keys="IMPALA-4204"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4205" scope="external" format="html" keys="IMPALA-4205"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4206" scope="external" format="html" keys="IMPALA-4206"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4207" scope="external" format="html" keys="IMPALA-4207"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4208" scope="external" format="html" keys="IMPALA-4208"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4209" scope="external" format="html" keys="IMPALA-4209"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4210" scope="external" format="html" keys="IMPALA-4210"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4211" scope="external" format="html" keys="IMPALA-4211"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4212" scope="external" format="html" keys="IMPALA-4212"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4213" scope="external" format="html" keys="IMPALA-4213"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4214" scope="external" format="html" keys="IMPALA-4214"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4215" scope="external" format="html" keys="IMPALA-4215"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4216" scope="external" format="html" keys="IMPALA-4216"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4217" scope="external" format="html" keys="IMPALA-4217"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4218" scope="external" format="html" keys="IMPALA-4218"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4219" scope="external" format="html" keys="IMPALA-4219"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4220" scope="external" format="html" keys="IMPALA-4220"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4221" scope="external" format="html" keys="IMPALA-4221"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4222" scope="external" format="html" keys="IMPALA-4222"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4223" scope="external" format="html" keys="IMPALA-4223"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4224" scope="external" format="html" keys="IMPALA-4224"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4225" scope="external" format="html" keys="IMPALA-4225"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4226" scope="external" format="html" keys="IMPALA-4226"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4227" scope="external" format="html" keys="IMPALA-4227"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4228" scope="external" format="html" keys="IMPALA-4228"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4229" scope="external" format="html" keys="IMPALA-4229"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4230" scope="external" format="html" keys="IMPALA-4230"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4231" scope="external" format="html" keys="IMPALA-4231"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4232" scope="external" format="html" keys="IMPALA-4232"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4233" scope="external" format="html" keys="IMPALA-4233"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4234" scope="external" format="html" keys="IMPALA-4234"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4235" scope="external" format="html" keys="IMPALA-4235"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4236" scope="external" format="html" keys="IMPALA-4236"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4237" scope="external" format="html" keys="IMPALA-4237"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4238" scope="external" format="html" keys="IMPALA-4238"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4239" scope="external" format="html" keys="IMPALA-4239"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4240" scope="external" format="html" keys="IMPALA-4240"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4241" scope="external" format="html" keys="IMPALA-4241"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4242" scope="external" format="html" keys="IMPALA-4242"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4243" scope="external" format="html" keys="IMPALA-4243"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4244" scope="external" format="html" keys="IMPALA-4244"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4245" scope="external" format="html" keys="IMPALA-4245"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4246" scope="external" format="html" keys="IMPALA-4246"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4247" scope="external" format="html" keys="IMPALA-4247"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4248" scope="external" format="html" keys="IMPALA-4248"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4249" scope="external" format="html" keys="IMPALA-4249"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4250" scope="external" format="html" keys="IMPALA-4250"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4251" scope="external" format="html" keys="IMPALA-4251"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4252" scope="external" format="html" keys="IMPALA-4252"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4253" scope="external" format="html" keys="IMPALA-4253"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4254" scope="external" format="html" keys="IMPALA-4254"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4255" scope="external" format="html" keys="IMPALA-4255"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4256" scope="external" format="html" keys="IMPALA-4256"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4257" scope="external" format="html" keys="IMPALA-4257"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4258" scope="external" format="html" keys="IMPALA-4258"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4259" scope="external" format="html" keys="IMPALA-4259"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4260" scope="external" format="html" keys="IMPALA-4260"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4261" scope="external" format="html" keys="IMPALA-4261"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4262" scope="external" format="html" keys="IMPALA-4262"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4263" scope="external" format="html" keys="IMPALA-4263"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4264" scope="external" format="html" keys="IMPALA-4264"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4265" scope="external" format="html" keys="IMPALA-4265"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4266" scope="external" format="html" keys="IMPALA-4266"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4267" scope="external" format="html" keys="IMPALA-4267"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4268" scope="external" format="html" keys="IMPALA-4268"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4269" scope="external" format="html" keys="IMPALA-4269"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4270" scope="external" format="html" keys="IMPALA-4270"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4271" scope="external" format="html" keys="IMPALA-4271"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4272" scope="external" format="html" keys="IMPALA-4272"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4273" scope="external" format="html" keys="IMPALA-4273"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4274" scope="external" format="html" keys="IMPALA-4274"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4275" scope="external" format="html" keys="IMPALA-4275"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4276" scope="external" format="html" keys="IMPALA-4276"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4277" scope="external" format="html" keys="IMPALA-4277"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4278" scope="external" format="html" keys="IMPALA-4278"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4279" scope="external" format="html" keys="IMPALA-4279"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4280" scope="external" format="html" keys="IMPALA-4280"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4281" scope="external" format="html" keys="IMPALA-4281"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4282" scope="external" format="html" keys="IMPALA-4282"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4283" scope="external" format="html" keys="IMPALA-4283"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4284" scope="external" format="html" keys="IMPALA-4284"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4285" scope="external" format="html" keys="IMPALA-4285"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4286" scope="external" format="html" keys="IMPALA-4286"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4287" scope="external" format="html" keys="IMPALA-4287"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4288" scope="external" format="html" keys="IMPALA-4288"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4289" scope="external" format="html" keys="IMPALA-4289"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4290" scope="external" format="html" keys="IMPALA-4290"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4291" scope="external" format="html" keys="IMPALA-4291"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4292" scope="external" format="html" keys="IMPALA-4292"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4293" scope="external" format="html" keys="IMPALA-4293"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4294" scope="external" format="html" keys="IMPALA-4294"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4295" scope="external" format="html" keys="IMPALA-4295"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4296" scope="external" format="html" keys="IMPALA-4296"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4297" scope="external" format="html" keys="IMPALA-4297"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4298" scope="external" format="html" keys="IMPALA-4298"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4299" scope="external" format="html" keys="IMPALA-4299"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4300" scope="external" format="html" keys="IMPALA-4300"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4301" scope="external" format="html" keys="IMPALA-4301"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4302" scope="external" format="html" keys="IMPALA-4302"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4303" scope="external" format="html" keys="IMPALA-4303"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4304" scope="external" format="html" keys="IMPALA-4304"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4305" scope="external" format="html" keys="IMPALA-4305"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4306" scope="external" format="html" keys="IMPALA-4306"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4307" scope="external" format="html" keys="IMPALA-4307"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4308" scope="external" format="html" keys="IMPALA-4308"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4309" scope="external" format="html" keys="IMPALA-4309"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4310" scope="external" format="html" keys="IMPALA-4310"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4311" scope="external" format="html" keys="IMPALA-4311"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4312" scope="external" format="html" keys="IMPALA-4312"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4313" scope="external" format="html" keys="IMPALA-4313"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4314" scope="external" format="html" keys="IMPALA-4314"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4315" scope="external" format="html" keys="IMPALA-4315"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4316" scope="external" format="html" keys="IMPALA-4316"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4317" scope="external" format="html" keys="IMPALA-4317"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4318" scope="external" format="html" keys="IMPALA-4318"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4319" scope="external" format="html" keys="IMPALA-4319"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4320" scope="external" format="html" keys="IMPALA-4320"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4321" scope="external" format="html" keys="IMPALA-4321"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4322" scope="external" format="html" keys="IMPALA-4322"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4323" scope="external" format="html" keys="IMPALA-4323"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4324" scope="external" format="html" keys="IMPALA-4324"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4325" scope="external" format="html" keys="IMPALA-4325"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4326" scope="external" format="html" keys="IMPALA-4326"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4327" scope="external" format="html" keys="IMPALA-4327"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4328" scope="external" format="html" keys="IMPALA-4328"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4329" scope="external" format="html" keys="IMPALA-4329"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4330" scope="external" format="html" keys="IMPALA-4330"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4331" scope="external" format="html" keys="IMPALA-4331"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4332" scope="external" format="html" keys="IMPALA-4332"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4333" scope="external" format="html" keys="IMPALA-4333"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4334" scope="external" format="html" keys="IMPALA-4334"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4335" scope="external" format="html" keys="IMPALA-4335"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4336" scope="external" format="html" keys="IMPALA-4336"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4337" scope="external" format="html" keys="IMPALA-4337"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4338" scope="external" format="html" keys="IMPALA-4338"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4339" scope="external" format="html" keys="IMPALA-4339"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4340" scope="external" format="html" keys="IMPALA-4340"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4341" scope="external" format="html" keys="IMPALA-4341"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4342" scope="external" format="html" keys="IMPALA-4342"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4343" scope="external" format="html" keys="IMPALA-4343"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4344" scope="external" format="html" keys="IMPALA-4344"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4345" scope="external" format="html" keys="IMPALA-4345"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4346" scope="external" format="html" keys="IMPALA-4346"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4347" scope="external" format="html" keys="IMPALA-4347"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4348" scope="external" format="html" keys="IMPALA-4348"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4349" scope="external" format="html" keys="IMPALA-4349"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4350" scope="external" format="html" keys="IMPALA-4350"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4351" scope="external" format="html" keys="IMPALA-4351"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4352" scope="external" format="html" keys="IMPALA-4352"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4353" scope="external" format="html" keys="IMPALA-4353"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4354" scope="external" format="html" keys="IMPALA-4354"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4355" scope="external" format="html" keys="IMPALA-4355"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4356" scope="external" format="html" keys="IMPALA-4356"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4357" scope="external" format="html" keys="IMPALA-4357"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4358" scope="external" format="html" keys="IMPALA-4358"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4359" scope="external" format="html" keys="IMPALA-4359"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4360" scope="external" format="html" keys="IMPALA-4360"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4361" scope="external" format="html" keys="IMPALA-4361"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4362" scope="external" format="html" keys="IMPALA-4362"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4363" scope="external" format="html" keys="IMPALA-4363"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4364" scope="external" format="html" keys="IMPALA-4364"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4365" scope="external" format="html" keys="IMPALA-4365"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4366" scope="external" format="html" keys="IMPALA-4366"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4367" scope="external" format="html" keys="IMPALA-4367"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4368" scope="external" format="html" keys="IMPALA-4368"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4369" scope="external" format="html" keys="IMPALA-4369"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4370" scope="external" format="html" keys="IMPALA-4370"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4371" scope="external" format="html" keys="IMPALA-4371"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4372" scope="external" format="html" keys="IMPALA-4372"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4373" scope="external" format="html" keys="IMPALA-4373"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4374" scope="external" format="html" keys="IMPALA-4374"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4375" scope="external" format="html" keys="IMPALA-4375"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4376" scope="external" format="html" keys="IMPALA-4376"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4377" scope="external" format="html" keys="IMPALA-4377"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4378" scope="external" format="html" keys="IMPALA-4378"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4379" scope="external" format="html" keys="IMPALA-4379"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4380" scope="external" format="html" keys="IMPALA-4380"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4381" scope="external" format="html" keys="IMPALA-4381"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4382" scope="external" format="html" keys="IMPALA-4382"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4383" scope="external" format="html" keys="IMPALA-4383"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4384" scope="external" format="html" keys="IMPALA-4384"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4385" scope="external" format="html" keys="IMPALA-4385"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4386" scope="external" format="html" keys="IMPALA-4386"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4387" scope="external" format="html" keys="IMPALA-4387"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4388" scope="external" format="html" keys="IMPALA-4388"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4389" scope="external" format="html" keys="IMPALA-4389"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4390" scope="external" format="html" keys="IMPALA-4390"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4391" scope="external" format="html" keys="IMPALA-4391"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4392" scope="external" format="html" keys="IMPALA-4392"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4393" scope="external" format="html" keys="IMPALA-4393"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4394" scope="external" format="html" keys="IMPALA-4394"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4395" scope="external" format="html" keys="IMPALA-4395"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4396" scope="external" format="html" keys="IMPALA-4396"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4397" scope="external" format="html" keys="IMPALA-4397"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4398" scope="external" format="html" keys="IMPALA-4398"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4399" scope="external" format="html" keys="IMPALA-4399"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4400" scope="external" format="html" keys="IMPALA-4400"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4401" scope="external" format="html" keys="IMPALA-4401"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4402" scope="external" format="html" keys="IMPALA-4402"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4403" scope="external" format="html" keys="IMPALA-4403"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4404" scope="external" format="html" keys="IMPALA-4404"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4405" scope="external" format="html" keys="IMPALA-4405"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4406" scope="external" format="html" keys="IMPALA-4406"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4407" scope="external" format="html" keys="IMPALA-4407"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4408" scope="external" format="html" keys="IMPALA-4408"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4409" scope="external" format="html" keys="IMPALA-4409"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4410" scope="external" format="html" keys="IMPALA-4410"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4411" scope="external" format="html" keys="IMPALA-4411"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4412" scope="external" format="html" keys="IMPALA-4412"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4413" scope="external" format="html" keys="IMPALA-4413"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4414" scope="external" format="html" keys="IMPALA-4414"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4415" scope="external" format="html" keys="IMPALA-4415"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4416" scope="external" format="html" keys="IMPALA-4416"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4417" scope="external" format="html" keys="IMPALA-4417"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4418" scope="external" format="html" keys="IMPALA-4418"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4419" scope="external" format="html" keys="IMPALA-4419"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4420" scope="external" format="html" keys="IMPALA-4420"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4421" scope="external" format="html" keys="IMPALA-4421"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4422" scope="external" format="html" keys="IMPALA-4422"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4423" scope="external" format="html" keys="IMPALA-4423"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4424" scope="external" format="html" keys="IMPALA-4424"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4425" scope="external" format="html" keys="IMPALA-4425"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4426" scope="external" format="html" keys="IMPALA-4426"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4427" scope="external" format="html" keys="IMPALA-4427"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4428" scope="external" format="html" keys="IMPALA-4428"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4429" scope="external" format="html" keys="IMPALA-4429"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4430" scope="external" format="html" keys="IMPALA-4430"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4431" scope="external" format="html" keys="IMPALA-4431"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4432" scope="external" format="html" keys="IMPALA-4432"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4433" scope="external" format="html" keys="IMPALA-4433"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4434" scope="external" format="html" keys="IMPALA-4434"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4435" scope="external" format="html" keys="IMPALA-4435"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4436" scope="external" format="html" keys="IMPALA-4436"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4437" scope="external" format="html" keys="IMPALA-4437"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4438" scope="external" format="html" keys="IMPALA-4438"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4439" scope="external" format="html" keys="IMPALA-4439"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4440" scope="external" format="html" keys="IMPALA-4440"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4441" scope="external" format="html" keys="IMPALA-4441"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4442" scope="external" format="html" keys="IMPALA-4442"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4443" scope="external" format="html" keys="IMPALA-4443"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4444" scope="external" format="html" keys="IMPALA-4444"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4445" scope="external" format="html" keys="IMPALA-4445"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4446" scope="external" format="html" keys="IMPALA-4446"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4447" scope="external" format="html" keys="IMPALA-4447"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4448" scope="external" format="html" keys="IMPALA-4448"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4449" scope="external" format="html" keys="IMPALA-4449"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4450" scope="external" format="html" keys="IMPALA-4450"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4451" scope="external" format="html" keys="IMPALA-4451"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4452" scope="external" format="html" keys="IMPALA-4452"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4453" scope="external" format="html" keys="IMPALA-4453"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4454" scope="external" format="html" keys="IMPALA-4454"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4455" scope="external" format="html" keys="IMPALA-4455"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4456" scope="external" format="html" keys="IMPALA-4456"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4457" scope="external" format="html" keys="IMPALA-4457"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4458" scope="external" format="html" keys="IMPALA-4458"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4459" scope="external" format="html" keys="IMPALA-4459"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4460" scope="external" format="html" keys="IMPALA-4460"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4461" scope="external" format="html" keys="IMPALA-4461"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4462" scope="external" format="html" keys="IMPALA-4462"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4463" scope="external" format="html" keys="IMPALA-4463"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4464" scope="external" format="html" keys="IMPALA-4464"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4465" scope="external" format="html" keys="IMPALA-4465"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4466" scope="external" format="html" keys="IMPALA-4466"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4467" scope="external" format="html" keys="IMPALA-4467"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4468" scope="external" format="html" keys="IMPALA-4468"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4469" scope="external" format="html" keys="IMPALA-4469"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4470" scope="external" format="html" keys="IMPALA-4470"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4471" scope="external" format="html" keys="IMPALA-4471"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4472" scope="external" format="html" keys="IMPALA-4472"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4473" scope="external" format="html" keys="IMPALA-4473"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4474" scope="external" format="html" keys="IMPALA-4474"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4475" scope="external" format="html" keys="IMPALA-4475"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4476" scope="external" format="html" keys="IMPALA-4476"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4477" scope="external" format="html" keys="IMPALA-4477"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4478" scope="external" format="html" keys="IMPALA-4478"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4479" scope="external" format="html" keys="IMPALA-4479"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4480" scope="external" format="html" keys="IMPALA-4480"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4481" scope="external" format="html" keys="IMPALA-4481"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4482" scope="external" format="html" keys="IMPALA-4482"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4483" scope="external" format="html" keys="IMPALA-4483"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4484" scope="external" format="html" keys="IMPALA-4484"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4485" scope="external" format="html" keys="IMPALA-4485"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4486" scope="external" format="html" keys="IMPALA-4486"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4487" scope="external" format="html" keys="IMPALA-4487"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4488" scope="external" format="html" keys="IMPALA-4488"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4489" scope="external" format="html" keys="IMPALA-4489"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4490" scope="external" format="html" keys="IMPALA-4490"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4491" scope="external" format="html" keys="IMPALA-4491"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4492" scope="external" format="html" keys="IMPALA-4492"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4493" scope="external" format="html" keys="IMPALA-4493"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4494" scope="external" format="html" keys="IMPALA-4494"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4495" scope="external" format="html" keys="IMPALA-4495"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4496" scope="external" format="html" keys="IMPALA-4496"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4497" scope="external" format="html" keys="IMPALA-4497"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4498" scope="external" format="html" keys="IMPALA-4498"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4499" scope="external" format="html" keys="IMPALA-4499"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4500" scope="external" format="html" keys="IMPALA-4500"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4501" scope="external" format="html" keys="IMPALA-4501"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4502" scope="external" format="html" keys="IMPALA-4502"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4503" scope="external" format="html" keys="IMPALA-4503"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4504" scope="external" format="html" keys="IMPALA-4504"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4505" scope="external" format="html" keys="IMPALA-4505"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4506" scope="external" format="html" keys="IMPALA-4506"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4507" scope="external" format="html" keys="IMPALA-4507"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4508" scope="external" format="html" keys="IMPALA-4508"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4509" scope="external" format="html" keys="IMPALA-4509"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4510" scope="external" format="html" keys="IMPALA-4510"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4511" scope="external" format="html" keys="IMPALA-4511"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4512" scope="external" format="html" keys="IMPALA-4512"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4513" scope="external" format="html" keys="IMPALA-4513"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4514" scope="external" format="html" keys="IMPALA-4514"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4515" scope="external" format="html" keys="IMPALA-4515"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4516" scope="external" format="html" keys="IMPALA-4516"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4517" scope="external" format="html" keys="IMPALA-4517"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4518" scope="external" format="html" keys="IMPALA-4518"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4519" scope="external" format="html" keys="IMPALA-4519"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4520" scope="external" format="html" keys="IMPALA-4520"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4521" scope="external" format="html" keys="IMPALA-4521"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4522" scope="external" format="html" keys="IMPALA-4522"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4523" scope="external" format="html" keys="IMPALA-4523"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4524" scope="external" format="html" keys="IMPALA-4524"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4525" scope="external" format="html" keys="IMPALA-4525"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4526" scope="external" format="html" keys="IMPALA-4526"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4527" scope="external" format="html" keys="IMPALA-4527"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4528" scope="external" format="html" keys="IMPALA-4528"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4529" scope="external" format="html" keys="IMPALA-4529"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4530" scope="external" format="html" keys="IMPALA-4530"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4531" scope="external" format="html" keys="IMPALA-4531"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4532" scope="external" format="html" keys="IMPALA-4532"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4533" scope="external" format="html" keys="IMPALA-4533"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4534" scope="external" format="html" keys="IMPALA-4534"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4535" scope="external" format="html" keys="IMPALA-4535"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4536" scope="external" format="html" keys="IMPALA-4536"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4537" scope="external" format="html" keys="IMPALA-4537"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4538" scope="external" format="html" keys="IMPALA-4538"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4539" scope="external" format="html" keys="IMPALA-4539"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4540" scope="external" format="html" keys="IMPALA-4540"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4541" scope="external" format="html" keys="IMPALA-4541"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4542" scope="external" format="html" keys="IMPALA-4542"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4543" scope="external" format="html" keys="IMPALA-4543"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4544" scope="external" format="html" keys="IMPALA-4544"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4545" scope="external" format="html" keys="IMPALA-4545"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4546" scope="external" format="html" keys="IMPALA-4546"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4547" scope="external" format="html" keys="IMPALA-4547"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4548" scope="external" format="html" keys="IMPALA-4548"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4549" scope="external" format="html" keys="IMPALA-4549"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4550" scope="external" format="html" keys="IMPALA-4550"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4551" scope="external" format="html" keys="IMPALA-4551"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4552" scope="external" format="html" keys="IMPALA-4552"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4553" scope="external" format="html" keys="IMPALA-4553"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4554" scope="external" format="html" keys="IMPALA-4554"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4555" scope="external" format="html" keys="IMPALA-4555"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4556" scope="external" format="html" keys="IMPALA-4556"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4557" scope="external" format="html" keys="IMPALA-4557"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4558" scope="external" format="html" keys="IMPALA-4558"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4559" scope="external" format="html" keys="IMPALA-4559"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4560" scope="external" format="html" keys="IMPALA-4560"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4561" scope="external" format="html" keys="IMPALA-4561"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4562" scope="external" format="html" keys="IMPALA-4562"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4563" scope="external" format="html" keys="IMPALA-4563"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4564" scope="external" format="html" keys="IMPALA-4564"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4565" scope="external" format="html" keys="IMPALA-4565"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4566" scope="external" format="html" keys="IMPALA-4566"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4567" scope="external" format="html" keys="IMPALA-4567"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4568" scope="external" format="html" keys="IMPALA-4568"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4569" scope="external" format="html" keys="IMPALA-4569"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4570" scope="external" format="html" keys="IMPALA-4570"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4571" scope="external" format="html" keys="IMPALA-4571"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4572" scope="external" format="html" keys="IMPALA-4572"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4573" scope="external" format="html" keys="IMPALA-4573"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4574" scope="external" format="html" keys="IMPALA-4574"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4575" scope="external" format="html" keys="IMPALA-4575"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4576" scope="external" format="html" keys="IMPALA-4576"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4577" scope="external" format="html" keys="IMPALA-4577"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4578" scope="external" format="html" keys="IMPALA-4578"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4579" scope="external" format="html" keys="IMPALA-4579"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4580" scope="external" format="html" keys="IMPALA-4580"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4581" scope="external" format="html" keys="IMPALA-4581"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4582" scope="external" format="html" keys="IMPALA-4582"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4583" scope="external" format="html" keys="IMPALA-4583"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4584" scope="external" format="html" keys="IMPALA-4584"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4585" scope="external" format="html" keys="IMPALA-4585"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4586" scope="external" format="html" keys="IMPALA-4586"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4587" scope="external" format="html" keys="IMPALA-4587"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4588" scope="external" format="html" keys="IMPALA-4588"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4589" scope="external" format="html" keys="IMPALA-4589"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4590" scope="external" format="html" keys="IMPALA-4590"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4591" scope="external" format="html" keys="IMPALA-4591"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4592" scope="external" format="html" keys="IMPALA-4592"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4593" scope="external" format="html" keys="IMPALA-4593"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4594" scope="external" format="html" keys="IMPALA-4594"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4595" scope="external" format="html" keys="IMPALA-4595"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4596" scope="external" format="html" keys="IMPALA-4596"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4597" scope="external" format="html" keys="IMPALA-4597"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4598" scope="external" format="html" keys="IMPALA-4598"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4599" scope="external" format="html" keys="IMPALA-4599"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4600" scope="external" format="html" keys="IMPALA-4600"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4601" scope="external" format="html" keys="IMPALA-4601"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4602" scope="external" format="html" keys="IMPALA-4602"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4603" scope="external" format="html" keys="IMPALA-4603"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4604" scope="external" format="html" keys="IMPALA-4604"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4605" scope="external" format="html" keys="IMPALA-4605"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4606" scope="external" format="html" keys="IMPALA-4606"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4607" scope="external" format="html" keys="IMPALA-4607"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4608" scope="external" format="html" keys="IMPALA-4608"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4609" scope="external" format="html" keys="IMPALA-4609"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4610" scope="external" format="html" keys="IMPALA-4610"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4611" scope="external" format="html" keys="IMPALA-4611"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4612" scope="external" format="html" keys="IMPALA-4612"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4613" scope="external" format="html" keys="IMPALA-4613"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4614" scope="external" format="html" keys="IMPALA-4614"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4615" scope="external" format="html" keys="IMPALA-4615"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4616" scope="external" format="html" keys="IMPALA-4616"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4617" scope="external" format="html" keys="IMPALA-4617"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4618" scope="external" format="html" keys="IMPALA-4618"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4619" scope="external" format="html" keys="IMPALA-4619"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4620" scope="external" format="html" keys="IMPALA-4620"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4621" scope="external" format="html" keys="IMPALA-4621"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4622" scope="external" format="html" keys="IMPALA-4622"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4623" scope="external" format="html" keys="IMPALA-4623"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4624" scope="external" format="html" keys="IMPALA-4624"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4625" scope="external" format="html" keys="IMPALA-4625"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4626" scope="external" format="html" keys="IMPALA-4626"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4627" scope="external" format="html" keys="IMPALA-4627"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4628" scope="external" format="html" keys="IMPALA-4628"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4629" scope="external" format="html" keys="IMPALA-4629"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4630" scope="external" format="html" keys="IMPALA-4630"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4631" scope="external" format="html" keys="IMPALA-4631"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4632" scope="external" format="html" keys="IMPALA-4632"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4633" scope="external" format="html" keys="IMPALA-4633"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4634" scope="external" format="html" keys="IMPALA-4634"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4635" scope="external" format="html" keys="IMPALA-4635"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4636" scope="external" format="html" keys="IMPALA-4636"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4637" scope="external" format="html" keys="IMPALA-4637"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4638" scope="external" format="html" keys="IMPALA-4638"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4639" scope="external" format="html" keys="IMPALA-4639"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4640" scope="external" format="html" keys="IMPALA-4640"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4641" scope="external" format="html" keys="IMPALA-4641"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4642" scope="external" format="html" keys="IMPALA-4642"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4643" scope="external" format="html" keys="IMPALA-4643"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4644" scope="external" format="html" keys="IMPALA-4644"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4645" scope="external" format="html" keys="IMPALA-4645"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4646" scope="external" format="html" keys="IMPALA-4646"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4647" scope="external" format="html" keys="IMPALA-4647"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4648" scope="external" format="html" keys="IMPALA-4648"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4649" scope="external" format="html" keys="IMPALA-4649"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4650" scope="external" format="html" keys="IMPALA-4650"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4651" scope="external" format="html" keys="IMPALA-4651"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4652" scope="external" format="html" keys="IMPALA-4652"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4653" scope="external" format="html" keys="IMPALA-4653"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4654" scope="external" format="html" keys="IMPALA-4654"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4655" scope="external" format="html" keys="IMPALA-4655"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4656" scope="external" format="html" keys="IMPALA-4656"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4657" scope="external" format="html" keys="IMPALA-4657"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4658" scope="external" format="html" keys="IMPALA-4658"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4659" scope="external" format="html" keys="IMPALA-4659"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4660" scope="external" format="html" keys="IMPALA-4660"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4661" scope="external" format="html" keys="IMPALA-4661"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4662" scope="external" format="html" keys="IMPALA-4662"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4663" scope="external" format="html" keys="IMPALA-4663"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4664" scope="external" format="html" keys="IMPALA-4664"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4665" scope="external" format="html" keys="IMPALA-4665"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4666" scope="external" format="html" keys="IMPALA-4666"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4667" scope="external" format="html" keys="IMPALA-4667"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4668" scope="external" format="html" keys="IMPALA-4668"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4669" scope="external" format="html" keys="IMPALA-4669"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4670" scope="external" format="html" keys="IMPALA-4670"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4671" scope="external" format="html" keys="IMPALA-4671"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4672" scope="external" format="html" keys="IMPALA-4672"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4673" scope="external" format="html" keys="IMPALA-4673"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4674" scope="external" format="html" keys="IMPALA-4674"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4675" scope="external" format="html" keys="IMPALA-4675"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4676" scope="external" format="html" keys="IMPALA-4676"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4677" scope="external" format="html" keys="IMPALA-4677"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4678" scope="external" format="html" keys="IMPALA-4678"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4679" scope="external" format="html" keys="IMPALA-4679"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4680" scope="external" format="html" keys="IMPALA-4680"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4681" scope="external" format="html" keys="IMPALA-4681"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4682" scope="external" format="html" keys="IMPALA-4682"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4683" scope="external" format="html" keys="IMPALA-4683"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4684" scope="external" format="html" keys="IMPALA-4684"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4685" scope="external" format="html" keys="IMPALA-4685"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4686" scope="external" format="html" keys="IMPALA-4686"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4687" scope="external" format="html" keys="IMPALA-4687"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4688" scope="external" format="html" keys="IMPALA-4688"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4689" scope="external" format="html" keys="IMPALA-4689"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4690" scope="external" format="html" keys="IMPALA-4690"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4691" scope="external" format="html" keys="IMPALA-4691"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4692" scope="external" format="html" keys="IMPALA-4692"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4693" scope="external" format="html" keys="IMPALA-4693"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4694" scope="external" format="html" keys="IMPALA-4694"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4695" scope="external" format="html" keys="IMPALA-4695"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4696" scope="external" format="html" keys="IMPALA-4696"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4697" scope="external" format="html" keys="IMPALA-4697"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4698" scope="external" format="html" keys="IMPALA-4698"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4699" scope="external" format="html" keys="IMPALA-4699"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4700" scope="external" format="html" keys="IMPALA-4700"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4701" scope="external" format="html" keys="IMPALA-4701"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4702" scope="external" format="html" keys="IMPALA-4702"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4703" scope="external" format="html" keys="IMPALA-4703"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4704" scope="external" format="html" keys="IMPALA-4704"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4705" scope="external" format="html" keys="IMPALA-4705"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4706" scope="external" format="html" keys="IMPALA-4706"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4707" scope="external" format="html" keys="IMPALA-4707"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4708" scope="external" format="html" keys="IMPALA-4708"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4709" scope="external" format="html" keys="IMPALA-4709"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4710" scope="external" format="html" keys="IMPALA-4710"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4711" scope="external" format="html" keys="IMPALA-4711"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4712" scope="external" format="html" keys="IMPALA-4712"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4713" scope="external" format="html" keys="IMPALA-4713"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4714" scope="external" format="html" keys="IMPALA-4714"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4715" scope="external" format="html" keys="IMPALA-4715"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4716" scope="external" format="html" keys="IMPALA-4716"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4717" scope="external" format="html" keys="IMPALA-4717"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4718" scope="external" format="html" keys="IMPALA-4718"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4719" scope="external" format="html" keys="IMPALA-4719"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4720" scope="external" format="html" keys="IMPALA-4720"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4721" scope="external" format="html" keys="IMPALA-4721"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4722" scope="external" format="html" keys="IMPALA-4722"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4723" scope="external" format="html" keys="IMPALA-4723"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4724" scope="external" format="html" keys="IMPALA-4724"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4725" scope="external" format="html" keys="IMPALA-4725"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4726" scope="external" format="html" keys="IMPALA-4726"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4727" scope="external" format="html" keys="IMPALA-4727"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4728" scope="external" format="html" keys="IMPALA-4728"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4729" scope="external" format="html" keys="IMPALA-4729"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4730" scope="external" format="html" keys="IMPALA-4730"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4731" scope="external" format="html" keys="IMPALA-4731"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4732" scope="external" format="html" keys="IMPALA-4732"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4733" scope="external" format="html" keys="IMPALA-4733"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4734" scope="external" format="html" keys="IMPALA-4734"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4735" scope="external" format="html" keys="IMPALA-4735"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4736" scope="external" format="html" keys="IMPALA-4736"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4737" scope="external" format="html" keys="IMPALA-4737"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4738" scope="external" format="html" keys="IMPALA-4738"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4739" scope="external" format="html" keys="IMPALA-4739"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4740" scope="external" format="html" keys="IMPALA-4740"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4741" scope="external" format="html" keys="IMPALA-4741"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4742" scope="external" format="html" keys="IMPALA-4742"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4743" scope="external" format="html" keys="IMPALA-4743"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4744" scope="external" format="html" keys="IMPALA-4744"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4745" scope="external" format="html" keys="IMPALA-4745"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4746" scope="external" format="html" keys="IMPALA-4746"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4747" scope="external" format="html" keys="IMPALA-4747"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4748" scope="external" format="html" keys="IMPALA-4748"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4749" scope="external" format="html" keys="IMPALA-4749"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4750" scope="external" format="html" keys="IMPALA-4750"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4751" scope="external" format="html" keys="IMPALA-4751"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4752" scope="external" format="html" keys="IMPALA-4752"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4753" scope="external" format="html" keys="IMPALA-4753"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4754" scope="external" format="html" keys="IMPALA-4754"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4755" scope="external" format="html" keys="IMPALA-4755"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4756" scope="external" format="html" keys="IMPALA-4756"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4757" scope="external" format="html" keys="IMPALA-4757"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4758" scope="external" format="html" keys="IMPALA-4758"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4759" scope="external" format="html" keys="IMPALA-4759"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4760" scope="external" format="html" keys="IMPALA-4760"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4761" scope="external" format="html" keys="IMPALA-4761"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4762" scope="external" format="html" keys="IMPALA-4762"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4763" scope="external" format="html" keys="IMPALA-4763"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4764" scope="external" format="html" keys="IMPALA-4764"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4765" scope="external" format="html" keys="IMPALA-4765"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4766" scope="external" format="html" keys="IMPALA-4766"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4767" scope="external" format="html" keys="IMPALA-4767"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4768" scope="external" format="html" keys="IMPALA-4768"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4769" scope="external" format="html" keys="IMPALA-4769"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4770" scope="external" format="html" keys="IMPALA-4770"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4771" scope="external" format="html" keys="IMPALA-4771"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4772" scope="external" format="html" keys="IMPALA-4772"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4773" scope="external" format="html" keys="IMPALA-4773"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4774" scope="external" format="html" keys="IMPALA-4774"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4775" scope="external" format="html" keys="IMPALA-4775"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4776" scope="external" format="html" keys="IMPALA-4776"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4777" scope="external" format="html" keys="IMPALA-4777"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4778" scope="external" format="html" keys="IMPALA-4778"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4779" scope="external" format="html" keys="IMPALA-4779"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4780" scope="external" format="html" keys="IMPALA-4780"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4781" scope="external" format="html" keys="IMPALA-4781"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4782" scope="external" format="html" keys="IMPALA-4782"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4783" scope="external" format="html" keys="IMPALA-4783"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4784" scope="external" format="html" keys="IMPALA-4784"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4785" scope="external" format="html" keys="IMPALA-4785"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4786" scope="external" format="html" keys="IMPALA-4786"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4787" scope="external" format="html" keys="IMPALA-4787"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4788" scope="external" format="html" keys="IMPALA-4788"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4789" scope="external" format="html" keys="IMPALA-4789"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4790" scope="external" format="html" keys="IMPALA-4790"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4791" scope="external" format="html" keys="IMPALA-4791"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4792" scope="external" format="html" keys="IMPALA-4792"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4793" scope="external" format="html" keys="IMPALA-4793"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4794" scope="external" format="html" keys="IMPALA-4794"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4795" scope="external" format="html" keys="IMPALA-4795"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4796" scope="external" format="html" keys="IMPALA-4796"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4797" scope="external" format="html" keys="IMPALA-4797"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4798" scope="external" format="html" keys="IMPALA-4798"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4799" scope="external" format="html" keys="IMPALA-4799"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4800" scope="external" format="html" keys="IMPALA-4800"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4801" scope="external" format="html" keys="IMPALA-4801"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4802" scope="external" format="html" keys="IMPALA-4802"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4803" scope="external" format="html" keys="IMPALA-4803"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4804" scope="external" format="html" keys="IMPALA-4804"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4805" scope="external" format="html" keys="IMPALA-4805"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4806" scope="external" format="html" keys="IMPALA-4806"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4807" scope="external" format="html" keys="IMPALA-4807"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4808" scope="external" format="html" keys="IMPALA-4808"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4809" scope="external" format="html" keys="IMPALA-4809"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4810" scope="external" format="html" keys="IMPALA-4810"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4811" scope="external" format="html" keys="IMPALA-4811"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4812" scope="external" format="html" keys="IMPALA-4812"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4813" scope="external" format="html" keys="IMPALA-4813"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4814" scope="external" format="html" keys="IMPALA-4814"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4815" scope="external" format="html" keys="IMPALA-4815"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4816" scope="external" format="html" keys="IMPALA-4816"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4817" scope="external" format="html" keys="IMPALA-4817"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4818" scope="external" format="html" keys="IMPALA-4818"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4819" scope="external" format="html" keys="IMPALA-4819"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4820" scope="external" format="html" keys="IMPALA-4820"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4821" scope="external" format="html" keys="IMPALA-4821"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4822" scope="external" format="html" keys="IMPALA-4822"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4823" scope="external" format="html" keys="IMPALA-4823"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4824" scope="external" format="html" keys="IMPALA-4824"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4825" scope="external" format="html" keys="IMPALA-4825"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4826" scope="external" format="html" keys="IMPALA-4826"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4827" scope="external" format="html" keys="IMPALA-4827"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4828" scope="external" format="html" keys="IMPALA-4828"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4829" scope="external" format="html" keys="IMPALA-4829"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4830" scope="external" format="html" keys="IMPALA-4830"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4831" scope="external" format="html" keys="IMPALA-4831"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4832" scope="external" format="html" keys="IMPALA-4832"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4833" scope="external" format="html" keys="IMPALA-4833"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4834" scope="external" format="html" keys="IMPALA-4834"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4835" scope="external" format="html" keys="IMPALA-4835"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4836" scope="external" format="html" keys="IMPALA-4836"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4837" scope="external" format="html" keys="IMPALA-4837"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4838" scope="external" format="html" keys="IMPALA-4838"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4839" scope="external" format="html" keys="IMPALA-4839"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4840" scope="external" format="html" keys="IMPALA-4840"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4841" scope="external" format="html" keys="IMPALA-4841"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4842" scope="external" format="html" keys="IMPALA-4842"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4843" scope="external" format="html" keys="IMPALA-4843"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4844" scope="external" format="html" keys="IMPALA-4844"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4845" scope="external" format="html" keys="IMPALA-4845"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4846" scope="external" format="html" keys="IMPALA-4846"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4847" scope="external" format="html" keys="IMPALA-4847"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4848" scope="external" format="html" keys="IMPALA-4848"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4849" scope="external" format="html" keys="IMPALA-4849"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4850" scope="external" format="html" keys="IMPALA-4850"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4851" scope="external" format="html" keys="IMPALA-4851"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4852" scope="external" format="html" keys="IMPALA-4852"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4853" scope="external" format="html" keys="IMPALA-4853"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4854" scope="external" format="html" keys="IMPALA-4854"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4855" scope="external" format="html" keys="IMPALA-4855"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4856" scope="external" format="html" keys="IMPALA-4856"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4857" scope="external" format="html" keys="IMPALA-4857"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4858" scope="external" format="html" keys="IMPALA-4858"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4859" scope="external" format="html" keys="IMPALA-4859"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4860" scope="external" format="html" keys="IMPALA-4860"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4861" scope="external" format="html" keys="IMPALA-4861"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4862" scope="external" format="html" keys="IMPALA-4862"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4863" scope="external" format="html" keys="IMPALA-4863"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4864" scope="external" format="html" keys="IMPALA-4864"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4865" scope="external" format="html" keys="IMPALA-4865"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4866" scope="external" format="html" keys="IMPALA-4866"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4867" scope="external" format="html" keys="IMPALA-4867"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4868" scope="external" format="html" keys="IMPALA-4868"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4869" scope="external" format="html" keys="IMPALA-4869"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4870" scope="external" format="html" keys="IMPALA-4870"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4871" scope="external" format="html" keys="IMPALA-4871"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4872" scope="external" format="html" keys="IMPALA-4872"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4873" scope="external" format="html" keys="IMPALA-4873"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4874" scope="external" format="html" keys="IMPALA-4874"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4875" scope="external" format="html" keys="IMPALA-4875"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4876" scope="external" format="html" keys="IMPALA-4876"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4877" scope="external" format="html" keys="IMPALA-4877"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4878" scope="external" format="html" keys="IMPALA-4878"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4879" scope="external" format="html" keys="IMPALA-4879"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4880" scope="external" format="html" keys="IMPALA-4880"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4881" scope="external" format="html" keys="IMPALA-4881"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4882" scope="external" format="html" keys="IMPALA-4882"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4883" scope="external" format="html" keys="IMPALA-4883"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4884" scope="external" format="html" keys="IMPALA-4884"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4885" scope="external" format="html" keys="IMPALA-4885"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4886" scope="external" format="html" keys="IMPALA-4886"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4887" scope="external" format="html" keys="IMPALA-4887"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4888" scope="external" format="html" keys="IMPALA-4888"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4889" scope="external" format="html" keys="IMPALA-4889"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4890" scope="external" format="html" keys="IMPALA-4890"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4891" scope="external" format="html" keys="IMPALA-4891"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4892" scope="external" format="html" keys="IMPALA-4892"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4893" scope="external" format="html" keys="IMPALA-4893"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4894" scope="external" format="html" keys="IMPALA-4894"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4895" scope="external" format="html" keys="IMPALA-4895"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4896" scope="external" format="html" keys="IMPALA-4896"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4897" scope="external" format="html" keys="IMPALA-4897"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4898" scope="external" format="html" keys="IMPALA-4898"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4899" scope="external" format="html" keys="IMPALA-4899"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4900" scope="external" format="html" keys="IMPALA-4900"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4901" scope="external" format="html" keys="IMPALA-4901"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4902" scope="external" format="html" keys="IMPALA-4902"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4903" scope="external" format="html" keys="IMPALA-4903"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4904" scope="external" format="html" keys="IMPALA-4904"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4905" scope="external" format="html" keys="IMPALA-4905"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4906" scope="external" format="html" keys="IMPALA-4906"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4907" scope="external" format="html" keys="IMPALA-4907"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4908" scope="external" format="html" keys="IMPALA-4908"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4909" scope="external" format="html" keys="IMPALA-4909"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4910" scope="external" format="html" keys="IMPALA-4910"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4911" scope="external" format="html" keys="IMPALA-4911"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4912" scope="external" format="html" keys="IMPALA-4912"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4913" scope="external" format="html" keys="IMPALA-4913"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4914" scope="external" format="html" keys="IMPALA-4914"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4915" scope="external" format="html" keys="IMPALA-4915"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4916" scope="external" format="html" keys="IMPALA-4916"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4917" scope="external" format="html" keys="IMPALA-4917"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4918" scope="external" format="html" keys="IMPALA-4918"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4919" scope="external" format="html" keys="IMPALA-4919"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4920" scope="external" format="html" keys="IMPALA-4920"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4921" scope="external" format="html" keys="IMPALA-4921"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4922" scope="external" format="html" keys="IMPALA-4922"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4923" scope="external" format="html" keys="IMPALA-4923"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4924" scope="external" format="html" keys="IMPALA-4924"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4925" scope="external" format="html" keys="IMPALA-4925"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4926" scope="external" format="html" keys="IMPALA-4926"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4927" scope="external" format="html" keys="IMPALA-4927"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4928" scope="external" format="html" keys="IMPALA-4928"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4929" scope="external" format="html" keys="IMPALA-4929"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4930" scope="external" format="html" keys="IMPALA-4930"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4931" scope="external" format="html" keys="IMPALA-4931"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4932" scope="external" format="html" keys="IMPALA-4932"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4933" scope="external" format="html" keys="IMPALA-4933"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4934" scope="external" format="html" keys="IMPALA-4934"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4935" scope="external" format="html" keys="IMPALA-4935"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4936" scope="external" format="html" keys="IMPALA-4936"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4937" scope="external" format="html" keys="IMPALA-4937"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4938" scope="external" format="html" keys="IMPALA-4938"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4939" scope="external" format="html" keys="IMPALA-4939"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4940" scope="external" format="html" keys="IMPALA-4940"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4941" scope="external" format="html" keys="IMPALA-4941"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4942" scope="external" format="html" keys="IMPALA-4942"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4943" scope="external" format="html" keys="IMPALA-4943"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4944" scope="external" format="html" keys="IMPALA-4944"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4945" scope="external" format="html" keys="IMPALA-4945"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4946" scope="external" format="html" keys="IMPALA-4946"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4947" scope="external" format="html" keys="IMPALA-4947"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4948" scope="external" format="html" keys="IMPALA-4948"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4949" scope="external" format="html" keys="IMPALA-4949"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4950" scope="external" format="html" keys="IMPALA-4950"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4951" scope="external" format="html" keys="IMPALA-4951"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4952" scope="external" format="html" keys="IMPALA-4952"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4953" scope="external" format="html" keys="IMPALA-4953"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4954" scope="external" format="html" keys="IMPALA-4954"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4955" scope="external" format="html" keys="IMPALA-4955"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4956" scope="external" format="html" keys="IMPALA-4956"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4957" scope="external" format="html" keys="IMPALA-4957"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4958" scope="external" format="html" keys="IMPALA-4958"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4959" scope="external" format="html" keys="IMPALA-4959"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4960" scope="external" format="html" keys="IMPALA-4960"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4961" scope="external" format="html" keys="IMPALA-4961"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4962" scope="external" format="html" keys="IMPALA-4962"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4963" scope="external" format="html" keys="IMPALA-4963"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4964" scope="external" format="html" keys="IMPALA-4964"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4965" scope="external" format="html" keys="IMPALA-4965"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4966" scope="external" format="html" keys="IMPALA-4966"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4967" scope="external" format="html" keys="IMPALA-4967"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4968" scope="external" format="html" keys="IMPALA-4968"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4969" scope="external" format="html" keys="IMPALA-4969"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4970" scope="external" format="html" keys="IMPALA-4970"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4971" scope="external" format="html" keys="IMPALA-4971"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4972" scope="external" format="html" keys="IMPALA-4972"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4973" scope="external" format="html" keys="IMPALA-4973"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4974" scope="external" format="html" keys="IMPALA-4974"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4975" scope="external" format="html" keys="IMPALA-4975"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4976" scope="external" format="html" keys="IMPALA-4976"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4977" scope="external" format="html" keys="IMPALA-4977"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4978" scope="external" format="html" keys="IMPALA-4978"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4979" scope="external" format="html" keys="IMPALA-4979"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4980" scope="external" format="html" keys="IMPALA-4980"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4981" scope="external" format="html" keys="IMPALA-4981"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4982" scope="external" format="html" keys="IMPALA-4982"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4983" scope="external" format="html" keys="IMPALA-4983"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4984" scope="external" format="html" keys="IMPALA-4984"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4985" scope="external" format="html" keys="IMPALA-4985"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4986" scope="external" format="html" keys="IMPALA-4986"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4987" scope="external" format="html" keys="IMPALA-4987"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4988" scope="external" format="html" keys="IMPALA-4988"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4989" scope="external" format="html" keys="IMPALA-4989"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4990" scope="external" format="html" keys="IMPALA-4990"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4991" scope="external" format="html" keys="IMPALA-4991"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4992" scope="external" format="html" keys="IMPALA-4992"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4993" scope="external" format="html" keys="IMPALA-4993"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4994" scope="external" format="html" keys="IMPALA-4994"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4995" scope="external" format="html" keys="IMPALA-4995"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4996" scope="external" format="html" keys="IMPALA-4996"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4997" scope="external" format="html" keys="IMPALA-4997"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4998" scope="external" format="html" keys="IMPALA-4998"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-4999" scope="external" format="html" keys="IMPALA-4999"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5000" scope="external" format="html" keys="IMPALA-5000"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5001" scope="external" format="html" keys="IMPALA-5001"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5002" scope="external" format="html" keys="IMPALA-5002"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5003" scope="external" format="html" keys="IMPALA-5003"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5004" scope="external" format="html" keys="IMPALA-5004"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5005" scope="external" format="html" keys="IMPALA-5005"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5006" scope="external" format="html" keys="IMPALA-5006"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5007" scope="external" format="html" keys="IMPALA-5007"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5008" scope="external" format="html" keys="IMPALA-5008"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5009" scope="external" format="html" keys="IMPALA-5009"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5010" scope="external" format="html" keys="IMPALA-5010"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5011" scope="external" format="html" keys="IMPALA-5011"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5012" scope="external" format="html" keys="IMPALA-5012"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5013" scope="external" format="html" keys="IMPALA-5013"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5014" scope="external" format="html" keys="IMPALA-5014"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5015" scope="external" format="html" keys="IMPALA-5015"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5016" scope="external" format="html" keys="IMPALA-5016"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5017" scope="external" format="html" keys="IMPALA-5017"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5018" scope="external" format="html" keys="IMPALA-5018"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5019" scope="external" format="html" keys="IMPALA-5019"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5020" scope="external" format="html" keys="IMPALA-5020"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5021" scope="external" format="html" keys="IMPALA-5021"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5022" scope="external" format="html" keys="IMPALA-5022"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5023" scope="external" format="html" keys="IMPALA-5023"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5024" scope="external" format="html" keys="IMPALA-5024"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5025" scope="external" format="html" keys="IMPALA-5025"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5026" scope="external" format="html" keys="IMPALA-5026"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5027" scope="external" format="html" keys="IMPALA-5027"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5028" scope="external" format="html" keys="IMPALA-5028"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5029" scope="external" format="html" keys="IMPALA-5029"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5030" scope="external" format="html" keys="IMPALA-5030"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5031" scope="external" format="html" keys="IMPALA-5031"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5032" scope="external" format="html" keys="IMPALA-5032"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5033" scope="external" format="html" keys="IMPALA-5033"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5034" scope="external" format="html" keys="IMPALA-5034"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5035" scope="external" format="html" keys="IMPALA-5035"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5036" scope="external" format="html" keys="IMPALA-5036"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5037" scope="external" format="html" keys="IMPALA-5037"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5038" scope="external" format="html" keys="IMPALA-5038"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5039" scope="external" format="html" keys="IMPALA-5039"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5040" scope="external" format="html" keys="IMPALA-5040"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5041" scope="external" format="html" keys="IMPALA-5041"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5042" scope="external" format="html" keys="IMPALA-5042"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5043" scope="external" format="html" keys="IMPALA-5043"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5044" scope="external" format="html" keys="IMPALA-5044"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5045" scope="external" format="html" keys="IMPALA-5045"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5046" scope="external" format="html" keys="IMPALA-5046"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5047" scope="external" format="html" keys="IMPALA-5047"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5048" scope="external" format="html" keys="IMPALA-5048"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5049" scope="external" format="html" keys="IMPALA-5049"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5050" scope="external" format="html" keys="IMPALA-5050"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5051" scope="external" format="html" keys="IMPALA-5051"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5052" scope="external" format="html" keys="IMPALA-5052"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5053" scope="external" format="html" keys="IMPALA-5053"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5054" scope="external" format="html" keys="IMPALA-5054"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5055" scope="external" format="html" keys="IMPALA-5055"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5056" scope="external" format="html" keys="IMPALA-5056"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5057" scope="external" format="html" keys="IMPALA-5057"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5058" scope="external" format="html" keys="IMPALA-5058"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5059" scope="external" format="html" keys="IMPALA-5059"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5060" scope="external" format="html" keys="IMPALA-5060"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5061" scope="external" format="html" keys="IMPALA-5061"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5062" scope="external" format="html" keys="IMPALA-5062"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5063" scope="external" format="html" keys="IMPALA-5063"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5064" scope="external" format="html" keys="IMPALA-5064"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5065" scope="external" format="html" keys="IMPALA-5065"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5066" scope="external" format="html" keys="IMPALA-5066"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5067" scope="external" format="html" keys="IMPALA-5067"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5068" scope="external" format="html" keys="IMPALA-5068"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5069" scope="external" format="html" keys="IMPALA-5069"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5070" scope="external" format="html" keys="IMPALA-5070"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5071" scope="external" format="html" keys="IMPALA-5071"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5072" scope="external" format="html" keys="IMPALA-5072"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5073" scope="external" format="html" keys="IMPALA-5073"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5074" scope="external" format="html" keys="IMPALA-5074"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5075" scope="external" format="html" keys="IMPALA-5075"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5076" scope="external" format="html" keys="IMPALA-5076"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5077" scope="external" format="html" keys="IMPALA-5077"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5078" scope="external" format="html" keys="IMPALA-5078"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5079" scope="external" format="html" keys="IMPALA-5079"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5080" scope="external" format="html" keys="IMPALA-5080"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5081" scope="external" format="html" keys="IMPALA-5081"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5082" scope="external" format="html" keys="IMPALA-5082"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5083" scope="external" format="html" keys="IMPALA-5083"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5084" scope="external" format="html" keys="IMPALA-5084"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5085" scope="external" format="html" keys="IMPALA-5085"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5086" scope="external" format="html" keys="IMPALA-5086"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5087" scope="external" format="html" keys="IMPALA-5087"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5088" scope="external" format="html" keys="IMPALA-5088"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5089" scope="external" format="html" keys="IMPALA-5089"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5090" scope="external" format="html" keys="IMPALA-5090"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5091" scope="external" format="html" keys="IMPALA-5091"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5092" scope="external" format="html" keys="IMPALA-5092"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5093" scope="external" format="html" keys="IMPALA-5093"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5094" scope="external" format="html" keys="IMPALA-5094"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5095" scope="external" format="html" keys="IMPALA-5095"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5096" scope="external" format="html" keys="IMPALA-5096"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5097" scope="external" format="html" keys="IMPALA-5097"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5098" scope="external" format="html" keys="IMPALA-5098"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5099" scope="external" format="html" keys="IMPALA-5099"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5100" scope="external" format="html" keys="IMPALA-5100"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5101" scope="external" format="html" keys="IMPALA-5101"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5102" scope="external" format="html" keys="IMPALA-5102"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5103" scope="external" format="html" keys="IMPALA-5103"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5104" scope="external" format="html" keys="IMPALA-5104"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5105" scope="external" format="html" keys="IMPALA-5105"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5106" scope="external" format="html" keys="IMPALA-5106"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5107" scope="external" format="html" keys="IMPALA-5107"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5108" scope="external" format="html" keys="IMPALA-5108"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5109" scope="external" format="html" keys="IMPALA-5109"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5110" scope="external" format="html" keys="IMPALA-5110"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5111" scope="external" format="html" keys="IMPALA-5111"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5112" scope="external" format="html" keys="IMPALA-5112"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5113" scope="external" format="html" keys="IMPALA-5113"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5114" scope="external" format="html" keys="IMPALA-5114"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5115" scope="external" format="html" keys="IMPALA-5115"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5116" scope="external" format="html" keys="IMPALA-5116"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5117" scope="external" format="html" keys="IMPALA-5117"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5118" scope="external" format="html" keys="IMPALA-5118"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5119" scope="external" format="html" keys="IMPALA-5119"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5120" scope="external" format="html" keys="IMPALA-5120"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5121" scope="external" format="html" keys="IMPALA-5121"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5122" scope="external" format="html" keys="IMPALA-5122"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5123" scope="external" format="html" keys="IMPALA-5123"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5124" scope="external" format="html" keys="IMPALA-5124"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5125" scope="external" format="html" keys="IMPALA-5125"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5126" scope="external" format="html" keys="IMPALA-5126"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5127" scope="external" format="html" keys="IMPALA-5127"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5128" scope="external" format="html" keys="IMPALA-5128"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5129" scope="external" format="html" keys="IMPALA-5129"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5130" scope="external" format="html" keys="IMPALA-5130"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5131" scope="external" format="html" keys="IMPALA-5131"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5132" scope="external" format="html" keys="IMPALA-5132"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5133" scope="external" format="html" keys="IMPALA-5133"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5134" scope="external" format="html" keys="IMPALA-5134"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5135" scope="external" format="html" keys="IMPALA-5135"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5136" scope="external" format="html" keys="IMPALA-5136"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5137" scope="external" format="html" keys="IMPALA-5137"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5138" scope="external" format="html" keys="IMPALA-5138"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5139" scope="external" format="html" keys="IMPALA-5139"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5140" scope="external" format="html" keys="IMPALA-5140"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5141" scope="external" format="html" keys="IMPALA-5141"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5142" scope="external" format="html" keys="IMPALA-5142"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5143" scope="external" format="html" keys="IMPALA-5143"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5144" scope="external" format="html" keys="IMPALA-5144"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5145" scope="external" format="html" keys="IMPALA-5145"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5146" scope="external" format="html" keys="IMPALA-5146"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5147" scope="external" format="html" keys="IMPALA-5147"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5148" scope="external" format="html" keys="IMPALA-5148"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5149" scope="external" format="html" keys="IMPALA-5149"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5150" scope="external" format="html" keys="IMPALA-5150"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5151" scope="external" format="html" keys="IMPALA-5151"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5152" scope="external" format="html" keys="IMPALA-5152"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5153" scope="external" format="html" keys="IMPALA-5153"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5154" scope="external" format="html" keys="IMPALA-5154"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5155" scope="external" format="html" keys="IMPALA-5155"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5156" scope="external" format="html" keys="IMPALA-5156"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5157" scope="external" format="html" keys="IMPALA-5157"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5158" scope="external" format="html" keys="IMPALA-5158"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5159" scope="external" format="html" keys="IMPALA-5159"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5160" scope="external" format="html" keys="IMPALA-5160"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5161" scope="external" format="html" keys="IMPALA-5161"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5162" scope="external" format="html" keys="IMPALA-5162"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5163" scope="external" format="html" keys="IMPALA-5163"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5164" scope="external" format="html" keys="IMPALA-5164"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5165" scope="external" format="html" keys="IMPALA-5165"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5166" scope="external" format="html" keys="IMPALA-5166"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5167" scope="external" format="html" keys="IMPALA-5167"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5168" scope="external" format="html" keys="IMPALA-5168"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5169" scope="external" format="html" keys="IMPALA-5169"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5170" scope="external" format="html" keys="IMPALA-5170"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5171" scope="external" format="html" keys="IMPALA-5171"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5172" scope="external" format="html" keys="IMPALA-5172"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5173" scope="external" format="html" keys="IMPALA-5173"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5174" scope="external" format="html" keys="IMPALA-5174"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5175" scope="external" format="html" keys="IMPALA-5175"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5176" scope="external" format="html" keys="IMPALA-5176"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5177" scope="external" format="html" keys="IMPALA-5177"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5178" scope="external" format="html" keys="IMPALA-5178"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5179" scope="external" format="html" keys="IMPALA-5179"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5180" scope="external" format="html" keys="IMPALA-5180"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5181" scope="external" format="html" keys="IMPALA-5181"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5182" scope="external" format="html" keys="IMPALA-5182"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5183" scope="external" format="html" keys="IMPALA-5183"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5184" scope="external" format="html" keys="IMPALA-5184"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5185" scope="external" format="html" keys="IMPALA-5185"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5186" scope="external" format="html" keys="IMPALA-5186"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5187" scope="external" format="html" keys="IMPALA-5187"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5188" scope="external" format="html" keys="IMPALA-5188"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5189" scope="external" format="html" keys="IMPALA-5189"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5190" scope="external" format="html" keys="IMPALA-5190"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5191" scope="external" format="html" keys="IMPALA-5191"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5192" scope="external" format="html" keys="IMPALA-5192"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5193" scope="external" format="html" keys="IMPALA-5193"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5194" scope="external" format="html" keys="IMPALA-5194"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5195" scope="external" format="html" keys="IMPALA-5195"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5196" scope="external" format="html" keys="IMPALA-5196"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5197" scope="external" format="html" keys="IMPALA-5197"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5198" scope="external" format="html" keys="IMPALA-5198"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5199" scope="external" format="html" keys="IMPALA-5199"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5200" scope="external" format="html" keys="IMPALA-5200"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5201" scope="external" format="html" keys="IMPALA-5201"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5202" scope="external" format="html" keys="IMPALA-5202"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5203" scope="external" format="html" keys="IMPALA-5203"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5204" scope="external" format="html" keys="IMPALA-5204"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5205" scope="external" format="html" keys="IMPALA-5205"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5206" scope="external" format="html" keys="IMPALA-5206"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5207" scope="external" format="html" keys="IMPALA-5207"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5208" scope="external" format="html" keys="IMPALA-5208"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5209" scope="external" format="html" keys="IMPALA-5209"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5210" scope="external" format="html" keys="IMPALA-5210"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5211" scope="external" format="html" keys="IMPALA-5211"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5212" scope="external" format="html" keys="IMPALA-5212"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5213" scope="external" format="html" keys="IMPALA-5213"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5214" scope="external" format="html" keys="IMPALA-5214"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5215" scope="external" format="html" keys="IMPALA-5215"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5216" scope="external" format="html" keys="IMPALA-5216"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5217" scope="external" format="html" keys="IMPALA-5217"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5218" scope="external" format="html" keys="IMPALA-5218"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5219" scope="external" format="html" keys="IMPALA-5219"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5220" scope="external" format="html" keys="IMPALA-5220"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5221" scope="external" format="html" keys="IMPALA-5221"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5222" scope="external" format="html" keys="IMPALA-5222"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5223" scope="external" format="html" keys="IMPALA-5223"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5224" scope="external" format="html" keys="IMPALA-5224"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5225" scope="external" format="html" keys="IMPALA-5225"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5226" scope="external" format="html" keys="IMPALA-5226"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5227" scope="external" format="html" keys="IMPALA-5227"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5228" scope="external" format="html" keys="IMPALA-5228"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5229" scope="external" format="html" keys="IMPALA-5229"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5230" scope="external" format="html" keys="IMPALA-5230"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5231" scope="external" format="html" keys="IMPALA-5231"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5232" scope="external" format="html" keys="IMPALA-5232"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5233" scope="external" format="html" keys="IMPALA-5233"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5234" scope="external" format="html" keys="IMPALA-5234"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5235" scope="external" format="html" keys="IMPALA-5235"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5236" scope="external" format="html" keys="IMPALA-5236"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5237" scope="external" format="html" keys="IMPALA-5237"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5238" scope="external" format="html" keys="IMPALA-5238"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5239" scope="external" format="html" keys="IMPALA-5239"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5240" scope="external" format="html" keys="IMPALA-5240"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5241" scope="external" format="html" keys="IMPALA-5241"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5242" scope="external" format="html" keys="IMPALA-5242"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5243" scope="external" format="html" keys="IMPALA-5243"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5244" scope="external" format="html" keys="IMPALA-5244"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5245" scope="external" format="html" keys="IMPALA-5245"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5246" scope="external" format="html" keys="IMPALA-5246"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5247" scope="external" format="html" keys="IMPALA-5247"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5248" scope="external" format="html" keys="IMPALA-5248"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5249" scope="external" format="html" keys="IMPALA-5249"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5250" scope="external" format="html" keys="IMPALA-5250"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5251" scope="external" format="html" keys="IMPALA-5251"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5252" scope="external" format="html" keys="IMPALA-5252"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5253" scope="external" format="html" keys="IMPALA-5253"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5254" scope="external" format="html" keys="IMPALA-5254"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5255" scope="external" format="html" keys="IMPALA-5255"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5256" scope="external" format="html" keys="IMPALA-5256"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5257" scope="external" format="html" keys="IMPALA-5257"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5258" scope="external" format="html" keys="IMPALA-5258"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5259" scope="external" format="html" keys="IMPALA-5259"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5260" scope="external" format="html" keys="IMPALA-5260"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5261" scope="external" format="html" keys="IMPALA-5261"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5262" scope="external" format="html" keys="IMPALA-5262"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5263" scope="external" format="html" keys="IMPALA-5263"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5264" scope="external" format="html" keys="IMPALA-5264"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5265" scope="external" format="html" keys="IMPALA-5265"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5266" scope="external" format="html" keys="IMPALA-5266"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5267" scope="external" format="html" keys="IMPALA-5267"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5268" scope="external" format="html" keys="IMPALA-5268"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5269" scope="external" format="html" keys="IMPALA-5269"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5270" scope="external" format="html" keys="IMPALA-5270"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5271" scope="external" format="html" keys="IMPALA-5271"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5272" scope="external" format="html" keys="IMPALA-5272"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5273" scope="external" format="html" keys="IMPALA-5273"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5274" scope="external" format="html" keys="IMPALA-5274"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5275" scope="external" format="html" keys="IMPALA-5275"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5276" scope="external" format="html" keys="IMPALA-5276"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5277" scope="external" format="html" keys="IMPALA-5277"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5278" scope="external" format="html" keys="IMPALA-5278"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5279" scope="external" format="html" keys="IMPALA-5279"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5280" scope="external" format="html" keys="IMPALA-5280"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5281" scope="external" format="html" keys="IMPALA-5281"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5282" scope="external" format="html" keys="IMPALA-5282"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5283" scope="external" format="html" keys="IMPALA-5283"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5284" scope="external" format="html" keys="IMPALA-5284"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5285" scope="external" format="html" keys="IMPALA-5285"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5286" scope="external" format="html" keys="IMPALA-5286"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5287" scope="external" format="html" keys="IMPALA-5287"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5288" scope="external" format="html" keys="IMPALA-5288"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5289" scope="external" format="html" keys="IMPALA-5289"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5290" scope="external" format="html" keys="IMPALA-5290"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5291" scope="external" format="html" keys="IMPALA-5291"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5292" scope="external" format="html" keys="IMPALA-5292"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5293" scope="external" format="html" keys="IMPALA-5293"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5294" scope="external" format="html" keys="IMPALA-5294"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5295" scope="external" format="html" keys="IMPALA-5295"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5296" scope="external" format="html" keys="IMPALA-5296"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5297" scope="external" format="html" keys="IMPALA-5297"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5298" scope="external" format="html" keys="IMPALA-5298"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5299" scope="external" format="html" keys="IMPALA-5299"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5300" scope="external" format="html" keys="IMPALA-5300"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5301" scope="external" format="html" keys="IMPALA-5301"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5302" scope="external" format="html" keys="IMPALA-5302"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5303" scope="external" format="html" keys="IMPALA-5303"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5304" scope="external" format="html" keys="IMPALA-5304"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5305" scope="external" format="html" keys="IMPALA-5305"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5306" scope="external" format="html" keys="IMPALA-5306"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5307" scope="external" format="html" keys="IMPALA-5307"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5308" scope="external" format="html" keys="IMPALA-5308"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5309" scope="external" format="html" keys="IMPALA-5309"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5310" scope="external" format="html" keys="IMPALA-5310"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5311" scope="external" format="html" keys="IMPALA-5311"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5312" scope="external" format="html" keys="IMPALA-5312"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5313" scope="external" format="html" keys="IMPALA-5313"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5314" scope="external" format="html" keys="IMPALA-5314"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5315" scope="external" format="html" keys="IMPALA-5315"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5316" scope="external" format="html" keys="IMPALA-5316"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5317" scope="external" format="html" keys="IMPALA-5317"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5318" scope="external" format="html" keys="IMPALA-5318"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5319" scope="external" format="html" keys="IMPALA-5319"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5320" scope="external" format="html" keys="IMPALA-5320"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5321" scope="external" format="html" keys="IMPALA-5321"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5322" scope="external" format="html" keys="IMPALA-5322"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5323" scope="external" format="html" keys="IMPALA-5323"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5324" scope="external" format="html" keys="IMPALA-5324"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5325" scope="external" format="html" keys="IMPALA-5325"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5326" scope="external" format="html" keys="IMPALA-5326"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5327" scope="external" format="html" keys="IMPALA-5327"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5328" scope="external" format="html" keys="IMPALA-5328"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5329" scope="external" format="html" keys="IMPALA-5329"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5330" scope="external" format="html" keys="IMPALA-5330"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5331" scope="external" format="html" keys="IMPALA-5331"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5332" scope="external" format="html" keys="IMPALA-5332"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5333" scope="external" format="html" keys="IMPALA-5333"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5334" scope="external" format="html" keys="IMPALA-5334"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5335" scope="external" format="html" keys="IMPALA-5335"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5336" scope="external" format="html" keys="IMPALA-5336"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5337" scope="external" format="html" keys="IMPALA-5337"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5338" scope="external" format="html" keys="IMPALA-5338"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5339" scope="external" format="html" keys="IMPALA-5339"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5340" scope="external" format="html" keys="IMPALA-5340"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5341" scope="external" format="html" keys="IMPALA-5341"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5342" scope="external" format="html" keys="IMPALA-5342"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5343" scope="external" format="html" keys="IMPALA-5343"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5344" scope="external" format="html" keys="IMPALA-5344"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5345" scope="external" format="html" keys="IMPALA-5345"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5346" scope="external" format="html" keys="IMPALA-5346"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5347" scope="external" format="html" keys="IMPALA-5347"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5348" scope="external" format="html" keys="IMPALA-5348"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5349" scope="external" format="html" keys="IMPALA-5349"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5350" scope="external" format="html" keys="IMPALA-5350"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5351" scope="external" format="html" keys="IMPALA-5351"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5352" scope="external" format="html" keys="IMPALA-5352"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5353" scope="external" format="html" keys="IMPALA-5353"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5354" scope="external" format="html" keys="IMPALA-5354"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5355" scope="external" format="html" keys="IMPALA-5355"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5356" scope="external" format="html" keys="IMPALA-5356"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5357" scope="external" format="html" keys="IMPALA-5357"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5358" scope="external" format="html" keys="IMPALA-5358"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5359" scope="external" format="html" keys="IMPALA-5359"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5360" scope="external" format="html" keys="IMPALA-5360"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5361" scope="external" format="html" keys="IMPALA-5361"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5362" scope="external" format="html" keys="IMPALA-5362"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5363" scope="external" format="html" keys="IMPALA-5363"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5364" scope="external" format="html" keys="IMPALA-5364"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5365" scope="external" format="html" keys="IMPALA-5365"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5366" scope="external" format="html" keys="IMPALA-5366"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5367" scope="external" format="html" keys="IMPALA-5367"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5368" scope="external" format="html" keys="IMPALA-5368"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5369" scope="external" format="html" keys="IMPALA-5369"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5370" scope="external" format="html" keys="IMPALA-5370"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5371" scope="external" format="html" keys="IMPALA-5371"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5372" scope="external" format="html" keys="IMPALA-5372"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5373" scope="external" format="html" keys="IMPALA-5373"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5374" scope="external" format="html" keys="IMPALA-5374"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5375" scope="external" format="html" keys="IMPALA-5375"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5376" scope="external" format="html" keys="IMPALA-5376"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5377" scope="external" format="html" keys="IMPALA-5377"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5378" scope="external" format="html" keys="IMPALA-5378"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5379" scope="external" format="html" keys="IMPALA-5379"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5380" scope="external" format="html" keys="IMPALA-5380"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5381" scope="external" format="html" keys="IMPALA-5381"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5382" scope="external" format="html" keys="IMPALA-5382"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5383" scope="external" format="html" keys="IMPALA-5383"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5384" scope="external" format="html" keys="IMPALA-5384"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5385" scope="external" format="html" keys="IMPALA-5385"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5386" scope="external" format="html" keys="IMPALA-5386"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5387" scope="external" format="html" keys="IMPALA-5387"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5388" scope="external" format="html" keys="IMPALA-5388"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5389" scope="external" format="html" keys="IMPALA-5389"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5390" scope="external" format="html" keys="IMPALA-5390"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5391" scope="external" format="html" keys="IMPALA-5391"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5392" scope="external" format="html" keys="IMPALA-5392"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5393" scope="external" format="html" keys="IMPALA-5393"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5394" scope="external" format="html" keys="IMPALA-5394"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5395" scope="external" format="html" keys="IMPALA-5395"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5396" scope="external" format="html" keys="IMPALA-5396"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5397" scope="external" format="html" keys="IMPALA-5397"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5398" scope="external" format="html" keys="IMPALA-5398"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5399" scope="external" format="html" keys="IMPALA-5399"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5400" scope="external" format="html" keys="IMPALA-5400"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5401" scope="external" format="html" keys="IMPALA-5401"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5402" scope="external" format="html" keys="IMPALA-5402"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5403" scope="external" format="html" keys="IMPALA-5403"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5404" scope="external" format="html" keys="IMPALA-5404"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5405" scope="external" format="html" keys="IMPALA-5405"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5406" scope="external" format="html" keys="IMPALA-5406"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5407" scope="external" format="html" keys="IMPALA-5407"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5408" scope="external" format="html" keys="IMPALA-5408"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5409" scope="external" format="html" keys="IMPALA-5409"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5410" scope="external" format="html" keys="IMPALA-5410"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5411" scope="external" format="html" keys="IMPALA-5411"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5412" scope="external" format="html" keys="IMPALA-5412"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5413" scope="external" format="html" keys="IMPALA-5413"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5414" scope="external" format="html" keys="IMPALA-5414"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5415" scope="external" format="html" keys="IMPALA-5415"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5416" scope="external" format="html" keys="IMPALA-5416"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5417" scope="external" format="html" keys="IMPALA-5417"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5418" scope="external" format="html" keys="IMPALA-5418"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5419" scope="external" format="html" keys="IMPALA-5419"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5420" scope="external" format="html" keys="IMPALA-5420"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5421" scope="external" format="html" keys="IMPALA-5421"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5422" scope="external" format="html" keys="IMPALA-5422"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5423" scope="external" format="html" keys="IMPALA-5423"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5424" scope="external" format="html" keys="IMPALA-5424"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5425" scope="external" format="html" keys="IMPALA-5425"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5426" scope="external" format="html" keys="IMPALA-5426"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5427" scope="external" format="html" keys="IMPALA-5427"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5428" scope="external" format="html" keys="IMPALA-5428"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5429" scope="external" format="html" keys="IMPALA-5429"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5430" scope="external" format="html" keys="IMPALA-5430"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5431" scope="external" format="html" keys="IMPALA-5431"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5432" scope="external" format="html" keys="IMPALA-5432"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5433" scope="external" format="html" keys="IMPALA-5433"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5434" scope="external" format="html" keys="IMPALA-5434"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5435" scope="external" format="html" keys="IMPALA-5435"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5436" scope="external" format="html" keys="IMPALA-5436"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5437" scope="external" format="html" keys="IMPALA-5437"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5438" scope="external" format="html" keys="IMPALA-5438"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5439" scope="external" format="html" keys="IMPALA-5439"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5440" scope="external" format="html" keys="IMPALA-5440"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5441" scope="external" format="html" keys="IMPALA-5441"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5442" scope="external" format="html" keys="IMPALA-5442"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5443" scope="external" format="html" keys="IMPALA-5443"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5444" scope="external" format="html" keys="IMPALA-5444"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5445" scope="external" format="html" keys="IMPALA-5445"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5446" scope="external" format="html" keys="IMPALA-5446"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5447" scope="external" format="html" keys="IMPALA-5447"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5448" scope="external" format="html" keys="IMPALA-5448"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5449" scope="external" format="html" keys="IMPALA-5449"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5450" scope="external" format="html" keys="IMPALA-5450"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5451" scope="external" format="html" keys="IMPALA-5451"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5452" scope="external" format="html" keys="IMPALA-5452"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5453" scope="external" format="html" keys="IMPALA-5453"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5454" scope="external" format="html" keys="IMPALA-5454"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5455" scope="external" format="html" keys="IMPALA-5455"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5456" scope="external" format="html" keys="IMPALA-5456"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5457" scope="external" format="html" keys="IMPALA-5457"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5458" scope="external" format="html" keys="IMPALA-5458"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5459" scope="external" format="html" keys="IMPALA-5459"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5460" scope="external" format="html" keys="IMPALA-5460"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5461" scope="external" format="html" keys="IMPALA-5461"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5462" scope="external" format="html" keys="IMPALA-5462"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5463" scope="external" format="html" keys="IMPALA-5463"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5464" scope="external" format="html" keys="IMPALA-5464"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5465" scope="external" format="html" keys="IMPALA-5465"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5466" scope="external" format="html" keys="IMPALA-5466"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5467" scope="external" format="html" keys="IMPALA-5467"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5468" scope="external" format="html" keys="IMPALA-5468"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5469" scope="external" format="html" keys="IMPALA-5469"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5470" scope="external" format="html" keys="IMPALA-5470"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5471" scope="external" format="html" keys="IMPALA-5471"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5472" scope="external" format="html" keys="IMPALA-5472"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5473" scope="external" format="html" keys="IMPALA-5473"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5474" scope="external" format="html" keys="IMPALA-5474"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5475" scope="external" format="html" keys="IMPALA-5475"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5476" scope="external" format="html" keys="IMPALA-5476"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5477" scope="external" format="html" keys="IMPALA-5477"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5478" scope="external" format="html" keys="IMPALA-5478"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5479" scope="external" format="html" keys="IMPALA-5479"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5480" scope="external" format="html" keys="IMPALA-5480"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5481" scope="external" format="html" keys="IMPALA-5481"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5482" scope="external" format="html" keys="IMPALA-5482"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5483" scope="external" format="html" keys="IMPALA-5483"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5484" scope="external" format="html" keys="IMPALA-5484"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5485" scope="external" format="html" keys="IMPALA-5485"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5486" scope="external" format="html" keys="IMPALA-5486"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5487" scope="external" format="html" keys="IMPALA-5487"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5488" scope="external" format="html" keys="IMPALA-5488"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5489" scope="external" format="html" keys="IMPALA-5489"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5490" scope="external" format="html" keys="IMPALA-5490"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5491" scope="external" format="html" keys="IMPALA-5491"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5492" scope="external" format="html" keys="IMPALA-5492"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5493" scope="external" format="html" keys="IMPALA-5493"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5494" scope="external" format="html" keys="IMPALA-5494"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5495" scope="external" format="html" keys="IMPALA-5495"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5496" scope="external" format="html" keys="IMPALA-5496"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5497" scope="external" format="html" keys="IMPALA-5497"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5498" scope="external" format="html" keys="IMPALA-5498"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5499" scope="external" format="html" keys="IMPALA-5499"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5500" scope="external" format="html" keys="IMPALA-5500"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5501" scope="external" format="html" keys="IMPALA-5501"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5502" scope="external" format="html" keys="IMPALA-5502"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5503" scope="external" format="html" keys="IMPALA-5503"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5504" scope="external" format="html" keys="IMPALA-5504"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5505" scope="external" format="html" keys="IMPALA-5505"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5506" scope="external" format="html" keys="IMPALA-5506"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5507" scope="external" format="html" keys="IMPALA-5507"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5508" scope="external" format="html" keys="IMPALA-5508"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5509" scope="external" format="html" keys="IMPALA-5509"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5510" scope="external" format="html" keys="IMPALA-5510"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5511" scope="external" format="html" keys="IMPALA-5511"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5512" scope="external" format="html" keys="IMPALA-5512"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5513" scope="external" format="html" keys="IMPALA-5513"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5514" scope="external" format="html" keys="IMPALA-5514"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5515" scope="external" format="html" keys="IMPALA-5515"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5516" scope="external" format="html" keys="IMPALA-5516"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5517" scope="external" format="html" keys="IMPALA-5517"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5518" scope="external" format="html" keys="IMPALA-5518"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5519" scope="external" format="html" keys="IMPALA-5519"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5520" scope="external" format="html" keys="IMPALA-5520"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5521" scope="external" format="html" keys="IMPALA-5521"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5522" scope="external" format="html" keys="IMPALA-5522"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5523" scope="external" format="html" keys="IMPALA-5523"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5524" scope="external" format="html" keys="IMPALA-5524"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5525" scope="external" format="html" keys="IMPALA-5525"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5526" scope="external" format="html" keys="IMPALA-5526"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5527" scope="external" format="html" keys="IMPALA-5527"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5528" scope="external" format="html" keys="IMPALA-5528"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5529" scope="external" format="html" keys="IMPALA-5529"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5530" scope="external" format="html" keys="IMPALA-5530"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5531" scope="external" format="html" keys="IMPALA-5531"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5532" scope="external" format="html" keys="IMPALA-5532"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5533" scope="external" format="html" keys="IMPALA-5533"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5534" scope="external" format="html" keys="IMPALA-5534"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5535" scope="external" format="html" keys="IMPALA-5535"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5536" scope="external" format="html" keys="IMPALA-5536"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5537" scope="external" format="html" keys="IMPALA-5537"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5538" scope="external" format="html" keys="IMPALA-5538"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5539" scope="external" format="html" keys="IMPALA-5539"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5540" scope="external" format="html" keys="IMPALA-5540"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5541" scope="external" format="html" keys="IMPALA-5541"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5542" scope="external" format="html" keys="IMPALA-5542"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5543" scope="external" format="html" keys="IMPALA-5543"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5544" scope="external" format="html" keys="IMPALA-5544"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5545" scope="external" format="html" keys="IMPALA-5545"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5546" scope="external" format="html" keys="IMPALA-5546"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5547" scope="external" format="html" keys="IMPALA-5547"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5548" scope="external" format="html" keys="IMPALA-5548"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5549" scope="external" format="html" keys="IMPALA-5549"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5550" scope="external" format="html" keys="IMPALA-5550"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5551" scope="external" format="html" keys="IMPALA-5551"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5552" scope="external" format="html" keys="IMPALA-5552"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5553" scope="external" format="html" keys="IMPALA-5553"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5554" scope="external" format="html" keys="IMPALA-5554"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5555" scope="external" format="html" keys="IMPALA-5555"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5556" scope="external" format="html" keys="IMPALA-5556"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5557" scope="external" format="html" keys="IMPALA-5557"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5558" scope="external" format="html" keys="IMPALA-5558"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5559" scope="external" format="html" keys="IMPALA-5559"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5560" scope="external" format="html" keys="IMPALA-5560"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5561" scope="external" format="html" keys="IMPALA-5561"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5562" scope="external" format="html" keys="IMPALA-5562"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5563" scope="external" format="html" keys="IMPALA-5563"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5564" scope="external" format="html" keys="IMPALA-5564"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5565" scope="external" format="html" keys="IMPALA-5565"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5566" scope="external" format="html" keys="IMPALA-5566"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5567" scope="external" format="html" keys="IMPALA-5567"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5568" scope="external" format="html" keys="IMPALA-5568"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5569" scope="external" format="html" keys="IMPALA-5569"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5570" scope="external" format="html" keys="IMPALA-5570"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5571" scope="external" format="html" keys="IMPALA-5571"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5572" scope="external" format="html" keys="IMPALA-5572"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5573" scope="external" format="html" keys="IMPALA-5573"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5574" scope="external" format="html" keys="IMPALA-5574"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5575" scope="external" format="html" keys="IMPALA-5575"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5576" scope="external" format="html" keys="IMPALA-5576"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5577" scope="external" format="html" keys="IMPALA-5577"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5578" scope="external" format="html" keys="IMPALA-5578"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5579" scope="external" format="html" keys="IMPALA-5579"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5580" scope="external" format="html" keys="IMPALA-5580"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5581" scope="external" format="html" keys="IMPALA-5581"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5582" scope="external" format="html" keys="IMPALA-5582"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5583" scope="external" format="html" keys="IMPALA-5583"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5584" scope="external" format="html" keys="IMPALA-5584"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5585" scope="external" format="html" keys="IMPALA-5585"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5586" scope="external" format="html" keys="IMPALA-5586"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5587" scope="external" format="html" keys="IMPALA-5587"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5588" scope="external" format="html" keys="IMPALA-5588"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5589" scope="external" format="html" keys="IMPALA-5589"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5590" scope="external" format="html" keys="IMPALA-5590"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5591" scope="external" format="html" keys="IMPALA-5591"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5592" scope="external" format="html" keys="IMPALA-5592"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5593" scope="external" format="html" keys="IMPALA-5593"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5594" scope="external" format="html" keys="IMPALA-5594"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5595" scope="external" format="html" keys="IMPALA-5595"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5596" scope="external" format="html" keys="IMPALA-5596"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5597" scope="external" format="html" keys="IMPALA-5597"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5598" scope="external" format="html" keys="IMPALA-5598"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5599" scope="external" format="html" keys="IMPALA-5599"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5600" scope="external" format="html" keys="IMPALA-5600"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5601" scope="external" format="html" keys="IMPALA-5601"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5602" scope="external" format="html" keys="IMPALA-5602"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5603" scope="external" format="html" keys="IMPALA-5603"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5604" scope="external" format="html" keys="IMPALA-5604"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5605" scope="external" format="html" keys="IMPALA-5605"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5606" scope="external" format="html" keys="IMPALA-5606"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5607" scope="external" format="html" keys="IMPALA-5607"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5608" scope="external" format="html" keys="IMPALA-5608"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5609" scope="external" format="html" keys="IMPALA-5609"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5610" scope="external" format="html" keys="IMPALA-5610"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5611" scope="external" format="html" keys="IMPALA-5611"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5612" scope="external" format="html" keys="IMPALA-5612"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5613" scope="external" format="html" keys="IMPALA-5613"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5614" scope="external" format="html" keys="IMPALA-5614"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5615" scope="external" format="html" keys="IMPALA-5615"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5616" scope="external" format="html" keys="IMPALA-5616"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5617" scope="external" format="html" keys="IMPALA-5617"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5618" scope="external" format="html" keys="IMPALA-5618"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5619" scope="external" format="html" keys="IMPALA-5619"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5620" scope="external" format="html" keys="IMPALA-5620"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5621" scope="external" format="html" keys="IMPALA-5621"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5622" scope="external" format="html" keys="IMPALA-5622"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5623" scope="external" format="html" keys="IMPALA-5623"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5624" scope="external" format="html" keys="IMPALA-5624"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5625" scope="external" format="html" keys="IMPALA-5625"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5626" scope="external" format="html" keys="IMPALA-5626"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5627" scope="external" format="html" keys="IMPALA-5627"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5628" scope="external" format="html" keys="IMPALA-5628"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5629" scope="external" format="html" keys="IMPALA-5629"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5630" scope="external" format="html" keys="IMPALA-5630"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5631" scope="external" format="html" keys="IMPALA-5631"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5632" scope="external" format="html" keys="IMPALA-5632"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5633" scope="external" format="html" keys="IMPALA-5633"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5634" scope="external" format="html" keys="IMPALA-5634"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5635" scope="external" format="html" keys="IMPALA-5635"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5636" scope="external" format="html" keys="IMPALA-5636"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5637" scope="external" format="html" keys="IMPALA-5637"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5638" scope="external" format="html" keys="IMPALA-5638"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5639" scope="external" format="html" keys="IMPALA-5639"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5640" scope="external" format="html" keys="IMPALA-5640"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5641" scope="external" format="html" keys="IMPALA-5641"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5642" scope="external" format="html" keys="IMPALA-5642"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5643" scope="external" format="html" keys="IMPALA-5643"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5644" scope="external" format="html" keys="IMPALA-5644"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5645" scope="external" format="html" keys="IMPALA-5645"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5646" scope="external" format="html" keys="IMPALA-5646"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5647" scope="external" format="html" keys="IMPALA-5647"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5648" scope="external" format="html" keys="IMPALA-5648"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5649" scope="external" format="html" keys="IMPALA-5649"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5650" scope="external" format="html" keys="IMPALA-5650"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5651" scope="external" format="html" keys="IMPALA-5651"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5652" scope="external" format="html" keys="IMPALA-5652"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5653" scope="external" format="html" keys="IMPALA-5653"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5654" scope="external" format="html" keys="IMPALA-5654"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5655" scope="external" format="html" keys="IMPALA-5655"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5656" scope="external" format="html" keys="IMPALA-5656"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5657" scope="external" format="html" keys="IMPALA-5657"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5658" scope="external" format="html" keys="IMPALA-5658"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5659" scope="external" format="html" keys="IMPALA-5659"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5660" scope="external" format="html" keys="IMPALA-5660"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5661" scope="external" format="html" keys="IMPALA-5661"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5662" scope="external" format="html" keys="IMPALA-5662"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5663" scope="external" format="html" keys="IMPALA-5663"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5664" scope="external" format="html" keys="IMPALA-5664"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5665" scope="external" format="html" keys="IMPALA-5665"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5666" scope="external" format="html" keys="IMPALA-5666"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5667" scope="external" format="html" keys="IMPALA-5667"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5668" scope="external" format="html" keys="IMPALA-5668"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5669" scope="external" format="html" keys="IMPALA-5669"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5670" scope="external" format="html" keys="IMPALA-5670"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5671" scope="external" format="html" keys="IMPALA-5671"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5672" scope="external" format="html" keys="IMPALA-5672"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5673" scope="external" format="html" keys="IMPALA-5673"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5674" scope="external" format="html" keys="IMPALA-5674"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5675" scope="external" format="html" keys="IMPALA-5675"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5676" scope="external" format="html" keys="IMPALA-5676"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5677" scope="external" format="html" keys="IMPALA-5677"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5678" scope="external" format="html" keys="IMPALA-5678"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5679" scope="external" format="html" keys="IMPALA-5679"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5680" scope="external" format="html" keys="IMPALA-5680"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5681" scope="external" format="html" keys="IMPALA-5681"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5682" scope="external" format="html" keys="IMPALA-5682"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5683" scope="external" format="html" keys="IMPALA-5683"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5684" scope="external" format="html" keys="IMPALA-5684"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5685" scope="external" format="html" keys="IMPALA-5685"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5686" scope="external" format="html" keys="IMPALA-5686"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5687" scope="external" format="html" keys="IMPALA-5687"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5688" scope="external" format="html" keys="IMPALA-5688"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5689" scope="external" format="html" keys="IMPALA-5689"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5690" scope="external" format="html" keys="IMPALA-5690"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5691" scope="external" format="html" keys="IMPALA-5691"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5692" scope="external" format="html" keys="IMPALA-5692"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5693" scope="external" format="html" keys="IMPALA-5693"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5694" scope="external" format="html" keys="IMPALA-5694"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5695" scope="external" format="html" keys="IMPALA-5695"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5696" scope="external" format="html" keys="IMPALA-5696"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5697" scope="external" format="html" keys="IMPALA-5697"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5698" scope="external" format="html" keys="IMPALA-5698"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5699" scope="external" format="html" keys="IMPALA-5699"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5700" scope="external" format="html" keys="IMPALA-5700"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5701" scope="external" format="html" keys="IMPALA-5701"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5702" scope="external" format="html" keys="IMPALA-5702"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5703" scope="external" format="html" keys="IMPALA-5703"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5704" scope="external" format="html" keys="IMPALA-5704"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5705" scope="external" format="html" keys="IMPALA-5705"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5706" scope="external" format="html" keys="IMPALA-5706"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5707" scope="external" format="html" keys="IMPALA-5707"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5708" scope="external" format="html" keys="IMPALA-5708"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5709" scope="external" format="html" keys="IMPALA-5709"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5710" scope="external" format="html" keys="IMPALA-5710"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5711" scope="external" format="html" keys="IMPALA-5711"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5712" scope="external" format="html" keys="IMPALA-5712"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5713" scope="external" format="html" keys="IMPALA-5713"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5714" scope="external" format="html" keys="IMPALA-5714"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5715" scope="external" format="html" keys="IMPALA-5715"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5716" scope="external" format="html" keys="IMPALA-5716"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5717" scope="external" format="html" keys="IMPALA-5717"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5718" scope="external" format="html" keys="IMPALA-5718"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5719" scope="external" format="html" keys="IMPALA-5719"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5720" scope="external" format="html" keys="IMPALA-5720"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5721" scope="external" format="html" keys="IMPALA-5721"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5722" scope="external" format="html" keys="IMPALA-5722"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5723" scope="external" format="html" keys="IMPALA-5723"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5724" scope="external" format="html" keys="IMPALA-5724"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5725" scope="external" format="html" keys="IMPALA-5725"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5726" scope="external" format="html" keys="IMPALA-5726"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5727" scope="external" format="html" keys="IMPALA-5727"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5728" scope="external" format="html" keys="IMPALA-5728"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5729" scope="external" format="html" keys="IMPALA-5729"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5730" scope="external" format="html" keys="IMPALA-5730"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5731" scope="external" format="html" keys="IMPALA-5731"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5732" scope="external" format="html" keys="IMPALA-5732"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5733" scope="external" format="html" keys="IMPALA-5733"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5734" scope="external" format="html" keys="IMPALA-5734"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5735" scope="external" format="html" keys="IMPALA-5735"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5736" scope="external" format="html" keys="IMPALA-5736"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5737" scope="external" format="html" keys="IMPALA-5737"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5738" scope="external" format="html" keys="IMPALA-5738"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5739" scope="external" format="html" keys="IMPALA-5739"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5740" scope="external" format="html" keys="IMPALA-5740"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5741" scope="external" format="html" keys="IMPALA-5741"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5742" scope="external" format="html" keys="IMPALA-5742"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5743" scope="external" format="html" keys="IMPALA-5743"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5744" scope="external" format="html" keys="IMPALA-5744"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5745" scope="external" format="html" keys="IMPALA-5745"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5746" scope="external" format="html" keys="IMPALA-5746"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5747" scope="external" format="html" keys="IMPALA-5747"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5748" scope="external" format="html" keys="IMPALA-5748"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5749" scope="external" format="html" keys="IMPALA-5749"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5750" scope="external" format="html" keys="IMPALA-5750"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5751" scope="external" format="html" keys="IMPALA-5751"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5752" scope="external" format="html" keys="IMPALA-5752"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5753" scope="external" format="html" keys="IMPALA-5753"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5754" scope="external" format="html" keys="IMPALA-5754"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5755" scope="external" format="html" keys="IMPALA-5755"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5756" scope="external" format="html" keys="IMPALA-5756"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5757" scope="external" format="html" keys="IMPALA-5757"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5758" scope="external" format="html" keys="IMPALA-5758"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5759" scope="external" format="html" keys="IMPALA-5759"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5760" scope="external" format="html" keys="IMPALA-5760"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5761" scope="external" format="html" keys="IMPALA-5761"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5762" scope="external" format="html" keys="IMPALA-5762"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5763" scope="external" format="html" keys="IMPALA-5763"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5764" scope="external" format="html" keys="IMPALA-5764"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5765" scope="external" format="html" keys="IMPALA-5765"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5766" scope="external" format="html" keys="IMPALA-5766"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5767" scope="external" format="html" keys="IMPALA-5767"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5768" scope="external" format="html" keys="IMPALA-5768"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5769" scope="external" format="html" keys="IMPALA-5769"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5770" scope="external" format="html" keys="IMPALA-5770"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5771" scope="external" format="html" keys="IMPALA-5771"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5772" scope="external" format="html" keys="IMPALA-5772"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5773" scope="external" format="html" keys="IMPALA-5773"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5774" scope="external" format="html" keys="IMPALA-5774"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5775" scope="external" format="html" keys="IMPALA-5775"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5776" scope="external" format="html" keys="IMPALA-5776"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5777" scope="external" format="html" keys="IMPALA-5777"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5778" scope="external" format="html" keys="IMPALA-5778"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5779" scope="external" format="html" keys="IMPALA-5779"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5780" scope="external" format="html" keys="IMPALA-5780"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5781" scope="external" format="html" keys="IMPALA-5781"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5782" scope="external" format="html" keys="IMPALA-5782"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5783" scope="external" format="html" keys="IMPALA-5783"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5784" scope="external" format="html" keys="IMPALA-5784"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5785" scope="external" format="html" keys="IMPALA-5785"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5786" scope="external" format="html" keys="IMPALA-5786"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5787" scope="external" format="html" keys="IMPALA-5787"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5788" scope="external" format="html" keys="IMPALA-5788"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5789" scope="external" format="html" keys="IMPALA-5789"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5790" scope="external" format="html" keys="IMPALA-5790"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5791" scope="external" format="html" keys="IMPALA-5791"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5792" scope="external" format="html" keys="IMPALA-5792"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5793" scope="external" format="html" keys="IMPALA-5793"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5794" scope="external" format="html" keys="IMPALA-5794"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5795" scope="external" format="html" keys="IMPALA-5795"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5796" scope="external" format="html" keys="IMPALA-5796"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5797" scope="external" format="html" keys="IMPALA-5797"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5798" scope="external" format="html" keys="IMPALA-5798"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5799" scope="external" format="html" keys="IMPALA-5799"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5800" scope="external" format="html" keys="IMPALA-5800"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5801" scope="external" format="html" keys="IMPALA-5801"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5802" scope="external" format="html" keys="IMPALA-5802"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5803" scope="external" format="html" keys="IMPALA-5803"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5804" scope="external" format="html" keys="IMPALA-5804"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5805" scope="external" format="html" keys="IMPALA-5805"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5806" scope="external" format="html" keys="IMPALA-5806"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5807" scope="external" format="html" keys="IMPALA-5807"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5808" scope="external" format="html" keys="IMPALA-5808"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5809" scope="external" format="html" keys="IMPALA-5809"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5810" scope="external" format="html" keys="IMPALA-5810"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5811" scope="external" format="html" keys="IMPALA-5811"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5812" scope="external" format="html" keys="IMPALA-5812"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5813" scope="external" format="html" keys="IMPALA-5813"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5814" scope="external" format="html" keys="IMPALA-5814"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5815" scope="external" format="html" keys="IMPALA-5815"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5816" scope="external" format="html" keys="IMPALA-5816"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5817" scope="external" format="html" keys="IMPALA-5817"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5818" scope="external" format="html" keys="IMPALA-5818"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5819" scope="external" format="html" keys="IMPALA-5819"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5820" scope="external" format="html" keys="IMPALA-5820"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5821" scope="external" format="html" keys="IMPALA-5821"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5822" scope="external" format="html" keys="IMPALA-5822"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5823" scope="external" format="html" keys="IMPALA-5823"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5824" scope="external" format="html" keys="IMPALA-5824"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5825" scope="external" format="html" keys="IMPALA-5825"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5826" scope="external" format="html" keys="IMPALA-5826"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5827" scope="external" format="html" keys="IMPALA-5827"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5828" scope="external" format="html" keys="IMPALA-5828"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5829" scope="external" format="html" keys="IMPALA-5829"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5830" scope="external" format="html" keys="IMPALA-5830"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5831" scope="external" format="html" keys="IMPALA-5831"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5832" scope="external" format="html" keys="IMPALA-5832"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5833" scope="external" format="html" keys="IMPALA-5833"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5834" scope="external" format="html" keys="IMPALA-5834"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5835" scope="external" format="html" keys="IMPALA-5835"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5836" scope="external" format="html" keys="IMPALA-5836"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5837" scope="external" format="html" keys="IMPALA-5837"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5838" scope="external" format="html" keys="IMPALA-5838"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5839" scope="external" format="html" keys="IMPALA-5839"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5840" scope="external" format="html" keys="IMPALA-5840"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5841" scope="external" format="html" keys="IMPALA-5841"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5842" scope="external" format="html" keys="IMPALA-5842"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5843" scope="external" format="html" keys="IMPALA-5843"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5844" scope="external" format="html" keys="IMPALA-5844"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5845" scope="external" format="html" keys="IMPALA-5845"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5846" scope="external" format="html" keys="IMPALA-5846"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5847" scope="external" format="html" keys="IMPALA-5847"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5848" scope="external" format="html" keys="IMPALA-5848"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5849" scope="external" format="html" keys="IMPALA-5849"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5850" scope="external" format="html" keys="IMPALA-5850"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5851" scope="external" format="html" keys="IMPALA-5851"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5852" scope="external" format="html" keys="IMPALA-5852"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5853" scope="external" format="html" keys="IMPALA-5853"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5854" scope="external" format="html" keys="IMPALA-5854"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5855" scope="external" format="html" keys="IMPALA-5855"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5856" scope="external" format="html" keys="IMPALA-5856"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5857" scope="external" format="html" keys="IMPALA-5857"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5858" scope="external" format="html" keys="IMPALA-5858"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5859" scope="external" format="html" keys="IMPALA-5859"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5860" scope="external" format="html" keys="IMPALA-5860"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5861" scope="external" format="html" keys="IMPALA-5861"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5862" scope="external" format="html" keys="IMPALA-5862"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5863" scope="external" format="html" keys="IMPALA-5863"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5864" scope="external" format="html" keys="IMPALA-5864"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5865" scope="external" format="html" keys="IMPALA-5865"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5866" scope="external" format="html" keys="IMPALA-5866"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5867" scope="external" format="html" keys="IMPALA-5867"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5868" scope="external" format="html" keys="IMPALA-5868"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5869" scope="external" format="html" keys="IMPALA-5869"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5870" scope="external" format="html" keys="IMPALA-5870"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5871" scope="external" format="html" keys="IMPALA-5871"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5872" scope="external" format="html" keys="IMPALA-5872"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5873" scope="external" format="html" keys="IMPALA-5873"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5874" scope="external" format="html" keys="IMPALA-5874"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5875" scope="external" format="html" keys="IMPALA-5875"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5876" scope="external" format="html" keys="IMPALA-5876"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5877" scope="external" format="html" keys="IMPALA-5877"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5878" scope="external" format="html" keys="IMPALA-5878"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5879" scope="external" format="html" keys="IMPALA-5879"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5880" scope="external" format="html" keys="IMPALA-5880"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5881" scope="external" format="html" keys="IMPALA-5881"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5882" scope="external" format="html" keys="IMPALA-5882"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5883" scope="external" format="html" keys="IMPALA-5883"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5884" scope="external" format="html" keys="IMPALA-5884"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5885" scope="external" format="html" keys="IMPALA-5885"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5886" scope="external" format="html" keys="IMPALA-5886"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5887" scope="external" format="html" keys="IMPALA-5887"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5888" scope="external" format="html" keys="IMPALA-5888"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5889" scope="external" format="html" keys="IMPALA-5889"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5890" scope="external" format="html" keys="IMPALA-5890"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5891" scope="external" format="html" keys="IMPALA-5891"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5892" scope="external" format="html" keys="IMPALA-5892"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5893" scope="external" format="html" keys="IMPALA-5893"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5894" scope="external" format="html" keys="IMPALA-5894"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5895" scope="external" format="html" keys="IMPALA-5895"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5896" scope="external" format="html" keys="IMPALA-5896"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5897" scope="external" format="html" keys="IMPALA-5897"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5898" scope="external" format="html" keys="IMPALA-5898"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5899" scope="external" format="html" keys="IMPALA-5899"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5900" scope="external" format="html" keys="IMPALA-5900"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5901" scope="external" format="html" keys="IMPALA-5901"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5902" scope="external" format="html" keys="IMPALA-5902"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5903" scope="external" format="html" keys="IMPALA-5903"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5904" scope="external" format="html" keys="IMPALA-5904"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5905" scope="external" format="html" keys="IMPALA-5905"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5906" scope="external" format="html" keys="IMPALA-5906"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5907" scope="external" format="html" keys="IMPALA-5907"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5908" scope="external" format="html" keys="IMPALA-5908"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5909" scope="external" format="html" keys="IMPALA-5909"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5910" scope="external" format="html" keys="IMPALA-5910"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5911" scope="external" format="html" keys="IMPALA-5911"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5912" scope="external" format="html" keys="IMPALA-5912"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5913" scope="external" format="html" keys="IMPALA-5913"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5914" scope="external" format="html" keys="IMPALA-5914"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5915" scope="external" format="html" keys="IMPALA-5915"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5916" scope="external" format="html" keys="IMPALA-5916"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5917" scope="external" format="html" keys="IMPALA-5917"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5918" scope="external" format="html" keys="IMPALA-5918"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5919" scope="external" format="html" keys="IMPALA-5919"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5920" scope="external" format="html" keys="IMPALA-5920"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5921" scope="external" format="html" keys="IMPALA-5921"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5922" scope="external" format="html" keys="IMPALA-5922"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5923" scope="external" format="html" keys="IMPALA-5923"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5924" scope="external" format="html" keys="IMPALA-5924"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5925" scope="external" format="html" keys="IMPALA-5925"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5926" scope="external" format="html" keys="IMPALA-5926"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5927" scope="external" format="html" keys="IMPALA-5927"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5928" scope="external" format="html" keys="IMPALA-5928"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5929" scope="external" format="html" keys="IMPALA-5929"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5930" scope="external" format="html" keys="IMPALA-5930"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5931" scope="external" format="html" keys="IMPALA-5931"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5932" scope="external" format="html" keys="IMPALA-5932"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5933" scope="external" format="html" keys="IMPALA-5933"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5934" scope="external" format="html" keys="IMPALA-5934"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5935" scope="external" format="html" keys="IMPALA-5935"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5936" scope="external" format="html" keys="IMPALA-5936"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5937" scope="external" format="html" keys="IMPALA-5937"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5938" scope="external" format="html" keys="IMPALA-5938"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5939" scope="external" format="html" keys="IMPALA-5939"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5940" scope="external" format="html" keys="IMPALA-5940"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5941" scope="external" format="html" keys="IMPALA-5941"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5942" scope="external" format="html" keys="IMPALA-5942"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5943" scope="external" format="html" keys="IMPALA-5943"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5944" scope="external" format="html" keys="IMPALA-5944"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5945" scope="external" format="html" keys="IMPALA-5945"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5946" scope="external" format="html" keys="IMPALA-5946"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5947" scope="external" format="html" keys="IMPALA-5947"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5948" scope="external" format="html" keys="IMPALA-5948"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5949" scope="external" format="html" keys="IMPALA-5949"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5950" scope="external" format="html" keys="IMPALA-5950"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5951" scope="external" format="html" keys="IMPALA-5951"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5952" scope="external" format="html" keys="IMPALA-5952"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5953" scope="external" format="html" keys="IMPALA-5953"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5954" scope="external" format="html" keys="IMPALA-5954"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5955" scope="external" format="html" keys="IMPALA-5955"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5956" scope="external" format="html" keys="IMPALA-5956"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5957" scope="external" format="html" keys="IMPALA-5957"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5958" scope="external" format="html" keys="IMPALA-5958"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5959" scope="external" format="html" keys="IMPALA-5959"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5960" scope="external" format="html" keys="IMPALA-5960"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5961" scope="external" format="html" keys="IMPALA-5961"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5962" scope="external" format="html" keys="IMPALA-5962"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5963" scope="external" format="html" keys="IMPALA-5963"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5964" scope="external" format="html" keys="IMPALA-5964"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5965" scope="external" format="html" keys="IMPALA-5965"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5966" scope="external" format="html" keys="IMPALA-5966"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5967" scope="external" format="html" keys="IMPALA-5967"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5968" scope="external" format="html" keys="IMPALA-5968"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5969" scope="external" format="html" keys="IMPALA-5969"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5970" scope="external" format="html" keys="IMPALA-5970"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5971" scope="external" format="html" keys="IMPALA-5971"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5972" scope="external" format="html" keys="IMPALA-5972"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5973" scope="external" format="html" keys="IMPALA-5973"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5974" scope="external" format="html" keys="IMPALA-5974"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5975" scope="external" format="html" keys="IMPALA-5975"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5976" scope="external" format="html" keys="IMPALA-5976"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5977" scope="external" format="html" keys="IMPALA-5977"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5978" scope="external" format="html" keys="IMPALA-5978"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5979" scope="external" format="html" keys="IMPALA-5979"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5980" scope="external" format="html" keys="IMPALA-5980"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5981" scope="external" format="html" keys="IMPALA-5981"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5982" scope="external" format="html" keys="IMPALA-5982"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5983" scope="external" format="html" keys="IMPALA-5983"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5984" scope="external" format="html" keys="IMPALA-5984"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5985" scope="external" format="html" keys="IMPALA-5985"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5986" scope="external" format="html" keys="IMPALA-5986"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5987" scope="external" format="html" keys="IMPALA-5987"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5988" scope="external" format="html" keys="IMPALA-5988"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5989" scope="external" format="html" keys="IMPALA-5989"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5990" scope="external" format="html" keys="IMPALA-5990"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5991" scope="external" format="html" keys="IMPALA-5991"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5992" scope="external" format="html" keys="IMPALA-5992"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5993" scope="external" format="html" keys="IMPALA-5993"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5994" scope="external" format="html" keys="IMPALA-5994"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5995" scope="external" format="html" keys="IMPALA-5995"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5996" scope="external" format="html" keys="IMPALA-5996"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5997" scope="external" format="html" keys="IMPALA-5997"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5998" scope="external" format="html" keys="IMPALA-5998"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-5999" scope="external" format="html" keys="IMPALA-5999"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6000" scope="external" format="html" keys="IMPALA-6000"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6001" scope="external" format="html" keys="IMPALA-6001"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6002" scope="external" format="html" keys="IMPALA-6002"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6003" scope="external" format="html" keys="IMPALA-6003"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6004" scope="external" format="html" keys="IMPALA-6004"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6005" scope="external" format="html" keys="IMPALA-6005"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6006" scope="external" format="html" keys="IMPALA-6006"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6007" scope="external" format="html" keys="IMPALA-6007"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6008" scope="external" format="html" keys="IMPALA-6008"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6009" scope="external" format="html" keys="IMPALA-6009"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6010" scope="external" format="html" keys="IMPALA-6010"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6011" scope="external" format="html" keys="IMPALA-6011"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6012" scope="external" format="html" keys="IMPALA-6012"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6013" scope="external" format="html" keys="IMPALA-6013"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6014" scope="external" format="html" keys="IMPALA-6014"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6015" scope="external" format="html" keys="IMPALA-6015"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6016" scope="external" format="html" keys="IMPALA-6016"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6017" scope="external" format="html" keys="IMPALA-6017"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6018" scope="external" format="html" keys="IMPALA-6018"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6019" scope="external" format="html" keys="IMPALA-6019"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6020" scope="external" format="html" keys="IMPALA-6020"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6021" scope="external" format="html" keys="IMPALA-6021"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6022" scope="external" format="html" keys="IMPALA-6022"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6023" scope="external" format="html" keys="IMPALA-6023"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6024" scope="external" format="html" keys="IMPALA-6024"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6025" scope="external" format="html" keys="IMPALA-6025"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6026" scope="external" format="html" keys="IMPALA-6026"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6027" scope="external" format="html" keys="IMPALA-6027"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6028" scope="external" format="html" keys="IMPALA-6028"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6029" scope="external" format="html" keys="IMPALA-6029"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6030" scope="external" format="html" keys="IMPALA-6030"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6031" scope="external" format="html" keys="IMPALA-6031"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6032" scope="external" format="html" keys="IMPALA-6032"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6033" scope="external" format="html" keys="IMPALA-6033"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6034" scope="external" format="html" keys="IMPALA-6034"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6035" scope="external" format="html" keys="IMPALA-6035"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6036" scope="external" format="html" keys="IMPALA-6036"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6037" scope="external" format="html" keys="IMPALA-6037"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6038" scope="external" format="html" keys="IMPALA-6038"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6039" scope="external" format="html" keys="IMPALA-6039"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6040" scope="external" format="html" keys="IMPALA-6040"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6041" scope="external" format="html" keys="IMPALA-6041"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6042" scope="external" format="html" keys="IMPALA-6042"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6043" scope="external" format="html" keys="IMPALA-6043"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6044" scope="external" format="html" keys="IMPALA-6044"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6045" scope="external" format="html" keys="IMPALA-6045"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6046" scope="external" format="html" keys="IMPALA-6046"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6047" scope="external" format="html" keys="IMPALA-6047"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6048" scope="external" format="html" keys="IMPALA-6048"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6049" scope="external" format="html" keys="IMPALA-6049"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6050" scope="external" format="html" keys="IMPALA-6050"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6051" scope="external" format="html" keys="IMPALA-6051"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6052" scope="external" format="html" keys="IMPALA-6052"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6053" scope="external" format="html" keys="IMPALA-6053"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6054" scope="external" format="html" keys="IMPALA-6054"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6055" scope="external" format="html" keys="IMPALA-6055"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6056" scope="external" format="html" keys="IMPALA-6056"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6057" scope="external" format="html" keys="IMPALA-6057"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6058" scope="external" format="html" keys="IMPALA-6058"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6059" scope="external" format="html" keys="IMPALA-6059"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6060" scope="external" format="html" keys="IMPALA-6060"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6061" scope="external" format="html" keys="IMPALA-6061"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6062" scope="external" format="html" keys="IMPALA-6062"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6063" scope="external" format="html" keys="IMPALA-6063"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6064" scope="external" format="html" keys="IMPALA-6064"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6065" scope="external" format="html" keys="IMPALA-6065"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6066" scope="external" format="html" keys="IMPALA-6066"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6067" scope="external" format="html" keys="IMPALA-6067"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6068" scope="external" format="html" keys="IMPALA-6068"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6069" scope="external" format="html" keys="IMPALA-6069"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6070" scope="external" format="html" keys="IMPALA-6070"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6071" scope="external" format="html" keys="IMPALA-6071"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6072" scope="external" format="html" keys="IMPALA-6072"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6073" scope="external" format="html" keys="IMPALA-6073"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6074" scope="external" format="html" keys="IMPALA-6074"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6075" scope="external" format="html" keys="IMPALA-6075"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6076" scope="external" format="html" keys="IMPALA-6076"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6077" scope="external" format="html" keys="IMPALA-6077"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6078" scope="external" format="html" keys="IMPALA-6078"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6079" scope="external" format="html" keys="IMPALA-6079"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6080" scope="external" format="html" keys="IMPALA-6080"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6081" scope="external" format="html" keys="IMPALA-6081"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6082" scope="external" format="html" keys="IMPALA-6082"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6083" scope="external" format="html" keys="IMPALA-6083"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6084" scope="external" format="html" keys="IMPALA-6084"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6085" scope="external" format="html" keys="IMPALA-6085"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6086" scope="external" format="html" keys="IMPALA-6086"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6087" scope="external" format="html" keys="IMPALA-6087"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6088" scope="external" format="html" keys="IMPALA-6088"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6089" scope="external" format="html" keys="IMPALA-6089"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6090" scope="external" format="html" keys="IMPALA-6090"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6091" scope="external" format="html" keys="IMPALA-6091"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6092" scope="external" format="html" keys="IMPALA-6092"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6093" scope="external" format="html" keys="IMPALA-6093"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6094" scope="external" format="html" keys="IMPALA-6094"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6095" scope="external" format="html" keys="IMPALA-6095"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6096" scope="external" format="html" keys="IMPALA-6096"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6097" scope="external" format="html" keys="IMPALA-6097"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6098" scope="external" format="html" keys="IMPALA-6098"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6099" scope="external" format="html" keys="IMPALA-6099"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6100" scope="external" format="html" keys="IMPALA-6100"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6101" scope="external" format="html" keys="IMPALA-6101"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6102" scope="external" format="html" keys="IMPALA-6102"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6103" scope="external" format="html" keys="IMPALA-6103"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6104" scope="external" format="html" keys="IMPALA-6104"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6105" scope="external" format="html" keys="IMPALA-6105"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6106" scope="external" format="html" keys="IMPALA-6106"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6107" scope="external" format="html" keys="IMPALA-6107"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6108" scope="external" format="html" keys="IMPALA-6108"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6109" scope="external" format="html" keys="IMPALA-6109"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6110" scope="external" format="html" keys="IMPALA-6110"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6111" scope="external" format="html" keys="IMPALA-6111"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6112" scope="external" format="html" keys="IMPALA-6112"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6113" scope="external" format="html" keys="IMPALA-6113"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6114" scope="external" format="html" keys="IMPALA-6114"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6115" scope="external" format="html" keys="IMPALA-6115"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6116" scope="external" format="html" keys="IMPALA-6116"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6117" scope="external" format="html" keys="IMPALA-6117"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6118" scope="external" format="html" keys="IMPALA-6118"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6119" scope="external" format="html" keys="IMPALA-6119"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6120" scope="external" format="html" keys="IMPALA-6120"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6121" scope="external" format="html" keys="IMPALA-6121"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6122" scope="external" format="html" keys="IMPALA-6122"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6123" scope="external" format="html" keys="IMPALA-6123"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6124" scope="external" format="html" keys="IMPALA-6124"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6125" scope="external" format="html" keys="IMPALA-6125"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6126" scope="external" format="html" keys="IMPALA-6126"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6127" scope="external" format="html" keys="IMPALA-6127"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6128" scope="external" format="html" keys="IMPALA-6128"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6129" scope="external" format="html" keys="IMPALA-6129"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6130" scope="external" format="html" keys="IMPALA-6130"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6131" scope="external" format="html" keys="IMPALA-6131"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6132" scope="external" format="html" keys="IMPALA-6132"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6133" scope="external" format="html" keys="IMPALA-6133"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6134" scope="external" format="html" keys="IMPALA-6134"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6135" scope="external" format="html" keys="IMPALA-6135"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6136" scope="external" format="html" keys="IMPALA-6136"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6137" scope="external" format="html" keys="IMPALA-6137"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6138" scope="external" format="html" keys="IMPALA-6138"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6139" scope="external" format="html" keys="IMPALA-6139"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6140" scope="external" format="html" keys="IMPALA-6140"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6141" scope="external" format="html" keys="IMPALA-6141"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6142" scope="external" format="html" keys="IMPALA-6142"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6143" scope="external" format="html" keys="IMPALA-6143"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6144" scope="external" format="html" keys="IMPALA-6144"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6145" scope="external" format="html" keys="IMPALA-6145"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6146" scope="external" format="html" keys="IMPALA-6146"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6147" scope="external" format="html" keys="IMPALA-6147"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6148" scope="external" format="html" keys="IMPALA-6148"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6149" scope="external" format="html" keys="IMPALA-6149"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6150" scope="external" format="html" keys="IMPALA-6150"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6151" scope="external" format="html" keys="IMPALA-6151"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6152" scope="external" format="html" keys="IMPALA-6152"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6153" scope="external" format="html" keys="IMPALA-6153"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6154" scope="external" format="html" keys="IMPALA-6154"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6155" scope="external" format="html" keys="IMPALA-6155"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6156" scope="external" format="html" keys="IMPALA-6156"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6157" scope="external" format="html" keys="IMPALA-6157"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6158" scope="external" format="html" keys="IMPALA-6158"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6159" scope="external" format="html" keys="IMPALA-6159"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6160" scope="external" format="html" keys="IMPALA-6160"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6161" scope="external" format="html" keys="IMPALA-6161"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6162" scope="external" format="html" keys="IMPALA-6162"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6163" scope="external" format="html" keys="IMPALA-6163"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6164" scope="external" format="html" keys="IMPALA-6164"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6165" scope="external" format="html" keys="IMPALA-6165"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6166" scope="external" format="html" keys="IMPALA-6166"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6167" scope="external" format="html" keys="IMPALA-6167"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6168" scope="external" format="html" keys="IMPALA-6168"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6169" scope="external" format="html" keys="IMPALA-6169"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6170" scope="external" format="html" keys="IMPALA-6170"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6171" scope="external" format="html" keys="IMPALA-6171"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6172" scope="external" format="html" keys="IMPALA-6172"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6173" scope="external" format="html" keys="IMPALA-6173"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6174" scope="external" format="html" keys="IMPALA-6174"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6175" scope="external" format="html" keys="IMPALA-6175"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6176" scope="external" format="html" keys="IMPALA-6176"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6177" scope="external" format="html" keys="IMPALA-6177"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6178" scope="external" format="html" keys="IMPALA-6178"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6179" scope="external" format="html" keys="IMPALA-6179"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6180" scope="external" format="html" keys="IMPALA-6180"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6181" scope="external" format="html" keys="IMPALA-6181"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6182" scope="external" format="html" keys="IMPALA-6182"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6183" scope="external" format="html" keys="IMPALA-6183"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6184" scope="external" format="html" keys="IMPALA-6184"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6185" scope="external" format="html" keys="IMPALA-6185"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6186" scope="external" format="html" keys="IMPALA-6186"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6187" scope="external" format="html" keys="IMPALA-6187"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6188" scope="external" format="html" keys="IMPALA-6188"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6189" scope="external" format="html" keys="IMPALA-6189"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6190" scope="external" format="html" keys="IMPALA-6190"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6191" scope="external" format="html" keys="IMPALA-6191"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6192" scope="external" format="html" keys="IMPALA-6192"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6193" scope="external" format="html" keys="IMPALA-6193"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6194" scope="external" format="html" keys="IMPALA-6194"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6195" scope="external" format="html" keys="IMPALA-6195"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6196" scope="external" format="html" keys="IMPALA-6196"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6197" scope="external" format="html" keys="IMPALA-6197"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6198" scope="external" format="html" keys="IMPALA-6198"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6199" scope="external" format="html" keys="IMPALA-6199"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6200" scope="external" format="html" keys="IMPALA-6200"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6201" scope="external" format="html" keys="IMPALA-6201"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6202" scope="external" format="html" keys="IMPALA-6202"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6203" scope="external" format="html" keys="IMPALA-6203"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6204" scope="external" format="html" keys="IMPALA-6204"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6205" scope="external" format="html" keys="IMPALA-6205"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6206" scope="external" format="html" keys="IMPALA-6206"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6207" scope="external" format="html" keys="IMPALA-6207"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6208" scope="external" format="html" keys="IMPALA-6208"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6209" scope="external" format="html" keys="IMPALA-6209"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6210" scope="external" format="html" keys="IMPALA-6210"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6211" scope="external" format="html" keys="IMPALA-6211"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6212" scope="external" format="html" keys="IMPALA-6212"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6213" scope="external" format="html" keys="IMPALA-6213"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6214" scope="external" format="html" keys="IMPALA-6214"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6215" scope="external" format="html" keys="IMPALA-6215"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6216" scope="external" format="html" keys="IMPALA-6216"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6217" scope="external" format="html" keys="IMPALA-6217"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6218" scope="external" format="html" keys="IMPALA-6218"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6219" scope="external" format="html" keys="IMPALA-6219"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6220" scope="external" format="html" keys="IMPALA-6220"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6221" scope="external" format="html" keys="IMPALA-6221"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6222" scope="external" format="html" keys="IMPALA-6222"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6223" scope="external" format="html" keys="IMPALA-6223"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6224" scope="external" format="html" keys="IMPALA-6224"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6225" scope="external" format="html" keys="IMPALA-6225"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6226" scope="external" format="html" keys="IMPALA-6226"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6227" scope="external" format="html" keys="IMPALA-6227"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6228" scope="external" format="html" keys="IMPALA-6228"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6229" scope="external" format="html" keys="IMPALA-6229"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6230" scope="external" format="html" keys="IMPALA-6230"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6231" scope="external" format="html" keys="IMPALA-6231"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6232" scope="external" format="html" keys="IMPALA-6232"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6233" scope="external" format="html" keys="IMPALA-6233"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6234" scope="external" format="html" keys="IMPALA-6234"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6235" scope="external" format="html" keys="IMPALA-6235"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6236" scope="external" format="html" keys="IMPALA-6236"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6237" scope="external" format="html" keys="IMPALA-6237"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6238" scope="external" format="html" keys="IMPALA-6238"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6239" scope="external" format="html" keys="IMPALA-6239"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6240" scope="external" format="html" keys="IMPALA-6240"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6241" scope="external" format="html" keys="IMPALA-6241"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6242" scope="external" format="html" keys="IMPALA-6242"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6243" scope="external" format="html" keys="IMPALA-6243"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6244" scope="external" format="html" keys="IMPALA-6244"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6245" scope="external" format="html" keys="IMPALA-6245"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6246" scope="external" format="html" keys="IMPALA-6246"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6247" scope="external" format="html" keys="IMPALA-6247"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6248" scope="external" format="html" keys="IMPALA-6248"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6249" scope="external" format="html" keys="IMPALA-6249"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6250" scope="external" format="html" keys="IMPALA-6250"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6251" scope="external" format="html" keys="IMPALA-6251"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6252" scope="external" format="html" keys="IMPALA-6252"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6253" scope="external" format="html" keys="IMPALA-6253"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6254" scope="external" format="html" keys="IMPALA-6254"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6255" scope="external" format="html" keys="IMPALA-6255"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6256" scope="external" format="html" keys="IMPALA-6256"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6257" scope="external" format="html" keys="IMPALA-6257"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6258" scope="external" format="html" keys="IMPALA-6258"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6259" scope="external" format="html" keys="IMPALA-6259"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6260" scope="external" format="html" keys="IMPALA-6260"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6261" scope="external" format="html" keys="IMPALA-6261"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6262" scope="external" format="html" keys="IMPALA-6262"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6263" scope="external" format="html" keys="IMPALA-6263"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6264" scope="external" format="html" keys="IMPALA-6264"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6265" scope="external" format="html" keys="IMPALA-6265"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6266" scope="external" format="html" keys="IMPALA-6266"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6267" scope="external" format="html" keys="IMPALA-6267"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6268" scope="external" format="html" keys="IMPALA-6268"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6269" scope="external" format="html" keys="IMPALA-6269"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6270" scope="external" format="html" keys="IMPALA-6270"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6271" scope="external" format="html" keys="IMPALA-6271"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6272" scope="external" format="html" keys="IMPALA-6272"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6273" scope="external" format="html" keys="IMPALA-6273"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6274" scope="external" format="html" keys="IMPALA-6274"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6275" scope="external" format="html" keys="IMPALA-6275"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6276" scope="external" format="html" keys="IMPALA-6276"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6277" scope="external" format="html" keys="IMPALA-6277"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6278" scope="external" format="html" keys="IMPALA-6278"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6279" scope="external" format="html" keys="IMPALA-6279"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6280" scope="external" format="html" keys="IMPALA-6280"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6281" scope="external" format="html" keys="IMPALA-6281"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6282" scope="external" format="html" keys="IMPALA-6282"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6283" scope="external" format="html" keys="IMPALA-6283"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6284" scope="external" format="html" keys="IMPALA-6284"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6285" scope="external" format="html" keys="IMPALA-6285"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6286" scope="external" format="html" keys="IMPALA-6286"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6287" scope="external" format="html" keys="IMPALA-6287"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6288" scope="external" format="html" keys="IMPALA-6288"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6289" scope="external" format="html" keys="IMPALA-6289"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6290" scope="external" format="html" keys="IMPALA-6290"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6291" scope="external" format="html" keys="IMPALA-6291"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6292" scope="external" format="html" keys="IMPALA-6292"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6293" scope="external" format="html" keys="IMPALA-6293"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6294" scope="external" format="html" keys="IMPALA-6294"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6295" scope="external" format="html" keys="IMPALA-6295"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6296" scope="external" format="html" keys="IMPALA-6296"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6297" scope="external" format="html" keys="IMPALA-6297"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6298" scope="external" format="html" keys="IMPALA-6298"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6299" scope="external" format="html" keys="IMPALA-6299"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6300" scope="external" format="html" keys="IMPALA-6300"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6301" scope="external" format="html" keys="IMPALA-6301"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6302" scope="external" format="html" keys="IMPALA-6302"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6303" scope="external" format="html" keys="IMPALA-6303"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6304" scope="external" format="html" keys="IMPALA-6304"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6305" scope="external" format="html" keys="IMPALA-6305"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6306" scope="external" format="html" keys="IMPALA-6306"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6307" scope="external" format="html" keys="IMPALA-6307"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6308" scope="external" format="html" keys="IMPALA-6308"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6309" scope="external" format="html" keys="IMPALA-6309"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6310" scope="external" format="html" keys="IMPALA-6310"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6311" scope="external" format="html" keys="IMPALA-6311"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6312" scope="external" format="html" keys="IMPALA-6312"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6313" scope="external" format="html" keys="IMPALA-6313"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6314" scope="external" format="html" keys="IMPALA-6314"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6315" scope="external" format="html" keys="IMPALA-6315"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6316" scope="external" format="html" keys="IMPALA-6316"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6317" scope="external" format="html" keys="IMPALA-6317"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6318" scope="external" format="html" keys="IMPALA-6318"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6319" scope="external" format="html" keys="IMPALA-6319"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6320" scope="external" format="html" keys="IMPALA-6320"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6321" scope="external" format="html" keys="IMPALA-6321"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6322" scope="external" format="html" keys="IMPALA-6322"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6323" scope="external" format="html" keys="IMPALA-6323"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6324" scope="external" format="html" keys="IMPALA-6324"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6325" scope="external" format="html" keys="IMPALA-6325"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6326" scope="external" format="html" keys="IMPALA-6326"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6327" scope="external" format="html" keys="IMPALA-6327"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6328" scope="external" format="html" keys="IMPALA-6328"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6329" scope="external" format="html" keys="IMPALA-6329"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6330" scope="external" format="html" keys="IMPALA-6330"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6331" scope="external" format="html" keys="IMPALA-6331"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6332" scope="external" format="html" keys="IMPALA-6332"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6333" scope="external" format="html" keys="IMPALA-6333"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6334" scope="external" format="html" keys="IMPALA-6334"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6335" scope="external" format="html" keys="IMPALA-6335"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6336" scope="external" format="html" keys="IMPALA-6336"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6337" scope="external" format="html" keys="IMPALA-6337"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6338" scope="external" format="html" keys="IMPALA-6338"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6339" scope="external" format="html" keys="IMPALA-6339"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6340" scope="external" format="html" keys="IMPALA-6340"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6341" scope="external" format="html" keys="IMPALA-6341"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6342" scope="external" format="html" keys="IMPALA-6342"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6343" scope="external" format="html" keys="IMPALA-6343"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6344" scope="external" format="html" keys="IMPALA-6344"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6345" scope="external" format="html" keys="IMPALA-6345"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6346" scope="external" format="html" keys="IMPALA-6346"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6347" scope="external" format="html" keys="IMPALA-6347"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6348" scope="external" format="html" keys="IMPALA-6348"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6349" scope="external" format="html" keys="IMPALA-6349"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6350" scope="external" format="html" keys="IMPALA-6350"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6351" scope="external" format="html" keys="IMPALA-6351"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6352" scope="external" format="html" keys="IMPALA-6352"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6353" scope="external" format="html" keys="IMPALA-6353"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6354" scope="external" format="html" keys="IMPALA-6354"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6355" scope="external" format="html" keys="IMPALA-6355"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6356" scope="external" format="html" keys="IMPALA-6356"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6357" scope="external" format="html" keys="IMPALA-6357"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6358" scope="external" format="html" keys="IMPALA-6358"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6359" scope="external" format="html" keys="IMPALA-6359"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6360" scope="external" format="html" keys="IMPALA-6360"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6361" scope="external" format="html" keys="IMPALA-6361"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6362" scope="external" format="html" keys="IMPALA-6362"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6363" scope="external" format="html" keys="IMPALA-6363"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6364" scope="external" format="html" keys="IMPALA-6364"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6365" scope="external" format="html" keys="IMPALA-6365"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6366" scope="external" format="html" keys="IMPALA-6366"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6367" scope="external" format="html" keys="IMPALA-6367"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6368" scope="external" format="html" keys="IMPALA-6368"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6369" scope="external" format="html" keys="IMPALA-6369"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6370" scope="external" format="html" keys="IMPALA-6370"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6371" scope="external" format="html" keys="IMPALA-6371"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6372" scope="external" format="html" keys="IMPALA-6372"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6373" scope="external" format="html" keys="IMPALA-6373"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6374" scope="external" format="html" keys="IMPALA-6374"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6375" scope="external" format="html" keys="IMPALA-6375"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6376" scope="external" format="html" keys="IMPALA-6376"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6377" scope="external" format="html" keys="IMPALA-6377"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6378" scope="external" format="html" keys="IMPALA-6378"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6379" scope="external" format="html" keys="IMPALA-6379"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6380" scope="external" format="html" keys="IMPALA-6380"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6381" scope="external" format="html" keys="IMPALA-6381"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6382" scope="external" format="html" keys="IMPALA-6382"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6383" scope="external" format="html" keys="IMPALA-6383"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6384" scope="external" format="html" keys="IMPALA-6384"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6385" scope="external" format="html" keys="IMPALA-6385"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6386" scope="external" format="html" keys="IMPALA-6386"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6387" scope="external" format="html" keys="IMPALA-6387"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6388" scope="external" format="html" keys="IMPALA-6388"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6389" scope="external" format="html" keys="IMPALA-6389"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6390" scope="external" format="html" keys="IMPALA-6390"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6391" scope="external" format="html" keys="IMPALA-6391"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6392" scope="external" format="html" keys="IMPALA-6392"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6393" scope="external" format="html" keys="IMPALA-6393"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6394" scope="external" format="html" keys="IMPALA-6394"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6395" scope="external" format="html" keys="IMPALA-6395"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6396" scope="external" format="html" keys="IMPALA-6396"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6397" scope="external" format="html" keys="IMPALA-6397"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6398" scope="external" format="html" keys="IMPALA-6398"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6399" scope="external" format="html" keys="IMPALA-6399"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6400" scope="external" format="html" keys="IMPALA-6400"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6401" scope="external" format="html" keys="IMPALA-6401"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6402" scope="external" format="html" keys="IMPALA-6402"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6403" scope="external" format="html" keys="IMPALA-6403"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6404" scope="external" format="html" keys="IMPALA-6404"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6405" scope="external" format="html" keys="IMPALA-6405"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6406" scope="external" format="html" keys="IMPALA-6406"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6407" scope="external" format="html" keys="IMPALA-6407"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6408" scope="external" format="html" keys="IMPALA-6408"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6409" scope="external" format="html" keys="IMPALA-6409"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6410" scope="external" format="html" keys="IMPALA-6410"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6411" scope="external" format="html" keys="IMPALA-6411"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6412" scope="external" format="html" keys="IMPALA-6412"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6413" scope="external" format="html" keys="IMPALA-6413"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6414" scope="external" format="html" keys="IMPALA-6414"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6415" scope="external" format="html" keys="IMPALA-6415"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6416" scope="external" format="html" keys="IMPALA-6416"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6417" scope="external" format="html" keys="IMPALA-6417"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6418" scope="external" format="html" keys="IMPALA-6418"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6419" scope="external" format="html" keys="IMPALA-6419"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6420" scope="external" format="html" keys="IMPALA-6420"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6421" scope="external" format="html" keys="IMPALA-6421"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6422" scope="external" format="html" keys="IMPALA-6422"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6423" scope="external" format="html" keys="IMPALA-6423"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6424" scope="external" format="html" keys="IMPALA-6424"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6425" scope="external" format="html" keys="IMPALA-6425"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6426" scope="external" format="html" keys="IMPALA-6426"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6427" scope="external" format="html" keys="IMPALA-6427"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6428" scope="external" format="html" keys="IMPALA-6428"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6429" scope="external" format="html" keys="IMPALA-6429"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6430" scope="external" format="html" keys="IMPALA-6430"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6431" scope="external" format="html" keys="IMPALA-6431"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6432" scope="external" format="html" keys="IMPALA-6432"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6433" scope="external" format="html" keys="IMPALA-6433"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6434" scope="external" format="html" keys="IMPALA-6434"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6435" scope="external" format="html" keys="IMPALA-6435"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6436" scope="external" format="html" keys="IMPALA-6436"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6437" scope="external" format="html" keys="IMPALA-6437"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6438" scope="external" format="html" keys="IMPALA-6438"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6439" scope="external" format="html" keys="IMPALA-6439"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6440" scope="external" format="html" keys="IMPALA-6440"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6441" scope="external" format="html" keys="IMPALA-6441"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6442" scope="external" format="html" keys="IMPALA-6442"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6443" scope="external" format="html" keys="IMPALA-6443"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6444" scope="external" format="html" keys="IMPALA-6444"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6445" scope="external" format="html" keys="IMPALA-6445"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6446" scope="external" format="html" keys="IMPALA-6446"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6447" scope="external" format="html" keys="IMPALA-6447"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6448" scope="external" format="html" keys="IMPALA-6448"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6449" scope="external" format="html" keys="IMPALA-6449"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6450" scope="external" format="html" keys="IMPALA-6450"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6451" scope="external" format="html" keys="IMPALA-6451"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6452" scope="external" format="html" keys="IMPALA-6452"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6453" scope="external" format="html" keys="IMPALA-6453"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6454" scope="external" format="html" keys="IMPALA-6454"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6455" scope="external" format="html" keys="IMPALA-6455"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6456" scope="external" format="html" keys="IMPALA-6456"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6457" scope="external" format="html" keys="IMPALA-6457"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6458" scope="external" format="html" keys="IMPALA-6458"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6459" scope="external" format="html" keys="IMPALA-6459"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6460" scope="external" format="html" keys="IMPALA-6460"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6461" scope="external" format="html" keys="IMPALA-6461"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6462" scope="external" format="html" keys="IMPALA-6462"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6463" scope="external" format="html" keys="IMPALA-6463"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6464" scope="external" format="html" keys="IMPALA-6464"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6465" scope="external" format="html" keys="IMPALA-6465"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6466" scope="external" format="html" keys="IMPALA-6466"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6467" scope="external" format="html" keys="IMPALA-6467"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6468" scope="external" format="html" keys="IMPALA-6468"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6469" scope="external" format="html" keys="IMPALA-6469"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6470" scope="external" format="html" keys="IMPALA-6470"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6471" scope="external" format="html" keys="IMPALA-6471"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6472" scope="external" format="html" keys="IMPALA-6472"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6473" scope="external" format="html" keys="IMPALA-6473"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6474" scope="external" format="html" keys="IMPALA-6474"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6475" scope="external" format="html" keys="IMPALA-6475"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6476" scope="external" format="html" keys="IMPALA-6476"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6477" scope="external" format="html" keys="IMPALA-6477"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6478" scope="external" format="html" keys="IMPALA-6478"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6479" scope="external" format="html" keys="IMPALA-6479"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6480" scope="external" format="html" keys="IMPALA-6480"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6481" scope="external" format="html" keys="IMPALA-6481"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6482" scope="external" format="html" keys="IMPALA-6482"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6483" scope="external" format="html" keys="IMPALA-6483"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6484" scope="external" format="html" keys="IMPALA-6484"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6485" scope="external" format="html" keys="IMPALA-6485"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6486" scope="external" format="html" keys="IMPALA-6486"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6487" scope="external" format="html" keys="IMPALA-6487"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6488" scope="external" format="html" keys="IMPALA-6488"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6489" scope="external" format="html" keys="IMPALA-6489"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6490" scope="external" format="html" keys="IMPALA-6490"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6491" scope="external" format="html" keys="IMPALA-6491"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6492" scope="external" format="html" keys="IMPALA-6492"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6493" scope="external" format="html" keys="IMPALA-6493"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6494" scope="external" format="html" keys="IMPALA-6494"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6495" scope="external" format="html" keys="IMPALA-6495"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6496" scope="external" format="html" keys="IMPALA-6496"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6497" scope="external" format="html" keys="IMPALA-6497"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6498" scope="external" format="html" keys="IMPALA-6498"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6499" scope="external" format="html" keys="IMPALA-6499"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6500" scope="external" format="html" keys="IMPALA-6500"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6501" scope="external" format="html" keys="IMPALA-6501"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6502" scope="external" format="html" keys="IMPALA-6502"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6503" scope="external" format="html" keys="IMPALA-6503"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6504" scope="external" format="html" keys="IMPALA-6504"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6505" scope="external" format="html" keys="IMPALA-6505"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6506" scope="external" format="html" keys="IMPALA-6506"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6507" scope="external" format="html" keys="IMPALA-6507"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6508" scope="external" format="html" keys="IMPALA-6508"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6509" scope="external" format="html" keys="IMPALA-6509"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6510" scope="external" format="html" keys="IMPALA-6510"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6511" scope="external" format="html" keys="IMPALA-6511"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6512" scope="external" format="html" keys="IMPALA-6512"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6513" scope="external" format="html" keys="IMPALA-6513"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6514" scope="external" format="html" keys="IMPALA-6514"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6515" scope="external" format="html" keys="IMPALA-6515"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6516" scope="external" format="html" keys="IMPALA-6516"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6517" scope="external" format="html" keys="IMPALA-6517"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6518" scope="external" format="html" keys="IMPALA-6518"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6519" scope="external" format="html" keys="IMPALA-6519"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6520" scope="external" format="html" keys="IMPALA-6520"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6521" scope="external" format="html" keys="IMPALA-6521"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6522" scope="external" format="html" keys="IMPALA-6522"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6523" scope="external" format="html" keys="IMPALA-6523"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6524" scope="external" format="html" keys="IMPALA-6524"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6525" scope="external" format="html" keys="IMPALA-6525"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6526" scope="external" format="html" keys="IMPALA-6526"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6527" scope="external" format="html" keys="IMPALA-6527"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6528" scope="external" format="html" keys="IMPALA-6528"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6529" scope="external" format="html" keys="IMPALA-6529"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6530" scope="external" format="html" keys="IMPALA-6530"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6531" scope="external" format="html" keys="IMPALA-6531"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6532" scope="external" format="html" keys="IMPALA-6532"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6533" scope="external" format="html" keys="IMPALA-6533"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6534" scope="external" format="html" keys="IMPALA-6534"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6535" scope="external" format="html" keys="IMPALA-6535"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6536" scope="external" format="html" keys="IMPALA-6536"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6537" scope="external" format="html" keys="IMPALA-6537"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6538" scope="external" format="html" keys="IMPALA-6538"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6539" scope="external" format="html" keys="IMPALA-6539"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6540" scope="external" format="html" keys="IMPALA-6540"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6541" scope="external" format="html" keys="IMPALA-6541"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6542" scope="external" format="html" keys="IMPALA-6542"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6543" scope="external" format="html" keys="IMPALA-6543"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6544" scope="external" format="html" keys="IMPALA-6544"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6545" scope="external" format="html" keys="IMPALA-6545"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6546" scope="external" format="html" keys="IMPALA-6546"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6547" scope="external" format="html" keys="IMPALA-6547"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6548" scope="external" format="html" keys="IMPALA-6548"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6549" scope="external" format="html" keys="IMPALA-6549"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6550" scope="external" format="html" keys="IMPALA-6550"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6551" scope="external" format="html" keys="IMPALA-6551"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6552" scope="external" format="html" keys="IMPALA-6552"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6553" scope="external" format="html" keys="IMPALA-6553"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6554" scope="external" format="html" keys="IMPALA-6554"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6555" scope="external" format="html" keys="IMPALA-6555"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6556" scope="external" format="html" keys="IMPALA-6556"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6557" scope="external" format="html" keys="IMPALA-6557"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6558" scope="external" format="html" keys="IMPALA-6558"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6559" scope="external" format="html" keys="IMPALA-6559"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6560" scope="external" format="html" keys="IMPALA-6560"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6561" scope="external" format="html" keys="IMPALA-6561"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6562" scope="external" format="html" keys="IMPALA-6562"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6563" scope="external" format="html" keys="IMPALA-6563"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6564" scope="external" format="html" keys="IMPALA-6564"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6565" scope="external" format="html" keys="IMPALA-6565"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6566" scope="external" format="html" keys="IMPALA-6566"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6567" scope="external" format="html" keys="IMPALA-6567"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6568" scope="external" format="html" keys="IMPALA-6568"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6569" scope="external" format="html" keys="IMPALA-6569"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6570" scope="external" format="html" keys="IMPALA-6570"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6571" scope="external" format="html" keys="IMPALA-6571"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6572" scope="external" format="html" keys="IMPALA-6572"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6573" scope="external" format="html" keys="IMPALA-6573"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6574" scope="external" format="html" keys="IMPALA-6574"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6575" scope="external" format="html" keys="IMPALA-6575"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6576" scope="external" format="html" keys="IMPALA-6576"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6577" scope="external" format="html" keys="IMPALA-6577"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6578" scope="external" format="html" keys="IMPALA-6578"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6579" scope="external" format="html" keys="IMPALA-6579"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6580" scope="external" format="html" keys="IMPALA-6580"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6581" scope="external" format="html" keys="IMPALA-6581"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6582" scope="external" format="html" keys="IMPALA-6582"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6583" scope="external" format="html" keys="IMPALA-6583"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6584" scope="external" format="html" keys="IMPALA-6584"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6585" scope="external" format="html" keys="IMPALA-6585"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6586" scope="external" format="html" keys="IMPALA-6586"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6587" scope="external" format="html" keys="IMPALA-6587"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6588" scope="external" format="html" keys="IMPALA-6588"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6589" scope="external" format="html" keys="IMPALA-6589"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6590" scope="external" format="html" keys="IMPALA-6590"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6591" scope="external" format="html" keys="IMPALA-6591"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6592" scope="external" format="html" keys="IMPALA-6592"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6593" scope="external" format="html" keys="IMPALA-6593"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6594" scope="external" format="html" keys="IMPALA-6594"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6595" scope="external" format="html" keys="IMPALA-6595"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6596" scope="external" format="html" keys="IMPALA-6596"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6597" scope="external" format="html" keys="IMPALA-6597"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6598" scope="external" format="html" keys="IMPALA-6598"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6599" scope="external" format="html" keys="IMPALA-6599"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6600" scope="external" format="html" keys="IMPALA-6600"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6601" scope="external" format="html" keys="IMPALA-6601"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6602" scope="external" format="html" keys="IMPALA-6602"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6603" scope="external" format="html" keys="IMPALA-6603"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6604" scope="external" format="html" keys="IMPALA-6604"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6605" scope="external" format="html" keys="IMPALA-6605"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6606" scope="external" format="html" keys="IMPALA-6606"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6607" scope="external" format="html" keys="IMPALA-6607"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6608" scope="external" format="html" keys="IMPALA-6608"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6609" scope="external" format="html" keys="IMPALA-6609"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6610" scope="external" format="html" keys="IMPALA-6610"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6611" scope="external" format="html" keys="IMPALA-6611"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6612" scope="external" format="html" keys="IMPALA-6612"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6613" scope="external" format="html" keys="IMPALA-6613"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6614" scope="external" format="html" keys="IMPALA-6614"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6615" scope="external" format="html" keys="IMPALA-6615"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6616" scope="external" format="html" keys="IMPALA-6616"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6617" scope="external" format="html" keys="IMPALA-6617"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6618" scope="external" format="html" keys="IMPALA-6618"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6619" scope="external" format="html" keys="IMPALA-6619"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6620" scope="external" format="html" keys="IMPALA-6620"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6621" scope="external" format="html" keys="IMPALA-6621"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6622" scope="external" format="html" keys="IMPALA-6622"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6623" scope="external" format="html" keys="IMPALA-6623"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6624" scope="external" format="html" keys="IMPALA-6624"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6625" scope="external" format="html" keys="IMPALA-6625"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6626" scope="external" format="html" keys="IMPALA-6626"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6627" scope="external" format="html" keys="IMPALA-6627"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6628" scope="external" format="html" keys="IMPALA-6628"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6629" scope="external" format="html" keys="IMPALA-6629"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6630" scope="external" format="html" keys="IMPALA-6630"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6631" scope="external" format="html" keys="IMPALA-6631"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6632" scope="external" format="html" keys="IMPALA-6632"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6633" scope="external" format="html" keys="IMPALA-6633"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6634" scope="external" format="html" keys="IMPALA-6634"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6635" scope="external" format="html" keys="IMPALA-6635"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6636" scope="external" format="html" keys="IMPALA-6636"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6637" scope="external" format="html" keys="IMPALA-6637"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6638" scope="external" format="html" keys="IMPALA-6638"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6639" scope="external" format="html" keys="IMPALA-6639"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6640" scope="external" format="html" keys="IMPALA-6640"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6641" scope="external" format="html" keys="IMPALA-6641"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6642" scope="external" format="html" keys="IMPALA-6642"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6643" scope="external" format="html" keys="IMPALA-6643"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6644" scope="external" format="html" keys="IMPALA-6644"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6645" scope="external" format="html" keys="IMPALA-6645"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6646" scope="external" format="html" keys="IMPALA-6646"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6647" scope="external" format="html" keys="IMPALA-6647"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6648" scope="external" format="html" keys="IMPALA-6648"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6649" scope="external" format="html" keys="IMPALA-6649"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6650" scope="external" format="html" keys="IMPALA-6650"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6651" scope="external" format="html" keys="IMPALA-6651"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6652" scope="external" format="html" keys="IMPALA-6652"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6653" scope="external" format="html" keys="IMPALA-6653"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6654" scope="external" format="html" keys="IMPALA-6654"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6655" scope="external" format="html" keys="IMPALA-6655"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6656" scope="external" format="html" keys="IMPALA-6656"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6657" scope="external" format="html" keys="IMPALA-6657"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6658" scope="external" format="html" keys="IMPALA-6658"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6659" scope="external" format="html" keys="IMPALA-6659"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6660" scope="external" format="html" keys="IMPALA-6660"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6661" scope="external" format="html" keys="IMPALA-6661"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6662" scope="external" format="html" keys="IMPALA-6662"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6663" scope="external" format="html" keys="IMPALA-6663"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6664" scope="external" format="html" keys="IMPALA-6664"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6665" scope="external" format="html" keys="IMPALA-6665"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6666" scope="external" format="html" keys="IMPALA-6666"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6667" scope="external" format="html" keys="IMPALA-6667"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6668" scope="external" format="html" keys="IMPALA-6668"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6669" scope="external" format="html" keys="IMPALA-6669"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6670" scope="external" format="html" keys="IMPALA-6670"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6671" scope="external" format="html" keys="IMPALA-6671"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6672" scope="external" format="html" keys="IMPALA-6672"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6673" scope="external" format="html" keys="IMPALA-6673"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6674" scope="external" format="html" keys="IMPALA-6674"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6675" scope="external" format="html" keys="IMPALA-6675"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6676" scope="external" format="html" keys="IMPALA-6676"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6677" scope="external" format="html" keys="IMPALA-6677"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6678" scope="external" format="html" keys="IMPALA-6678"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6679" scope="external" format="html" keys="IMPALA-6679"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6680" scope="external" format="html" keys="IMPALA-6680"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6681" scope="external" format="html" keys="IMPALA-6681"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6682" scope="external" format="html" keys="IMPALA-6682"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6683" scope="external" format="html" keys="IMPALA-6683"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6684" scope="external" format="html" keys="IMPALA-6684"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6685" scope="external" format="html" keys="IMPALA-6685"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6686" scope="external" format="html" keys="IMPALA-6686"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6687" scope="external" format="html" keys="IMPALA-6687"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6688" scope="external" format="html" keys="IMPALA-6688"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6689" scope="external" format="html" keys="IMPALA-6689"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6690" scope="external" format="html" keys="IMPALA-6690"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6691" scope="external" format="html" keys="IMPALA-6691"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6692" scope="external" format="html" keys="IMPALA-6692"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6693" scope="external" format="html" keys="IMPALA-6693"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6694" scope="external" format="html" keys="IMPALA-6694"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6695" scope="external" format="html" keys="IMPALA-6695"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6696" scope="external" format="html" keys="IMPALA-6696"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6697" scope="external" format="html" keys="IMPALA-6697"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6698" scope="external" format="html" keys="IMPALA-6698"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6699" scope="external" format="html" keys="IMPALA-6699"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6700" scope="external" format="html" keys="IMPALA-6700"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6701" scope="external" format="html" keys="IMPALA-6701"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6702" scope="external" format="html" keys="IMPALA-6702"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6703" scope="external" format="html" keys="IMPALA-6703"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6704" scope="external" format="html" keys="IMPALA-6704"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6705" scope="external" format="html" keys="IMPALA-6705"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6706" scope="external" format="html" keys="IMPALA-6706"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6707" scope="external" format="html" keys="IMPALA-6707"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6708" scope="external" format="html" keys="IMPALA-6708"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6709" scope="external" format="html" keys="IMPALA-6709"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6710" scope="external" format="html" keys="IMPALA-6710"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6711" scope="external" format="html" keys="IMPALA-6711"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6712" scope="external" format="html" keys="IMPALA-6712"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6713" scope="external" format="html" keys="IMPALA-6713"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6714" scope="external" format="html" keys="IMPALA-6714"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6715" scope="external" format="html" keys="IMPALA-6715"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6716" scope="external" format="html" keys="IMPALA-6716"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6717" scope="external" format="html" keys="IMPALA-6717"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6718" scope="external" format="html" keys="IMPALA-6718"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6719" scope="external" format="html" keys="IMPALA-6719"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6720" scope="external" format="html" keys="IMPALA-6720"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6721" scope="external" format="html" keys="IMPALA-6721"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6722" scope="external" format="html" keys="IMPALA-6722"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6723" scope="external" format="html" keys="IMPALA-6723"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6724" scope="external" format="html" keys="IMPALA-6724"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6725" scope="external" format="html" keys="IMPALA-6725"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6726" scope="external" format="html" keys="IMPALA-6726"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6727" scope="external" format="html" keys="IMPALA-6727"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6728" scope="external" format="html" keys="IMPALA-6728"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6729" scope="external" format="html" keys="IMPALA-6729"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6730" scope="external" format="html" keys="IMPALA-6730"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6731" scope="external" format="html" keys="IMPALA-6731"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6732" scope="external" format="html" keys="IMPALA-6732"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6733" scope="external" format="html" keys="IMPALA-6733"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6734" scope="external" format="html" keys="IMPALA-6734"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6735" scope="external" format="html" keys="IMPALA-6735"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6736" scope="external" format="html" keys="IMPALA-6736"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6737" scope="external" format="html" keys="IMPALA-6737"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6738" scope="external" format="html" keys="IMPALA-6738"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6739" scope="external" format="html" keys="IMPALA-6739"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6740" scope="external" format="html" keys="IMPALA-6740"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6741" scope="external" format="html" keys="IMPALA-6741"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6742" scope="external" format="html" keys="IMPALA-6742"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6743" scope="external" format="html" keys="IMPALA-6743"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6744" scope="external" format="html" keys="IMPALA-6744"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6745" scope="external" format="html" keys="IMPALA-6745"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6746" scope="external" format="html" keys="IMPALA-6746"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6747" scope="external" format="html" keys="IMPALA-6747"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6748" scope="external" format="html" keys="IMPALA-6748"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6749" scope="external" format="html" keys="IMPALA-6749"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6750" scope="external" format="html" keys="IMPALA-6750"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6751" scope="external" format="html" keys="IMPALA-6751"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6752" scope="external" format="html" keys="IMPALA-6752"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6753" scope="external" format="html" keys="IMPALA-6753"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6754" scope="external" format="html" keys="IMPALA-6754"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6755" scope="external" format="html" keys="IMPALA-6755"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6756" scope="external" format="html" keys="IMPALA-6756"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6757" scope="external" format="html" keys="IMPALA-6757"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6758" scope="external" format="html" keys="IMPALA-6758"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6759" scope="external" format="html" keys="IMPALA-6759"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6760" scope="external" format="html" keys="IMPALA-6760"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6761" scope="external" format="html" keys="IMPALA-6761"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6762" scope="external" format="html" keys="IMPALA-6762"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6763" scope="external" format="html" keys="IMPALA-6763"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6764" scope="external" format="html" keys="IMPALA-6764"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6765" scope="external" format="html" keys="IMPALA-6765"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6766" scope="external" format="html" keys="IMPALA-6766"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6767" scope="external" format="html" keys="IMPALA-6767"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6768" scope="external" format="html" keys="IMPALA-6768"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6769" scope="external" format="html" keys="IMPALA-6769"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6770" scope="external" format="html" keys="IMPALA-6770"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6771" scope="external" format="html" keys="IMPALA-6771"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6772" scope="external" format="html" keys="IMPALA-6772"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6773" scope="external" format="html" keys="IMPALA-6773"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6774" scope="external" format="html" keys="IMPALA-6774"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6775" scope="external" format="html" keys="IMPALA-6775"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6776" scope="external" format="html" keys="IMPALA-6776"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6777" scope="external" format="html" keys="IMPALA-6777"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6778" scope="external" format="html" keys="IMPALA-6778"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6779" scope="external" format="html" keys="IMPALA-6779"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6780" scope="external" format="html" keys="IMPALA-6780"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6781" scope="external" format="html" keys="IMPALA-6781"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6782" scope="external" format="html" keys="IMPALA-6782"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6783" scope="external" format="html" keys="IMPALA-6783"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6784" scope="external" format="html" keys="IMPALA-6784"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6785" scope="external" format="html" keys="IMPALA-6785"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6786" scope="external" format="html" keys="IMPALA-6786"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6787" scope="external" format="html" keys="IMPALA-6787"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6788" scope="external" format="html" keys="IMPALA-6788"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6789" scope="external" format="html" keys="IMPALA-6789"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6790" scope="external" format="html" keys="IMPALA-6790"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6791" scope="external" format="html" keys="IMPALA-6791"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6792" scope="external" format="html" keys="IMPALA-6792"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6793" scope="external" format="html" keys="IMPALA-6793"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6794" scope="external" format="html" keys="IMPALA-6794"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6795" scope="external" format="html" keys="IMPALA-6795"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6796" scope="external" format="html" keys="IMPALA-6796"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6797" scope="external" format="html" keys="IMPALA-6797"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6798" scope="external" format="html" keys="IMPALA-6798"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6799" scope="external" format="html" keys="IMPALA-6799"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6800" scope="external" format="html" keys="IMPALA-6800"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6801" scope="external" format="html" keys="IMPALA-6801"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6802" scope="external" format="html" keys="IMPALA-6802"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6803" scope="external" format="html" keys="IMPALA-6803"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6804" scope="external" format="html" keys="IMPALA-6804"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6805" scope="external" format="html" keys="IMPALA-6805"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6806" scope="external" format="html" keys="IMPALA-6806"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6807" scope="external" format="html" keys="IMPALA-6807"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6808" scope="external" format="html" keys="IMPALA-6808"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6809" scope="external" format="html" keys="IMPALA-6809"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6810" scope="external" format="html" keys="IMPALA-6810"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6811" scope="external" format="html" keys="IMPALA-6811"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6812" scope="external" format="html" keys="IMPALA-6812"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6813" scope="external" format="html" keys="IMPALA-6813"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6814" scope="external" format="html" keys="IMPALA-6814"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6815" scope="external" format="html" keys="IMPALA-6815"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6816" scope="external" format="html" keys="IMPALA-6816"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6817" scope="external" format="html" keys="IMPALA-6817"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6818" scope="external" format="html" keys="IMPALA-6818"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6819" scope="external" format="html" keys="IMPALA-6819"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6820" scope="external" format="html" keys="IMPALA-6820"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6821" scope="external" format="html" keys="IMPALA-6821"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6822" scope="external" format="html" keys="IMPALA-6822"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6823" scope="external" format="html" keys="IMPALA-6823"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6824" scope="external" format="html" keys="IMPALA-6824"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6825" scope="external" format="html" keys="IMPALA-6825"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6826" scope="external" format="html" keys="IMPALA-6826"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6827" scope="external" format="html" keys="IMPALA-6827"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6828" scope="external" format="html" keys="IMPALA-6828"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6829" scope="external" format="html" keys="IMPALA-6829"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6830" scope="external" format="html" keys="IMPALA-6830"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6831" scope="external" format="html" keys="IMPALA-6831"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6832" scope="external" format="html" keys="IMPALA-6832"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6833" scope="external" format="html" keys="IMPALA-6833"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6834" scope="external" format="html" keys="IMPALA-6834"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6835" scope="external" format="html" keys="IMPALA-6835"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6836" scope="external" format="html" keys="IMPALA-6836"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6837" scope="external" format="html" keys="IMPALA-6837"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6838" scope="external" format="html" keys="IMPALA-6838"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6839" scope="external" format="html" keys="IMPALA-6839"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6840" scope="external" format="html" keys="IMPALA-6840"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6841" scope="external" format="html" keys="IMPALA-6841"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6842" scope="external" format="html" keys="IMPALA-6842"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6843" scope="external" format="html" keys="IMPALA-6843"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6844" scope="external" format="html" keys="IMPALA-6844"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6845" scope="external" format="html" keys="IMPALA-6845"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6846" scope="external" format="html" keys="IMPALA-6846"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6847" scope="external" format="html" keys="IMPALA-6847"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6848" scope="external" format="html" keys="IMPALA-6848"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6849" scope="external" format="html" keys="IMPALA-6849"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6850" scope="external" format="html" keys="IMPALA-6850"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6851" scope="external" format="html" keys="IMPALA-6851"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6852" scope="external" format="html" keys="IMPALA-6852"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6853" scope="external" format="html" keys="IMPALA-6853"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6854" scope="external" format="html" keys="IMPALA-6854"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6855" scope="external" format="html" keys="IMPALA-6855"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6856" scope="external" format="html" keys="IMPALA-6856"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6857" scope="external" format="html" keys="IMPALA-6857"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6858" scope="external" format="html" keys="IMPALA-6858"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6859" scope="external" format="html" keys="IMPALA-6859"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6860" scope="external" format="html" keys="IMPALA-6860"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6861" scope="external" format="html" keys="IMPALA-6861"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6862" scope="external" format="html" keys="IMPALA-6862"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6863" scope="external" format="html" keys="IMPALA-6863"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6864" scope="external" format="html" keys="IMPALA-6864"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6865" scope="external" format="html" keys="IMPALA-6865"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6866" scope="external" format="html" keys="IMPALA-6866"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6867" scope="external" format="html" keys="IMPALA-6867"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6868" scope="external" format="html" keys="IMPALA-6868"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6869" scope="external" format="html" keys="IMPALA-6869"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6870" scope="external" format="html" keys="IMPALA-6870"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6871" scope="external" format="html" keys="IMPALA-6871"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6872" scope="external" format="html" keys="IMPALA-6872"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6873" scope="external" format="html" keys="IMPALA-6873"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6874" scope="external" format="html" keys="IMPALA-6874"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6875" scope="external" format="html" keys="IMPALA-6875"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6876" scope="external" format="html" keys="IMPALA-6876"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6877" scope="external" format="html" keys="IMPALA-6877"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6878" scope="external" format="html" keys="IMPALA-6878"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6879" scope="external" format="html" keys="IMPALA-6879"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6880" scope="external" format="html" keys="IMPALA-6880"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6881" scope="external" format="html" keys="IMPALA-6881"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6882" scope="external" format="html" keys="IMPALA-6882"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6883" scope="external" format="html" keys="IMPALA-6883"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6884" scope="external" format="html" keys="IMPALA-6884"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6885" scope="external" format="html" keys="IMPALA-6885"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6886" scope="external" format="html" keys="IMPALA-6886"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6887" scope="external" format="html" keys="IMPALA-6887"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6888" scope="external" format="html" keys="IMPALA-6888"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6889" scope="external" format="html" keys="IMPALA-6889"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6890" scope="external" format="html" keys="IMPALA-6890"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6891" scope="external" format="html" keys="IMPALA-6891"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6892" scope="external" format="html" keys="IMPALA-6892"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6893" scope="external" format="html" keys="IMPALA-6893"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6894" scope="external" format="html" keys="IMPALA-6894"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6895" scope="external" format="html" keys="IMPALA-6895"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6896" scope="external" format="html" keys="IMPALA-6896"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6897" scope="external" format="html" keys="IMPALA-6897"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6898" scope="external" format="html" keys="IMPALA-6898"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6899" scope="external" format="html" keys="IMPALA-6899"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6900" scope="external" format="html" keys="IMPALA-6900"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6901" scope="external" format="html" keys="IMPALA-6901"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6902" scope="external" format="html" keys="IMPALA-6902"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6903" scope="external" format="html" keys="IMPALA-6903"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6904" scope="external" format="html" keys="IMPALA-6904"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6905" scope="external" format="html" keys="IMPALA-6905"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6906" scope="external" format="html" keys="IMPALA-6906"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6907" scope="external" format="html" keys="IMPALA-6907"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6908" scope="external" format="html" keys="IMPALA-6908"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6909" scope="external" format="html" keys="IMPALA-6909"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6910" scope="external" format="html" keys="IMPALA-6910"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6911" scope="external" format="html" keys="IMPALA-6911"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6912" scope="external" format="html" keys="IMPALA-6912"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6913" scope="external" format="html" keys="IMPALA-6913"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6914" scope="external" format="html" keys="IMPALA-6914"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6915" scope="external" format="html" keys="IMPALA-6915"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6916" scope="external" format="html" keys="IMPALA-6916"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6917" scope="external" format="html" keys="IMPALA-6917"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6918" scope="external" format="html" keys="IMPALA-6918"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6919" scope="external" format="html" keys="IMPALA-6919"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6920" scope="external" format="html" keys="IMPALA-6920"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6921" scope="external" format="html" keys="IMPALA-6921"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6922" scope="external" format="html" keys="IMPALA-6922"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6923" scope="external" format="html" keys="IMPALA-6923"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6924" scope="external" format="html" keys="IMPALA-6924"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6925" scope="external" format="html" keys="IMPALA-6925"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6926" scope="external" format="html" keys="IMPALA-6926"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6927" scope="external" format="html" keys="IMPALA-6927"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6928" scope="external" format="html" keys="IMPALA-6928"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6929" scope="external" format="html" keys="IMPALA-6929"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6930" scope="external" format="html" keys="IMPALA-6930"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6931" scope="external" format="html" keys="IMPALA-6931"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6932" scope="external" format="html" keys="IMPALA-6932"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6933" scope="external" format="html" keys="IMPALA-6933"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6934" scope="external" format="html" keys="IMPALA-6934"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6935" scope="external" format="html" keys="IMPALA-6935"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6936" scope="external" format="html" keys="IMPALA-6936"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6937" scope="external" format="html" keys="IMPALA-6937"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6938" scope="external" format="html" keys="IMPALA-6938"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6939" scope="external" format="html" keys="IMPALA-6939"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6940" scope="external" format="html" keys="IMPALA-6940"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6941" scope="external" format="html" keys="IMPALA-6941"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6942" scope="external" format="html" keys="IMPALA-6942"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6943" scope="external" format="html" keys="IMPALA-6943"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6944" scope="external" format="html" keys="IMPALA-6944"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6945" scope="external" format="html" keys="IMPALA-6945"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6946" scope="external" format="html" keys="IMPALA-6946"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6947" scope="external" format="html" keys="IMPALA-6947"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6948" scope="external" format="html" keys="IMPALA-6948"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6949" scope="external" format="html" keys="IMPALA-6949"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6950" scope="external" format="html" keys="IMPALA-6950"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6951" scope="external" format="html" keys="IMPALA-6951"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6952" scope="external" format="html" keys="IMPALA-6952"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6953" scope="external" format="html" keys="IMPALA-6953"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6954" scope="external" format="html" keys="IMPALA-6954"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6955" scope="external" format="html" keys="IMPALA-6955"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6956" scope="external" format="html" keys="IMPALA-6956"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6957" scope="external" format="html" keys="IMPALA-6957"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6958" scope="external" format="html" keys="IMPALA-6958"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6959" scope="external" format="html" keys="IMPALA-6959"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6960" scope="external" format="html" keys="IMPALA-6960"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6961" scope="external" format="html" keys="IMPALA-6961"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6962" scope="external" format="html" keys="IMPALA-6962"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6963" scope="external" format="html" keys="IMPALA-6963"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6964" scope="external" format="html" keys="IMPALA-6964"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6965" scope="external" format="html" keys="IMPALA-6965"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6966" scope="external" format="html" keys="IMPALA-6966"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6967" scope="external" format="html" keys="IMPALA-6967"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6968" scope="external" format="html" keys="IMPALA-6968"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6969" scope="external" format="html" keys="IMPALA-6969"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6970" scope="external" format="html" keys="IMPALA-6970"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6971" scope="external" format="html" keys="IMPALA-6971"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6972" scope="external" format="html" keys="IMPALA-6972"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6973" scope="external" format="html" keys="IMPALA-6973"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6974" scope="external" format="html" keys="IMPALA-6974"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6975" scope="external" format="html" keys="IMPALA-6975"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6976" scope="external" format="html" keys="IMPALA-6976"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6977" scope="external" format="html" keys="IMPALA-6977"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6978" scope="external" format="html" keys="IMPALA-6978"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6979" scope="external" format="html" keys="IMPALA-6979"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6980" scope="external" format="html" keys="IMPALA-6980"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6981" scope="external" format="html" keys="IMPALA-6981"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6982" scope="external" format="html" keys="IMPALA-6982"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6983" scope="external" format="html" keys="IMPALA-6983"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6984" scope="external" format="html" keys="IMPALA-6984"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6985" scope="external" format="html" keys="IMPALA-6985"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6986" scope="external" format="html" keys="IMPALA-6986"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6987" scope="external" format="html" keys="IMPALA-6987"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6988" scope="external" format="html" keys="IMPALA-6988"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6989" scope="external" format="html" keys="IMPALA-6989"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6990" scope="external" format="html" keys="IMPALA-6990"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6991" scope="external" format="html" keys="IMPALA-6991"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6992" scope="external" format="html" keys="IMPALA-6992"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6993" scope="external" format="html" keys="IMPALA-6993"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6994" scope="external" format="html" keys="IMPALA-6994"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6995" scope="external" format="html" keys="IMPALA-6995"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6996" scope="external" format="html" keys="IMPALA-6996"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6997" scope="external" format="html" keys="IMPALA-6997"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6998" scope="external" format="html" keys="IMPALA-6998"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-6999" scope="external" format="html" keys="IMPALA-6999"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7000" scope="external" format="html" keys="IMPALA-7000"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7001" scope="external" format="html" keys="IMPALA-7001"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7002" scope="external" format="html" keys="IMPALA-7002"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7003" scope="external" format="html" keys="IMPALA-7003"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7004" scope="external" format="html" keys="IMPALA-7004"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7005" scope="external" format="html" keys="IMPALA-7005"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7006" scope="external" format="html" keys="IMPALA-7006"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7007" scope="external" format="html" keys="IMPALA-7007"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7008" scope="external" format="html" keys="IMPALA-7008"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7009" scope="external" format="html" keys="IMPALA-7009"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7010" scope="external" format="html" keys="IMPALA-7010"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7011" scope="external" format="html" keys="IMPALA-7011"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7012" scope="external" format="html" keys="IMPALA-7012"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7013" scope="external" format="html" keys="IMPALA-7013"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7014" scope="external" format="html" keys="IMPALA-7014"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7015" scope="external" format="html" keys="IMPALA-7015"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7016" scope="external" format="html" keys="IMPALA-7016"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7017" scope="external" format="html" keys="IMPALA-7017"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7018" scope="external" format="html" keys="IMPALA-7018"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7019" scope="external" format="html" keys="IMPALA-7019"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7020" scope="external" format="html" keys="IMPALA-7020"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7021" scope="external" format="html" keys="IMPALA-7021"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7022" scope="external" format="html" keys="IMPALA-7022"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7023" scope="external" format="html" keys="IMPALA-7023"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7024" scope="external" format="html" keys="IMPALA-7024"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7025" scope="external" format="html" keys="IMPALA-7025"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7026" scope="external" format="html" keys="IMPALA-7026"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7027" scope="external" format="html" keys="IMPALA-7027"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7028" scope="external" format="html" keys="IMPALA-7028"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7029" scope="external" format="html" keys="IMPALA-7029"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7030" scope="external" format="html" keys="IMPALA-7030"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7031" scope="external" format="html" keys="IMPALA-7031"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7032" scope="external" format="html" keys="IMPALA-7032"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7033" scope="external" format="html" keys="IMPALA-7033"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7034" scope="external" format="html" keys="IMPALA-7034"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7035" scope="external" format="html" keys="IMPALA-7035"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7036" scope="external" format="html" keys="IMPALA-7036"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7037" scope="external" format="html" keys="IMPALA-7037"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7038" scope="external" format="html" keys="IMPALA-7038"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7039" scope="external" format="html" keys="IMPALA-7039"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7040" scope="external" format="html" keys="IMPALA-7040"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7041" scope="external" format="html" keys="IMPALA-7041"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7042" scope="external" format="html" keys="IMPALA-7042"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7043" scope="external" format="html" keys="IMPALA-7043"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7044" scope="external" format="html" keys="IMPALA-7044"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7045" scope="external" format="html" keys="IMPALA-7045"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7046" scope="external" format="html" keys="IMPALA-7046"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7047" scope="external" format="html" keys="IMPALA-7047"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7048" scope="external" format="html" keys="IMPALA-7048"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7049" scope="external" format="html" keys="IMPALA-7049"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7050" scope="external" format="html" keys="IMPALA-7050"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7051" scope="external" format="html" keys="IMPALA-7051"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7052" scope="external" format="html" keys="IMPALA-7052"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7053" scope="external" format="html" keys="IMPALA-7053"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7054" scope="external" format="html" keys="IMPALA-7054"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7055" scope="external" format="html" keys="IMPALA-7055"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7056" scope="external" format="html" keys="IMPALA-7056"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7057" scope="external" format="html" keys="IMPALA-7057"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7058" scope="external" format="html" keys="IMPALA-7058"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7059" scope="external" format="html" keys="IMPALA-7059"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7060" scope="external" format="html" keys="IMPALA-7060"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7061" scope="external" format="html" keys="IMPALA-7061"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7062" scope="external" format="html" keys="IMPALA-7062"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7063" scope="external" format="html" keys="IMPALA-7063"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7064" scope="external" format="html" keys="IMPALA-7064"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7065" scope="external" format="html" keys="IMPALA-7065"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7066" scope="external" format="html" keys="IMPALA-7066"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7067" scope="external" format="html" keys="IMPALA-7067"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7068" scope="external" format="html" keys="IMPALA-7068"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7069" scope="external" format="html" keys="IMPALA-7069"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7070" scope="external" format="html" keys="IMPALA-7070"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7071" scope="external" format="html" keys="IMPALA-7071"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7072" scope="external" format="html" keys="IMPALA-7072"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7073" scope="external" format="html" keys="IMPALA-7073"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7074" scope="external" format="html" keys="IMPALA-7074"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7075" scope="external" format="html" keys="IMPALA-7075"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7076" scope="external" format="html" keys="IMPALA-7076"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7077" scope="external" format="html" keys="IMPALA-7077"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7078" scope="external" format="html" keys="IMPALA-7078"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7079" scope="external" format="html" keys="IMPALA-7079"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7080" scope="external" format="html" keys="IMPALA-7080"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7081" scope="external" format="html" keys="IMPALA-7081"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7082" scope="external" format="html" keys="IMPALA-7082"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7083" scope="external" format="html" keys="IMPALA-7083"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7084" scope="external" format="html" keys="IMPALA-7084"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7085" scope="external" format="html" keys="IMPALA-7085"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7086" scope="external" format="html" keys="IMPALA-7086"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7087" scope="external" format="html" keys="IMPALA-7087"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7088" scope="external" format="html" keys="IMPALA-7088"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7089" scope="external" format="html" keys="IMPALA-7089"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7090" scope="external" format="html" keys="IMPALA-7090"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7091" scope="external" format="html" keys="IMPALA-7091"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7092" scope="external" format="html" keys="IMPALA-7092"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7093" scope="external" format="html" keys="IMPALA-7093"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7094" scope="external" format="html" keys="IMPALA-7094"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7095" scope="external" format="html" keys="IMPALA-7095"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7096" scope="external" format="html" keys="IMPALA-7096"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7097" scope="external" format="html" keys="IMPALA-7097"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7098" scope="external" format="html" keys="IMPALA-7098"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7099" scope="external" format="html" keys="IMPALA-7099"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7100" scope="external" format="html" keys="IMPALA-7100"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7101" scope="external" format="html" keys="IMPALA-7101"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7102" scope="external" format="html" keys="IMPALA-7102"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7103" scope="external" format="html" keys="IMPALA-7103"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7104" scope="external" format="html" keys="IMPALA-7104"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7105" scope="external" format="html" keys="IMPALA-7105"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7106" scope="external" format="html" keys="IMPALA-7106"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7107" scope="external" format="html" keys="IMPALA-7107"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7108" scope="external" format="html" keys="IMPALA-7108"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7109" scope="external" format="html" keys="IMPALA-7109"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7110" scope="external" format="html" keys="IMPALA-7110"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7111" scope="external" format="html" keys="IMPALA-7111"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7112" scope="external" format="html" keys="IMPALA-7112"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7113" scope="external" format="html" keys="IMPALA-7113"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7114" scope="external" format="html" keys="IMPALA-7114"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7115" scope="external" format="html" keys="IMPALA-7115"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7116" scope="external" format="html" keys="IMPALA-7116"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7117" scope="external" format="html" keys="IMPALA-7117"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7118" scope="external" format="html" keys="IMPALA-7118"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7119" scope="external" format="html" keys="IMPALA-7119"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7120" scope="external" format="html" keys="IMPALA-7120"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7121" scope="external" format="html" keys="IMPALA-7121"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7122" scope="external" format="html" keys="IMPALA-7122"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7123" scope="external" format="html" keys="IMPALA-7123"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7124" scope="external" format="html" keys="IMPALA-7124"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7125" scope="external" format="html" keys="IMPALA-7125"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7126" scope="external" format="html" keys="IMPALA-7126"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7127" scope="external" format="html" keys="IMPALA-7127"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7128" scope="external" format="html" keys="IMPALA-7128"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7129" scope="external" format="html" keys="IMPALA-7129"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7130" scope="external" format="html" keys="IMPALA-7130"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7131" scope="external" format="html" keys="IMPALA-7131"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7132" scope="external" format="html" keys="IMPALA-7132"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7133" scope="external" format="html" keys="IMPALA-7133"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7134" scope="external" format="html" keys="IMPALA-7134"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7135" scope="external" format="html" keys="IMPALA-7135"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7136" scope="external" format="html" keys="IMPALA-7136"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7137" scope="external" format="html" keys="IMPALA-7137"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7138" scope="external" format="html" keys="IMPALA-7138"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7139" scope="external" format="html" keys="IMPALA-7139"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7140" scope="external" format="html" keys="IMPALA-7140"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7141" scope="external" format="html" keys="IMPALA-7141"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7142" scope="external" format="html" keys="IMPALA-7142"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7143" scope="external" format="html" keys="IMPALA-7143"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7144" scope="external" format="html" keys="IMPALA-7144"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7145" scope="external" format="html" keys="IMPALA-7145"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7146" scope="external" format="html" keys="IMPALA-7146"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7147" scope="external" format="html" keys="IMPALA-7147"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7148" scope="external" format="html" keys="IMPALA-7148"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7149" scope="external" format="html" keys="IMPALA-7149"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7150" scope="external" format="html" keys="IMPALA-7150"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7151" scope="external" format="html" keys="IMPALA-7151"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7152" scope="external" format="html" keys="IMPALA-7152"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7153" scope="external" format="html" keys="IMPALA-7153"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7154" scope="external" format="html" keys="IMPALA-7154"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7155" scope="external" format="html" keys="IMPALA-7155"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7156" scope="external" format="html" keys="IMPALA-7156"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7157" scope="external" format="html" keys="IMPALA-7157"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7158" scope="external" format="html" keys="IMPALA-7158"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7159" scope="external" format="html" keys="IMPALA-7159"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7160" scope="external" format="html" keys="IMPALA-7160"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7161" scope="external" format="html" keys="IMPALA-7161"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7162" scope="external" format="html" keys="IMPALA-7162"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7163" scope="external" format="html" keys="IMPALA-7163"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7164" scope="external" format="html" keys="IMPALA-7164"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7165" scope="external" format="html" keys="IMPALA-7165"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7166" scope="external" format="html" keys="IMPALA-7166"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7167" scope="external" format="html" keys="IMPALA-7167"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7168" scope="external" format="html" keys="IMPALA-7168"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7169" scope="external" format="html" keys="IMPALA-7169"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7170" scope="external" format="html" keys="IMPALA-7170"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7171" scope="external" format="html" keys="IMPALA-7171"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7172" scope="external" format="html" keys="IMPALA-7172"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7173" scope="external" format="html" keys="IMPALA-7173"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7174" scope="external" format="html" keys="IMPALA-7174"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7175" scope="external" format="html" keys="IMPALA-7175"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7176" scope="external" format="html" keys="IMPALA-7176"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7177" scope="external" format="html" keys="IMPALA-7177"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7178" scope="external" format="html" keys="IMPALA-7178"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7179" scope="external" format="html" keys="IMPALA-7179"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7180" scope="external" format="html" keys="IMPALA-7180"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7181" scope="external" format="html" keys="IMPALA-7181"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7182" scope="external" format="html" keys="IMPALA-7182"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7183" scope="external" format="html" keys="IMPALA-7183"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7184" scope="external" format="html" keys="IMPALA-7184"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7185" scope="external" format="html" keys="IMPALA-7185"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7186" scope="external" format="html" keys="IMPALA-7186"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7187" scope="external" format="html" keys="IMPALA-7187"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7188" scope="external" format="html" keys="IMPALA-7188"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7189" scope="external" format="html" keys="IMPALA-7189"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7190" scope="external" format="html" keys="IMPALA-7190"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7191" scope="external" format="html" keys="IMPALA-7191"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7192" scope="external" format="html" keys="IMPALA-7192"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7193" scope="external" format="html" keys="IMPALA-7193"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7194" scope="external" format="html" keys="IMPALA-7194"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7195" scope="external" format="html" keys="IMPALA-7195"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7196" scope="external" format="html" keys="IMPALA-7196"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7197" scope="external" format="html" keys="IMPALA-7197"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7198" scope="external" format="html" keys="IMPALA-7198"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7199" scope="external" format="html" keys="IMPALA-7199"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7200" scope="external" format="html" keys="IMPALA-7200"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7201" scope="external" format="html" keys="IMPALA-7201"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7202" scope="external" format="html" keys="IMPALA-7202"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7203" scope="external" format="html" keys="IMPALA-7203"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7204" scope="external" format="html" keys="IMPALA-7204"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7205" scope="external" format="html" keys="IMPALA-7205"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7206" scope="external" format="html" keys="IMPALA-7206"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7207" scope="external" format="html" keys="IMPALA-7207"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7208" scope="external" format="html" keys="IMPALA-7208"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7209" scope="external" format="html" keys="IMPALA-7209"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7210" scope="external" format="html" keys="IMPALA-7210"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7211" scope="external" format="html" keys="IMPALA-7211"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7212" scope="external" format="html" keys="IMPALA-7212"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7213" scope="external" format="html" keys="IMPALA-7213"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7214" scope="external" format="html" keys="IMPALA-7214"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7215" scope="external" format="html" keys="IMPALA-7215"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7216" scope="external" format="html" keys="IMPALA-7216"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7217" scope="external" format="html" keys="IMPALA-7217"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7218" scope="external" format="html" keys="IMPALA-7218"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7219" scope="external" format="html" keys="IMPALA-7219"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7220" scope="external" format="html" keys="IMPALA-7220"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7221" scope="external" format="html" keys="IMPALA-7221"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7222" scope="external" format="html" keys="IMPALA-7222"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7223" scope="external" format="html" keys="IMPALA-7223"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7224" scope="external" format="html" keys="IMPALA-7224"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7225" scope="external" format="html" keys="IMPALA-7225"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7226" scope="external" format="html" keys="IMPALA-7226"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7227" scope="external" format="html" keys="IMPALA-7227"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7228" scope="external" format="html" keys="IMPALA-7228"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7229" scope="external" format="html" keys="IMPALA-7229"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7230" scope="external" format="html" keys="IMPALA-7230"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7231" scope="external" format="html" keys="IMPALA-7231"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7232" scope="external" format="html" keys="IMPALA-7232"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7233" scope="external" format="html" keys="IMPALA-7233"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7234" scope="external" format="html" keys="IMPALA-7234"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7235" scope="external" format="html" keys="IMPALA-7235"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7236" scope="external" format="html" keys="IMPALA-7236"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7237" scope="external" format="html" keys="IMPALA-7237"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7238" scope="external" format="html" keys="IMPALA-7238"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7239" scope="external" format="html" keys="IMPALA-7239"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7240" scope="external" format="html" keys="IMPALA-7240"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7241" scope="external" format="html" keys="IMPALA-7241"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7242" scope="external" format="html" keys="IMPALA-7242"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7243" scope="external" format="html" keys="IMPALA-7243"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7244" scope="external" format="html" keys="IMPALA-7244"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7245" scope="external" format="html" keys="IMPALA-7245"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7246" scope="external" format="html" keys="IMPALA-7246"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7247" scope="external" format="html" keys="IMPALA-7247"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7248" scope="external" format="html" keys="IMPALA-7248"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7249" scope="external" format="html" keys="IMPALA-7249"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7250" scope="external" format="html" keys="IMPALA-7250"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7251" scope="external" format="html" keys="IMPALA-7251"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7252" scope="external" format="html" keys="IMPALA-7252"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7253" scope="external" format="html" keys="IMPALA-7253"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7254" scope="external" format="html" keys="IMPALA-7254"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7255" scope="external" format="html" keys="IMPALA-7255"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7256" scope="external" format="html" keys="IMPALA-7256"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7257" scope="external" format="html" keys="IMPALA-7257"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7258" scope="external" format="html" keys="IMPALA-7258"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7259" scope="external" format="html" keys="IMPALA-7259"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7260" scope="external" format="html" keys="IMPALA-7260"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7261" scope="external" format="html" keys="IMPALA-7261"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7262" scope="external" format="html" keys="IMPALA-7262"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7263" scope="external" format="html" keys="IMPALA-7263"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7264" scope="external" format="html" keys="IMPALA-7264"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7265" scope="external" format="html" keys="IMPALA-7265"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7266" scope="external" format="html" keys="IMPALA-7266"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7267" scope="external" format="html" keys="IMPALA-7267"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7268" scope="external" format="html" keys="IMPALA-7268"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7269" scope="external" format="html" keys="IMPALA-7269"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7270" scope="external" format="html" keys="IMPALA-7270"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7271" scope="external" format="html" keys="IMPALA-7271"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7272" scope="external" format="html" keys="IMPALA-7272"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7273" scope="external" format="html" keys="IMPALA-7273"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7274" scope="external" format="html" keys="IMPALA-7274"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7275" scope="external" format="html" keys="IMPALA-7275"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7276" scope="external" format="html" keys="IMPALA-7276"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7277" scope="external" format="html" keys="IMPALA-7277"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7278" scope="external" format="html" keys="IMPALA-7278"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7279" scope="external" format="html" keys="IMPALA-7279"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7280" scope="external" format="html" keys="IMPALA-7280"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7281" scope="external" format="html" keys="IMPALA-7281"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7282" scope="external" format="html" keys="IMPALA-7282"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7283" scope="external" format="html" keys="IMPALA-7283"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7284" scope="external" format="html" keys="IMPALA-7284"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7285" scope="external" format="html" keys="IMPALA-7285"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7286" scope="external" format="html" keys="IMPALA-7286"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7287" scope="external" format="html" keys="IMPALA-7287"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7288" scope="external" format="html" keys="IMPALA-7288"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7289" scope="external" format="html" keys="IMPALA-7289"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7290" scope="external" format="html" keys="IMPALA-7290"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7291" scope="external" format="html" keys="IMPALA-7291"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7292" scope="external" format="html" keys="IMPALA-7292"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7293" scope="external" format="html" keys="IMPALA-7293"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7294" scope="external" format="html" keys="IMPALA-7294"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7295" scope="external" format="html" keys="IMPALA-7295"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7296" scope="external" format="html" keys="IMPALA-7296"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7297" scope="external" format="html" keys="IMPALA-7297"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7298" scope="external" format="html" keys="IMPALA-7298"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7299" scope="external" format="html" keys="IMPALA-7299"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7300" scope="external" format="html" keys="IMPALA-7300"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7301" scope="external" format="html" keys="IMPALA-7301"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7302" scope="external" format="html" keys="IMPALA-7302"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7303" scope="external" format="html" keys="IMPALA-7303"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7304" scope="external" format="html" keys="IMPALA-7304"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7305" scope="external" format="html" keys="IMPALA-7305"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7306" scope="external" format="html" keys="IMPALA-7306"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7307" scope="external" format="html" keys="IMPALA-7307"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7308" scope="external" format="html" keys="IMPALA-7308"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7309" scope="external" format="html" keys="IMPALA-7309"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7310" scope="external" format="html" keys="IMPALA-7310"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7311" scope="external" format="html" keys="IMPALA-7311"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7312" scope="external" format="html" keys="IMPALA-7312"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7313" scope="external" format="html" keys="IMPALA-7313"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7314" scope="external" format="html" keys="IMPALA-7314"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7315" scope="external" format="html" keys="IMPALA-7315"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7316" scope="external" format="html" keys="IMPALA-7316"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7317" scope="external" format="html" keys="IMPALA-7317"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7318" scope="external" format="html" keys="IMPALA-7318"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7319" scope="external" format="html" keys="IMPALA-7319"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7320" scope="external" format="html" keys="IMPALA-7320"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7321" scope="external" format="html" keys="IMPALA-7321"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7322" scope="external" format="html" keys="IMPALA-7322"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7323" scope="external" format="html" keys="IMPALA-7323"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7324" scope="external" format="html" keys="IMPALA-7324"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7325" scope="external" format="html" keys="IMPALA-7325"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7326" scope="external" format="html" keys="IMPALA-7326"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7327" scope="external" format="html" keys="IMPALA-7327"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7328" scope="external" format="html" keys="IMPALA-7328"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7329" scope="external" format="html" keys="IMPALA-7329"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7330" scope="external" format="html" keys="IMPALA-7330"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7331" scope="external" format="html" keys="IMPALA-7331"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7332" scope="external" format="html" keys="IMPALA-7332"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7333" scope="external" format="html" keys="IMPALA-7333"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7334" scope="external" format="html" keys="IMPALA-7334"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7335" scope="external" format="html" keys="IMPALA-7335"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7336" scope="external" format="html" keys="IMPALA-7336"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7337" scope="external" format="html" keys="IMPALA-7337"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7338" scope="external" format="html" keys="IMPALA-7338"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7339" scope="external" format="html" keys="IMPALA-7339"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7340" scope="external" format="html" keys="IMPALA-7340"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7341" scope="external" format="html" keys="IMPALA-7341"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7342" scope="external" format="html" keys="IMPALA-7342"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7343" scope="external" format="html" keys="IMPALA-7343"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7344" scope="external" format="html" keys="IMPALA-7344"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7345" scope="external" format="html" keys="IMPALA-7345"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7346" scope="external" format="html" keys="IMPALA-7346"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7347" scope="external" format="html" keys="IMPALA-7347"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7348" scope="external" format="html" keys="IMPALA-7348"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7349" scope="external" format="html" keys="IMPALA-7349"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7350" scope="external" format="html" keys="IMPALA-7350"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7351" scope="external" format="html" keys="IMPALA-7351"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7352" scope="external" format="html" keys="IMPALA-7352"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7353" scope="external" format="html" keys="IMPALA-7353"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7354" scope="external" format="html" keys="IMPALA-7354"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7355" scope="external" format="html" keys="IMPALA-7355"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7356" scope="external" format="html" keys="IMPALA-7356"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7357" scope="external" format="html" keys="IMPALA-7357"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7358" scope="external" format="html" keys="IMPALA-7358"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7359" scope="external" format="html" keys="IMPALA-7359"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7360" scope="external" format="html" keys="IMPALA-7360"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7361" scope="external" format="html" keys="IMPALA-7361"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7362" scope="external" format="html" keys="IMPALA-7362"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7363" scope="external" format="html" keys="IMPALA-7363"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7364" scope="external" format="html" keys="IMPALA-7364"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7365" scope="external" format="html" keys="IMPALA-7365"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7366" scope="external" format="html" keys="IMPALA-7366"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7367" scope="external" format="html" keys="IMPALA-7367"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7368" scope="external" format="html" keys="IMPALA-7368"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7369" scope="external" format="html" keys="IMPALA-7369"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7370" scope="external" format="html" keys="IMPALA-7370"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7371" scope="external" format="html" keys="IMPALA-7371"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7372" scope="external" format="html" keys="IMPALA-7372"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7373" scope="external" format="html" keys="IMPALA-7373"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7374" scope="external" format="html" keys="IMPALA-7374"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7375" scope="external" format="html" keys="IMPALA-7375"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7376" scope="external" format="html" keys="IMPALA-7376"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7377" scope="external" format="html" keys="IMPALA-7377"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7378" scope="external" format="html" keys="IMPALA-7378"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7379" scope="external" format="html" keys="IMPALA-7379"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7380" scope="external" format="html" keys="IMPALA-7380"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7381" scope="external" format="html" keys="IMPALA-7381"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7382" scope="external" format="html" keys="IMPALA-7382"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7383" scope="external" format="html" keys="IMPALA-7383"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7384" scope="external" format="html" keys="IMPALA-7384"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7385" scope="external" format="html" keys="IMPALA-7385"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7386" scope="external" format="html" keys="IMPALA-7386"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7387" scope="external" format="html" keys="IMPALA-7387"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7388" scope="external" format="html" keys="IMPALA-7388"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7389" scope="external" format="html" keys="IMPALA-7389"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7390" scope="external" format="html" keys="IMPALA-7390"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7391" scope="external" format="html" keys="IMPALA-7391"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7392" scope="external" format="html" keys="IMPALA-7392"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7393" scope="external" format="html" keys="IMPALA-7393"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7394" scope="external" format="html" keys="IMPALA-7394"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7395" scope="external" format="html" keys="IMPALA-7395"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7396" scope="external" format="html" keys="IMPALA-7396"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7397" scope="external" format="html" keys="IMPALA-7397"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7398" scope="external" format="html" keys="IMPALA-7398"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7399" scope="external" format="html" keys="IMPALA-7399"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7400" scope="external" format="html" keys="IMPALA-7400"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7401" scope="external" format="html" keys="IMPALA-7401"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7402" scope="external" format="html" keys="IMPALA-7402"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7403" scope="external" format="html" keys="IMPALA-7403"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7404" scope="external" format="html" keys="IMPALA-7404"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7405" scope="external" format="html" keys="IMPALA-7405"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7406" scope="external" format="html" keys="IMPALA-7406"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7407" scope="external" format="html" keys="IMPALA-7407"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7408" scope="external" format="html" keys="IMPALA-7408"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7409" scope="external" format="html" keys="IMPALA-7409"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7410" scope="external" format="html" keys="IMPALA-7410"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7411" scope="external" format="html" keys="IMPALA-7411"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7412" scope="external" format="html" keys="IMPALA-7412"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7413" scope="external" format="html" keys="IMPALA-7413"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7414" scope="external" format="html" keys="IMPALA-7414"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7415" scope="external" format="html" keys="IMPALA-7415"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7416" scope="external" format="html" keys="IMPALA-7416"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7417" scope="external" format="html" keys="IMPALA-7417"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7418" scope="external" format="html" keys="IMPALA-7418"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7419" scope="external" format="html" keys="IMPALA-7419"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7420" scope="external" format="html" keys="IMPALA-7420"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7421" scope="external" format="html" keys="IMPALA-7421"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7422" scope="external" format="html" keys="IMPALA-7422"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7423" scope="external" format="html" keys="IMPALA-7423"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7424" scope="external" format="html" keys="IMPALA-7424"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7425" scope="external" format="html" keys="IMPALA-7425"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7426" scope="external" format="html" keys="IMPALA-7426"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7427" scope="external" format="html" keys="IMPALA-7427"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7428" scope="external" format="html" keys="IMPALA-7428"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7429" scope="external" format="html" keys="IMPALA-7429"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7430" scope="external" format="html" keys="IMPALA-7430"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7431" scope="external" format="html" keys="IMPALA-7431"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7432" scope="external" format="html" keys="IMPALA-7432"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7433" scope="external" format="html" keys="IMPALA-7433"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7434" scope="external" format="html" keys="IMPALA-7434"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7435" scope="external" format="html" keys="IMPALA-7435"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7436" scope="external" format="html" keys="IMPALA-7436"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7437" scope="external" format="html" keys="IMPALA-7437"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7438" scope="external" format="html" keys="IMPALA-7438"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7439" scope="external" format="html" keys="IMPALA-7439"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7440" scope="external" format="html" keys="IMPALA-7440"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7441" scope="external" format="html" keys="IMPALA-7441"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7442" scope="external" format="html" keys="IMPALA-7442"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7443" scope="external" format="html" keys="IMPALA-7443"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7444" scope="external" format="html" keys="IMPALA-7444"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7445" scope="external" format="html" keys="IMPALA-7445"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7446" scope="external" format="html" keys="IMPALA-7446"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7447" scope="external" format="html" keys="IMPALA-7447"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7448" scope="external" format="html" keys="IMPALA-7448"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7449" scope="external" format="html" keys="IMPALA-7449"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7450" scope="external" format="html" keys="IMPALA-7450"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7451" scope="external" format="html" keys="IMPALA-7451"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7452" scope="external" format="html" keys="IMPALA-7452"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7453" scope="external" format="html" keys="IMPALA-7453"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7454" scope="external" format="html" keys="IMPALA-7454"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7455" scope="external" format="html" keys="IMPALA-7455"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7456" scope="external" format="html" keys="IMPALA-7456"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7457" scope="external" format="html" keys="IMPALA-7457"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7458" scope="external" format="html" keys="IMPALA-7458"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7459" scope="external" format="html" keys="IMPALA-7459"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7460" scope="external" format="html" keys="IMPALA-7460"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7461" scope="external" format="html" keys="IMPALA-7461"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7462" scope="external" format="html" keys="IMPALA-7462"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7463" scope="external" format="html" keys="IMPALA-7463"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7464" scope="external" format="html" keys="IMPALA-7464"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7465" scope="external" format="html" keys="IMPALA-7465"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7466" scope="external" format="html" keys="IMPALA-7466"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7467" scope="external" format="html" keys="IMPALA-7467"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7468" scope="external" format="html" keys="IMPALA-7468"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7469" scope="external" format="html" keys="IMPALA-7469"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7470" scope="external" format="html" keys="IMPALA-7470"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7471" scope="external" format="html" keys="IMPALA-7471"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7472" scope="external" format="html" keys="IMPALA-7472"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7473" scope="external" format="html" keys="IMPALA-7473"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7474" scope="external" format="html" keys="IMPALA-7474"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7475" scope="external" format="html" keys="IMPALA-7475"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7476" scope="external" format="html" keys="IMPALA-7476"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7477" scope="external" format="html" keys="IMPALA-7477"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7478" scope="external" format="html" keys="IMPALA-7478"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7479" scope="external" format="html" keys="IMPALA-7479"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7480" scope="external" format="html" keys="IMPALA-7480"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7481" scope="external" format="html" keys="IMPALA-7481"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7482" scope="external" format="html" keys="IMPALA-7482"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7483" scope="external" format="html" keys="IMPALA-7483"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7484" scope="external" format="html" keys="IMPALA-7484"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7485" scope="external" format="html" keys="IMPALA-7485"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7486" scope="external" format="html" keys="IMPALA-7486"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7487" scope="external" format="html" keys="IMPALA-7487"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7488" scope="external" format="html" keys="IMPALA-7488"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7489" scope="external" format="html" keys="IMPALA-7489"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7490" scope="external" format="html" keys="IMPALA-7490"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7491" scope="external" format="html" keys="IMPALA-7491"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7492" scope="external" format="html" keys="IMPALA-7492"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7493" scope="external" format="html" keys="IMPALA-7493"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7494" scope="external" format="html" keys="IMPALA-7494"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7495" scope="external" format="html" keys="IMPALA-7495"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7496" scope="external" format="html" keys="IMPALA-7496"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7497" scope="external" format="html" keys="IMPALA-7497"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7498" scope="external" format="html" keys="IMPALA-7498"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7499" scope="external" format="html" keys="IMPALA-7499"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7500" scope="external" format="html" keys="IMPALA-7500"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7501" scope="external" format="html" keys="IMPALA-7501"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7502" scope="external" format="html" keys="IMPALA-7502"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7503" scope="external" format="html" keys="IMPALA-7503"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7504" scope="external" format="html" keys="IMPALA-7504"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7505" scope="external" format="html" keys="IMPALA-7505"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7506" scope="external" format="html" keys="IMPALA-7506"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7507" scope="external" format="html" keys="IMPALA-7507"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7508" scope="external" format="html" keys="IMPALA-7508"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7509" scope="external" format="html" keys="IMPALA-7509"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7510" scope="external" format="html" keys="IMPALA-7510"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7511" scope="external" format="html" keys="IMPALA-7511"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7512" scope="external" format="html" keys="IMPALA-7512"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7513" scope="external" format="html" keys="IMPALA-7513"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7514" scope="external" format="html" keys="IMPALA-7514"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7515" scope="external" format="html" keys="IMPALA-7515"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7516" scope="external" format="html" keys="IMPALA-7516"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7517" scope="external" format="html" keys="IMPALA-7517"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7518" scope="external" format="html" keys="IMPALA-7518"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7519" scope="external" format="html" keys="IMPALA-7519"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7520" scope="external" format="html" keys="IMPALA-7520"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7521" scope="external" format="html" keys="IMPALA-7521"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7522" scope="external" format="html" keys="IMPALA-7522"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7523" scope="external" format="html" keys="IMPALA-7523"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7524" scope="external" format="html" keys="IMPALA-7524"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7525" scope="external" format="html" keys="IMPALA-7525"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7526" scope="external" format="html" keys="IMPALA-7526"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7527" scope="external" format="html" keys="IMPALA-7527"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7528" scope="external" format="html" keys="IMPALA-7528"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7529" scope="external" format="html" keys="IMPALA-7529"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7530" scope="external" format="html" keys="IMPALA-7530"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7531" scope="external" format="html" keys="IMPALA-7531"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7532" scope="external" format="html" keys="IMPALA-7532"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7533" scope="external" format="html" keys="IMPALA-7533"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7534" scope="external" format="html" keys="IMPALA-7534"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7535" scope="external" format="html" keys="IMPALA-7535"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7536" scope="external" format="html" keys="IMPALA-7536"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7537" scope="external" format="html" keys="IMPALA-7537"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7538" scope="external" format="html" keys="IMPALA-7538"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7539" scope="external" format="html" keys="IMPALA-7539"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7540" scope="external" format="html" keys="IMPALA-7540"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7541" scope="external" format="html" keys="IMPALA-7541"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7542" scope="external" format="html" keys="IMPALA-7542"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7543" scope="external" format="html" keys="IMPALA-7543"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7544" scope="external" format="html" keys="IMPALA-7544"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7545" scope="external" format="html" keys="IMPALA-7545"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7546" scope="external" format="html" keys="IMPALA-7546"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7547" scope="external" format="html" keys="IMPALA-7547"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7548" scope="external" format="html" keys="IMPALA-7548"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7549" scope="external" format="html" keys="IMPALA-7549"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7550" scope="external" format="html" keys="IMPALA-7550"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7551" scope="external" format="html" keys="IMPALA-7551"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7552" scope="external" format="html" keys="IMPALA-7552"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7553" scope="external" format="html" keys="IMPALA-7553"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7554" scope="external" format="html" keys="IMPALA-7554"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7555" scope="external" format="html" keys="IMPALA-7555"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7556" scope="external" format="html" keys="IMPALA-7556"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7557" scope="external" format="html" keys="IMPALA-7557"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7558" scope="external" format="html" keys="IMPALA-7558"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7559" scope="external" format="html" keys="IMPALA-7559"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7560" scope="external" format="html" keys="IMPALA-7560"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7561" scope="external" format="html" keys="IMPALA-7561"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7562" scope="external" format="html" keys="IMPALA-7562"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7563" scope="external" format="html" keys="IMPALA-7563"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7564" scope="external" format="html" keys="IMPALA-7564"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7565" scope="external" format="html" keys="IMPALA-7565"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7566" scope="external" format="html" keys="IMPALA-7566"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7567" scope="external" format="html" keys="IMPALA-7567"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7568" scope="external" format="html" keys="IMPALA-7568"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7569" scope="external" format="html" keys="IMPALA-7569"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7570" scope="external" format="html" keys="IMPALA-7570"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7571" scope="external" format="html" keys="IMPALA-7571"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7572" scope="external" format="html" keys="IMPALA-7572"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7573" scope="external" format="html" keys="IMPALA-7573"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7574" scope="external" format="html" keys="IMPALA-7574"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7575" scope="external" format="html" keys="IMPALA-7575"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7576" scope="external" format="html" keys="IMPALA-7576"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7577" scope="external" format="html" keys="IMPALA-7577"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7578" scope="external" format="html" keys="IMPALA-7578"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7579" scope="external" format="html" keys="IMPALA-7579"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7580" scope="external" format="html" keys="IMPALA-7580"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7581" scope="external" format="html" keys="IMPALA-7581"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7582" scope="external" format="html" keys="IMPALA-7582"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7583" scope="external" format="html" keys="IMPALA-7583"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7584" scope="external" format="html" keys="IMPALA-7584"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7585" scope="external" format="html" keys="IMPALA-7585"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7586" scope="external" format="html" keys="IMPALA-7586"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7587" scope="external" format="html" keys="IMPALA-7587"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7588" scope="external" format="html" keys="IMPALA-7588"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7589" scope="external" format="html" keys="IMPALA-7589"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7590" scope="external" format="html" keys="IMPALA-7590"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7591" scope="external" format="html" keys="IMPALA-7591"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7592" scope="external" format="html" keys="IMPALA-7592"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7593" scope="external" format="html" keys="IMPALA-7593"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7594" scope="external" format="html" keys="IMPALA-7594"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7595" scope="external" format="html" keys="IMPALA-7595"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7596" scope="external" format="html" keys="IMPALA-7596"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7597" scope="external" format="html" keys="IMPALA-7597"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7598" scope="external" format="html" keys="IMPALA-7598"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7599" scope="external" format="html" keys="IMPALA-7599"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7600" scope="external" format="html" keys="IMPALA-7600"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7601" scope="external" format="html" keys="IMPALA-7601"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7602" scope="external" format="html" keys="IMPALA-7602"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7603" scope="external" format="html" keys="IMPALA-7603"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7604" scope="external" format="html" keys="IMPALA-7604"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7605" scope="external" format="html" keys="IMPALA-7605"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7606" scope="external" format="html" keys="IMPALA-7606"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7607" scope="external" format="html" keys="IMPALA-7607"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7608" scope="external" format="html" keys="IMPALA-7608"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7609" scope="external" format="html" keys="IMPALA-7609"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7610" scope="external" format="html" keys="IMPALA-7610"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7611" scope="external" format="html" keys="IMPALA-7611"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7612" scope="external" format="html" keys="IMPALA-7612"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7613" scope="external" format="html" keys="IMPALA-7613"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7614" scope="external" format="html" keys="IMPALA-7614"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7615" scope="external" format="html" keys="IMPALA-7615"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7616" scope="external" format="html" keys="IMPALA-7616"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7617" scope="external" format="html" keys="IMPALA-7617"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7618" scope="external" format="html" keys="IMPALA-7618"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7619" scope="external" format="html" keys="IMPALA-7619"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7620" scope="external" format="html" keys="IMPALA-7620"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7621" scope="external" format="html" keys="IMPALA-7621"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7622" scope="external" format="html" keys="IMPALA-7622"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7623" scope="external" format="html" keys="IMPALA-7623"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7624" scope="external" format="html" keys="IMPALA-7624"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7625" scope="external" format="html" keys="IMPALA-7625"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7626" scope="external" format="html" keys="IMPALA-7626"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7627" scope="external" format="html" keys="IMPALA-7627"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7628" scope="external" format="html" keys="IMPALA-7628"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7629" scope="external" format="html" keys="IMPALA-7629"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7630" scope="external" format="html" keys="IMPALA-7630"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7631" scope="external" format="html" keys="IMPALA-7631"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7632" scope="external" format="html" keys="IMPALA-7632"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7633" scope="external" format="html" keys="IMPALA-7633"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7634" scope="external" format="html" keys="IMPALA-7634"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7635" scope="external" format="html" keys="IMPALA-7635"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7636" scope="external" format="html" keys="IMPALA-7636"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7637" scope="external" format="html" keys="IMPALA-7637"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7638" scope="external" format="html" keys="IMPALA-7638"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7639" scope="external" format="html" keys="IMPALA-7639"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7640" scope="external" format="html" keys="IMPALA-7640"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7641" scope="external" format="html" keys="IMPALA-7641"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7642" scope="external" format="html" keys="IMPALA-7642"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7643" scope="external" format="html" keys="IMPALA-7643"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7644" scope="external" format="html" keys="IMPALA-7644"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7645" scope="external" format="html" keys="IMPALA-7645"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7646" scope="external" format="html" keys="IMPALA-7646"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7647" scope="external" format="html" keys="IMPALA-7647"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7648" scope="external" format="html" keys="IMPALA-7648"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7649" scope="external" format="html" keys="IMPALA-7649"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7650" scope="external" format="html" keys="IMPALA-7650"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7651" scope="external" format="html" keys="IMPALA-7651"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7652" scope="external" format="html" keys="IMPALA-7652"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7653" scope="external" format="html" keys="IMPALA-7653"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7654" scope="external" format="html" keys="IMPALA-7654"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7655" scope="external" format="html" keys="IMPALA-7655"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7656" scope="external" format="html" keys="IMPALA-7656"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7657" scope="external" format="html" keys="IMPALA-7657"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7658" scope="external" format="html" keys="IMPALA-7658"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7659" scope="external" format="html" keys="IMPALA-7659"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7660" scope="external" format="html" keys="IMPALA-7660"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7661" scope="external" format="html" keys="IMPALA-7661"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7662" scope="external" format="html" keys="IMPALA-7662"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7663" scope="external" format="html" keys="IMPALA-7663"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7664" scope="external" format="html" keys="IMPALA-7664"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7665" scope="external" format="html" keys="IMPALA-7665"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7666" scope="external" format="html" keys="IMPALA-7666"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7667" scope="external" format="html" keys="IMPALA-7667"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7668" scope="external" format="html" keys="IMPALA-7668"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7669" scope="external" format="html" keys="IMPALA-7669"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7670" scope="external" format="html" keys="IMPALA-7670"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7671" scope="external" format="html" keys="IMPALA-7671"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7672" scope="external" format="html" keys="IMPALA-7672"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7673" scope="external" format="html" keys="IMPALA-7673"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7674" scope="external" format="html" keys="IMPALA-7674"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7675" scope="external" format="html" keys="IMPALA-7675"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7676" scope="external" format="html" keys="IMPALA-7676"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7677" scope="external" format="html" keys="IMPALA-7677"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7678" scope="external" format="html" keys="IMPALA-7678"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7679" scope="external" format="html" keys="IMPALA-7679"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7680" scope="external" format="html" keys="IMPALA-7680"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7681" scope="external" format="html" keys="IMPALA-7681"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7682" scope="external" format="html" keys="IMPALA-7682"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7683" scope="external" format="html" keys="IMPALA-7683"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7684" scope="external" format="html" keys="IMPALA-7684"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7685" scope="external" format="html" keys="IMPALA-7685"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7686" scope="external" format="html" keys="IMPALA-7686"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7687" scope="external" format="html" keys="IMPALA-7687"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7688" scope="external" format="html" keys="IMPALA-7688"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7689" scope="external" format="html" keys="IMPALA-7689"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7690" scope="external" format="html" keys="IMPALA-7690"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7691" scope="external" format="html" keys="IMPALA-7691"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7692" scope="external" format="html" keys="IMPALA-7692"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7693" scope="external" format="html" keys="IMPALA-7693"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7694" scope="external" format="html" keys="IMPALA-7694"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7695" scope="external" format="html" keys="IMPALA-7695"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7696" scope="external" format="html" keys="IMPALA-7696"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7697" scope="external" format="html" keys="IMPALA-7697"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7698" scope="external" format="html" keys="IMPALA-7698"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7699" scope="external" format="html" keys="IMPALA-7699"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7700" scope="external" format="html" keys="IMPALA-7700"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7701" scope="external" format="html" keys="IMPALA-7701"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7702" scope="external" format="html" keys="IMPALA-7702"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7703" scope="external" format="html" keys="IMPALA-7703"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7704" scope="external" format="html" keys="IMPALA-7704"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7705" scope="external" format="html" keys="IMPALA-7705"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7706" scope="external" format="html" keys="IMPALA-7706"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7707" scope="external" format="html" keys="IMPALA-7707"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7708" scope="external" format="html" keys="IMPALA-7708"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7709" scope="external" format="html" keys="IMPALA-7709"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7710" scope="external" format="html" keys="IMPALA-7710"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7711" scope="external" format="html" keys="IMPALA-7711"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7712" scope="external" format="html" keys="IMPALA-7712"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7713" scope="external" format="html" keys="IMPALA-7713"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7714" scope="external" format="html" keys="IMPALA-7714"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7715" scope="external" format="html" keys="IMPALA-7715"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7716" scope="external" format="html" keys="IMPALA-7716"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7717" scope="external" format="html" keys="IMPALA-7717"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7718" scope="external" format="html" keys="IMPALA-7718"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7719" scope="external" format="html" keys="IMPALA-7719"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7720" scope="external" format="html" keys="IMPALA-7720"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7721" scope="external" format="html" keys="IMPALA-7721"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7722" scope="external" format="html" keys="IMPALA-7722"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7723" scope="external" format="html" keys="IMPALA-7723"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7724" scope="external" format="html" keys="IMPALA-7724"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7725" scope="external" format="html" keys="IMPALA-7725"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7726" scope="external" format="html" keys="IMPALA-7726"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7727" scope="external" format="html" keys="IMPALA-7727"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7728" scope="external" format="html" keys="IMPALA-7728"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7729" scope="external" format="html" keys="IMPALA-7729"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7730" scope="external" format="html" keys="IMPALA-7730"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7731" scope="external" format="html" keys="IMPALA-7731"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7732" scope="external" format="html" keys="IMPALA-7732"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7733" scope="external" format="html" keys="IMPALA-7733"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7734" scope="external" format="html" keys="IMPALA-7734"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7735" scope="external" format="html" keys="IMPALA-7735"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7736" scope="external" format="html" keys="IMPALA-7736"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7737" scope="external" format="html" keys="IMPALA-7737"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7738" scope="external" format="html" keys="IMPALA-7738"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7739" scope="external" format="html" keys="IMPALA-7739"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7740" scope="external" format="html" keys="IMPALA-7740"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7741" scope="external" format="html" keys="IMPALA-7741"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7742" scope="external" format="html" keys="IMPALA-7742"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7743" scope="external" format="html" keys="IMPALA-7743"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7744" scope="external" format="html" keys="IMPALA-7744"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7745" scope="external" format="html" keys="IMPALA-7745"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7746" scope="external" format="html" keys="IMPALA-7746"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7747" scope="external" format="html" keys="IMPALA-7747"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7748" scope="external" format="html" keys="IMPALA-7748"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7749" scope="external" format="html" keys="IMPALA-7749"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7750" scope="external" format="html" keys="IMPALA-7750"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7751" scope="external" format="html" keys="IMPALA-7751"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7752" scope="external" format="html" keys="IMPALA-7752"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7753" scope="external" format="html" keys="IMPALA-7753"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7754" scope="external" format="html" keys="IMPALA-7754"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7755" scope="external" format="html" keys="IMPALA-7755"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7756" scope="external" format="html" keys="IMPALA-7756"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7757" scope="external" format="html" keys="IMPALA-7757"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7758" scope="external" format="html" keys="IMPALA-7758"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7759" scope="external" format="html" keys="IMPALA-7759"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7760" scope="external" format="html" keys="IMPALA-7760"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7761" scope="external" format="html" keys="IMPALA-7761"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7762" scope="external" format="html" keys="IMPALA-7762"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7763" scope="external" format="html" keys="IMPALA-7763"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7764" scope="external" format="html" keys="IMPALA-7764"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7765" scope="external" format="html" keys="IMPALA-7765"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7766" scope="external" format="html" keys="IMPALA-7766"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7767" scope="external" format="html" keys="IMPALA-7767"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7768" scope="external" format="html" keys="IMPALA-7768"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7769" scope="external" format="html" keys="IMPALA-7769"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7770" scope="external" format="html" keys="IMPALA-7770"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7771" scope="external" format="html" keys="IMPALA-7771"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7772" scope="external" format="html" keys="IMPALA-7772"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7773" scope="external" format="html" keys="IMPALA-7773"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7774" scope="external" format="html" keys="IMPALA-7774"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7775" scope="external" format="html" keys="IMPALA-7775"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7776" scope="external" format="html" keys="IMPALA-7776"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7777" scope="external" format="html" keys="IMPALA-7777"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7778" scope="external" format="html" keys="IMPALA-7778"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7779" scope="external" format="html" keys="IMPALA-7779"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7780" scope="external" format="html" keys="IMPALA-7780"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7781" scope="external" format="html" keys="IMPALA-7781"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7782" scope="external" format="html" keys="IMPALA-7782"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7783" scope="external" format="html" keys="IMPALA-7783"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7784" scope="external" format="html" keys="IMPALA-7784"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7785" scope="external" format="html" keys="IMPALA-7785"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7786" scope="external" format="html" keys="IMPALA-7786"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7787" scope="external" format="html" keys="IMPALA-7787"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7788" scope="external" format="html" keys="IMPALA-7788"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7789" scope="external" format="html" keys="IMPALA-7789"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7790" scope="external" format="html" keys="IMPALA-7790"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7791" scope="external" format="html" keys="IMPALA-7791"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7792" scope="external" format="html" keys="IMPALA-7792"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7793" scope="external" format="html" keys="IMPALA-7793"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7794" scope="external" format="html" keys="IMPALA-7794"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7795" scope="external" format="html" keys="IMPALA-7795"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7796" scope="external" format="html" keys="IMPALA-7796"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7797" scope="external" format="html" keys="IMPALA-7797"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7798" scope="external" format="html" keys="IMPALA-7798"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7799" scope="external" format="html" keys="IMPALA-7799"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7800" scope="external" format="html" keys="IMPALA-7800"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7801" scope="external" format="html" keys="IMPALA-7801"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7802" scope="external" format="html" keys="IMPALA-7802"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7803" scope="external" format="html" keys="IMPALA-7803"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7804" scope="external" format="html" keys="IMPALA-7804"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7805" scope="external" format="html" keys="IMPALA-7805"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7806" scope="external" format="html" keys="IMPALA-7806"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7807" scope="external" format="html" keys="IMPALA-7807"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7808" scope="external" format="html" keys="IMPALA-7808"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7809" scope="external" format="html" keys="IMPALA-7809"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7810" scope="external" format="html" keys="IMPALA-7810"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7811" scope="external" format="html" keys="IMPALA-7811"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7812" scope="external" format="html" keys="IMPALA-7812"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7813" scope="external" format="html" keys="IMPALA-7813"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7814" scope="external" format="html" keys="IMPALA-7814"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7815" scope="external" format="html" keys="IMPALA-7815"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7816" scope="external" format="html" keys="IMPALA-7816"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7817" scope="external" format="html" keys="IMPALA-7817"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7818" scope="external" format="html" keys="IMPALA-7818"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7819" scope="external" format="html" keys="IMPALA-7819"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7820" scope="external" format="html" keys="IMPALA-7820"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7821" scope="external" format="html" keys="IMPALA-7821"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7822" scope="external" format="html" keys="IMPALA-7822"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7823" scope="external" format="html" keys="IMPALA-7823"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7824" scope="external" format="html" keys="IMPALA-7824"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7825" scope="external" format="html" keys="IMPALA-7825"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7826" scope="external" format="html" keys="IMPALA-7826"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7827" scope="external" format="html" keys="IMPALA-7827"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7828" scope="external" format="html" keys="IMPALA-7828"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7829" scope="external" format="html" keys="IMPALA-7829"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7830" scope="external" format="html" keys="IMPALA-7830"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7831" scope="external" format="html" keys="IMPALA-7831"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7832" scope="external" format="html" keys="IMPALA-7832"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7833" scope="external" format="html" keys="IMPALA-7833"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7834" scope="external" format="html" keys="IMPALA-7834"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7835" scope="external" format="html" keys="IMPALA-7835"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7836" scope="external" format="html" keys="IMPALA-7836"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7837" scope="external" format="html" keys="IMPALA-7837"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7838" scope="external" format="html" keys="IMPALA-7838"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7839" scope="external" format="html" keys="IMPALA-7839"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7840" scope="external" format="html" keys="IMPALA-7840"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7841" scope="external" format="html" keys="IMPALA-7841"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7842" scope="external" format="html" keys="IMPALA-7842"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7843" scope="external" format="html" keys="IMPALA-7843"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7844" scope="external" format="html" keys="IMPALA-7844"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7845" scope="external" format="html" keys="IMPALA-7845"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7846" scope="external" format="html" keys="IMPALA-7846"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7847" scope="external" format="html" keys="IMPALA-7847"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7848" scope="external" format="html" keys="IMPALA-7848"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7849" scope="external" format="html" keys="IMPALA-7849"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7850" scope="external" format="html" keys="IMPALA-7850"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7851" scope="external" format="html" keys="IMPALA-7851"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7852" scope="external" format="html" keys="IMPALA-7852"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7853" scope="external" format="html" keys="IMPALA-7853"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7854" scope="external" format="html" keys="IMPALA-7854"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7855" scope="external" format="html" keys="IMPALA-7855"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7856" scope="external" format="html" keys="IMPALA-7856"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7857" scope="external" format="html" keys="IMPALA-7857"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7858" scope="external" format="html" keys="IMPALA-7858"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7859" scope="external" format="html" keys="IMPALA-7859"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7860" scope="external" format="html" keys="IMPALA-7860"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7861" scope="external" format="html" keys="IMPALA-7861"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7862" scope="external" format="html" keys="IMPALA-7862"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7863" scope="external" format="html" keys="IMPALA-7863"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7864" scope="external" format="html" keys="IMPALA-7864"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7865" scope="external" format="html" keys="IMPALA-7865"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7866" scope="external" format="html" keys="IMPALA-7866"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7867" scope="external" format="html" keys="IMPALA-7867"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7868" scope="external" format="html" keys="IMPALA-7868"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7869" scope="external" format="html" keys="IMPALA-7869"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7870" scope="external" format="html" keys="IMPALA-7870"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7871" scope="external" format="html" keys="IMPALA-7871"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7872" scope="external" format="html" keys="IMPALA-7872"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7873" scope="external" format="html" keys="IMPALA-7873"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7874" scope="external" format="html" keys="IMPALA-7874"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7875" scope="external" format="html" keys="IMPALA-7875"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7876" scope="external" format="html" keys="IMPALA-7876"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7877" scope="external" format="html" keys="IMPALA-7877"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7878" scope="external" format="html" keys="IMPALA-7878"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7879" scope="external" format="html" keys="IMPALA-7879"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7880" scope="external" format="html" keys="IMPALA-7880"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7881" scope="external" format="html" keys="IMPALA-7881"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7882" scope="external" format="html" keys="IMPALA-7882"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7883" scope="external" format="html" keys="IMPALA-7883"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7884" scope="external" format="html" keys="IMPALA-7884"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7885" scope="external" format="html" keys="IMPALA-7885"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7886" scope="external" format="html" keys="IMPALA-7886"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7887" scope="external" format="html" keys="IMPALA-7887"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7888" scope="external" format="html" keys="IMPALA-7888"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7889" scope="external" format="html" keys="IMPALA-7889"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7890" scope="external" format="html" keys="IMPALA-7890"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7891" scope="external" format="html" keys="IMPALA-7891"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7892" scope="external" format="html" keys="IMPALA-7892"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7893" scope="external" format="html" keys="IMPALA-7893"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7894" scope="external" format="html" keys="IMPALA-7894"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7895" scope="external" format="html" keys="IMPALA-7895"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7896" scope="external" format="html" keys="IMPALA-7896"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7897" scope="external" format="html" keys="IMPALA-7897"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7898" scope="external" format="html" keys="IMPALA-7898"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7899" scope="external" format="html" keys="IMPALA-7899"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7900" scope="external" format="html" keys="IMPALA-7900"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7901" scope="external" format="html" keys="IMPALA-7901"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7902" scope="external" format="html" keys="IMPALA-7902"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7903" scope="external" format="html" keys="IMPALA-7903"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7904" scope="external" format="html" keys="IMPALA-7904"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7905" scope="external" format="html" keys="IMPALA-7905"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7906" scope="external" format="html" keys="IMPALA-7906"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7907" scope="external" format="html" keys="IMPALA-7907"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7908" scope="external" format="html" keys="IMPALA-7908"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7909" scope="external" format="html" keys="IMPALA-7909"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7910" scope="external" format="html" keys="IMPALA-7910"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7911" scope="external" format="html" keys="IMPALA-7911"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7912" scope="external" format="html" keys="IMPALA-7912"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7913" scope="external" format="html" keys="IMPALA-7913"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7914" scope="external" format="html" keys="IMPALA-7914"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7915" scope="external" format="html" keys="IMPALA-7915"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7916" scope="external" format="html" keys="IMPALA-7916"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7917" scope="external" format="html" keys="IMPALA-7917"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7918" scope="external" format="html" keys="IMPALA-7918"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7919" scope="external" format="html" keys="IMPALA-7919"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7920" scope="external" format="html" keys="IMPALA-7920"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7921" scope="external" format="html" keys="IMPALA-7921"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7922" scope="external" format="html" keys="IMPALA-7922"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7923" scope="external" format="html" keys="IMPALA-7923"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7924" scope="external" format="html" keys="IMPALA-7924"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7925" scope="external" format="html" keys="IMPALA-7925"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7926" scope="external" format="html" keys="IMPALA-7926"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7927" scope="external" format="html" keys="IMPALA-7927"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7928" scope="external" format="html" keys="IMPALA-7928"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7929" scope="external" format="html" keys="IMPALA-7929"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7930" scope="external" format="html" keys="IMPALA-7930"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7931" scope="external" format="html" keys="IMPALA-7931"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7932" scope="external" format="html" keys="IMPALA-7932"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7933" scope="external" format="html" keys="IMPALA-7933"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7934" scope="external" format="html" keys="IMPALA-7934"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7935" scope="external" format="html" keys="IMPALA-7935"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7936" scope="external" format="html" keys="IMPALA-7936"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7937" scope="external" format="html" keys="IMPALA-7937"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7938" scope="external" format="html" keys="IMPALA-7938"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7939" scope="external" format="html" keys="IMPALA-7939"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7940" scope="external" format="html" keys="IMPALA-7940"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7941" scope="external" format="html" keys="IMPALA-7941"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7942" scope="external" format="html" keys="IMPALA-7942"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7943" scope="external" format="html" keys="IMPALA-7943"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7944" scope="external" format="html" keys="IMPALA-7944"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7945" scope="external" format="html" keys="IMPALA-7945"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7946" scope="external" format="html" keys="IMPALA-7946"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7947" scope="external" format="html" keys="IMPALA-7947"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7948" scope="external" format="html" keys="IMPALA-7948"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7949" scope="external" format="html" keys="IMPALA-7949"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7950" scope="external" format="html" keys="IMPALA-7950"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7951" scope="external" format="html" keys="IMPALA-7951"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7952" scope="external" format="html" keys="IMPALA-7952"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7953" scope="external" format="html" keys="IMPALA-7953"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7954" scope="external" format="html" keys="IMPALA-7954"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7955" scope="external" format="html" keys="IMPALA-7955"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7956" scope="external" format="html" keys="IMPALA-7956"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7957" scope="external" format="html" keys="IMPALA-7957"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7958" scope="external" format="html" keys="IMPALA-7958"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7959" scope="external" format="html" keys="IMPALA-7959"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7960" scope="external" format="html" keys="IMPALA-7960"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7961" scope="external" format="html" keys="IMPALA-7961"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7962" scope="external" format="html" keys="IMPALA-7962"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7963" scope="external" format="html" keys="IMPALA-7963"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7964" scope="external" format="html" keys="IMPALA-7964"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7965" scope="external" format="html" keys="IMPALA-7965"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7966" scope="external" format="html" keys="IMPALA-7966"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7967" scope="external" format="html" keys="IMPALA-7967"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7968" scope="external" format="html" keys="IMPALA-7968"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7969" scope="external" format="html" keys="IMPALA-7969"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7970" scope="external" format="html" keys="IMPALA-7970"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7971" scope="external" format="html" keys="IMPALA-7971"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7972" scope="external" format="html" keys="IMPALA-7972"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7973" scope="external" format="html" keys="IMPALA-7973"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7974" scope="external" format="html" keys="IMPALA-7974"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7975" scope="external" format="html" keys="IMPALA-7975"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7976" scope="external" format="html" keys="IMPALA-7976"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7977" scope="external" format="html" keys="IMPALA-7977"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7978" scope="external" format="html" keys="IMPALA-7978"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7979" scope="external" format="html" keys="IMPALA-7979"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7980" scope="external" format="html" keys="IMPALA-7980"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7981" scope="external" format="html" keys="IMPALA-7981"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7982" scope="external" format="html" keys="IMPALA-7982"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7983" scope="external" format="html" keys="IMPALA-7983"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7984" scope="external" format="html" keys="IMPALA-7984"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7985" scope="external" format="html" keys="IMPALA-7985"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7986" scope="external" format="html" keys="IMPALA-7986"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7987" scope="external" format="html" keys="IMPALA-7987"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7988" scope="external" format="html" keys="IMPALA-7988"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7989" scope="external" format="html" keys="IMPALA-7989"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7990" scope="external" format="html" keys="IMPALA-7990"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7991" scope="external" format="html" keys="IMPALA-7991"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7992" scope="external" format="html" keys="IMPALA-7992"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7993" scope="external" format="html" keys="IMPALA-7993"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7994" scope="external" format="html" keys="IMPALA-7994"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7995" scope="external" format="html" keys="IMPALA-7995"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7996" scope="external" format="html" keys="IMPALA-7996"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7997" scope="external" format="html" keys="IMPALA-7997"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7998" scope="external" format="html" keys="IMPALA-7998"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-7999" scope="external" format="html" keys="IMPALA-7999"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8000" scope="external" format="html" keys="IMPALA-8000"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8001" scope="external" format="html" keys="IMPALA-8001"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8002" scope="external" format="html" keys="IMPALA-8002"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8003" scope="external" format="html" keys="IMPALA-8003"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8004" scope="external" format="html" keys="IMPALA-8004"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8005" scope="external" format="html" keys="IMPALA-8005"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8006" scope="external" format="html" keys="IMPALA-8006"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8007" scope="external" format="html" keys="IMPALA-8007"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8008" scope="external" format="html" keys="IMPALA-8008"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8009" scope="external" format="html" keys="IMPALA-8009"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8010" scope="external" format="html" keys="IMPALA-8010"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8011" scope="external" format="html" keys="IMPALA-8011"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8012" scope="external" format="html" keys="IMPALA-8012"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8013" scope="external" format="html" keys="IMPALA-8013"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8014" scope="external" format="html" keys="IMPALA-8014"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8015" scope="external" format="html" keys="IMPALA-8015"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8016" scope="external" format="html" keys="IMPALA-8016"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8017" scope="external" format="html" keys="IMPALA-8017"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8018" scope="external" format="html" keys="IMPALA-8018"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8019" scope="external" format="html" keys="IMPALA-8019"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8020" scope="external" format="html" keys="IMPALA-8020"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8021" scope="external" format="html" keys="IMPALA-8021"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8022" scope="external" format="html" keys="IMPALA-8022"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8023" scope="external" format="html" keys="IMPALA-8023"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8024" scope="external" format="html" keys="IMPALA-8024"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8025" scope="external" format="html" keys="IMPALA-8025"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8026" scope="external" format="html" keys="IMPALA-8026"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8027" scope="external" format="html" keys="IMPALA-8027"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8028" scope="external" format="html" keys="IMPALA-8028"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8029" scope="external" format="html" keys="IMPALA-8029"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8030" scope="external" format="html" keys="IMPALA-8030"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8031" scope="external" format="html" keys="IMPALA-8031"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8032" scope="external" format="html" keys="IMPALA-8032"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8033" scope="external" format="html" keys="IMPALA-8033"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8034" scope="external" format="html" keys="IMPALA-8034"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8035" scope="external" format="html" keys="IMPALA-8035"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8036" scope="external" format="html" keys="IMPALA-8036"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8037" scope="external" format="html" keys="IMPALA-8037"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8038" scope="external" format="html" keys="IMPALA-8038"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8039" scope="external" format="html" keys="IMPALA-8039"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8040" scope="external" format="html" keys="IMPALA-8040"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8041" scope="external" format="html" keys="IMPALA-8041"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8042" scope="external" format="html" keys="IMPALA-8042"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8043" scope="external" format="html" keys="IMPALA-8043"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8044" scope="external" format="html" keys="IMPALA-8044"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8045" scope="external" format="html" keys="IMPALA-8045"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8046" scope="external" format="html" keys="IMPALA-8046"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8047" scope="external" format="html" keys="IMPALA-8047"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8048" scope="external" format="html" keys="IMPALA-8048"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8049" scope="external" format="html" keys="IMPALA-8049"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8050" scope="external" format="html" keys="IMPALA-8050"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8051" scope="external" format="html" keys="IMPALA-8051"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8052" scope="external" format="html" keys="IMPALA-8052"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8053" scope="external" format="html" keys="IMPALA-8053"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8054" scope="external" format="html" keys="IMPALA-8054"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8055" scope="external" format="html" keys="IMPALA-8055"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8056" scope="external" format="html" keys="IMPALA-8056"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8057" scope="external" format="html" keys="IMPALA-8057"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8058" scope="external" format="html" keys="IMPALA-8058"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8059" scope="external" format="html" keys="IMPALA-8059"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8060" scope="external" format="html" keys="IMPALA-8060"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8061" scope="external" format="html" keys="IMPALA-8061"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8062" scope="external" format="html" keys="IMPALA-8062"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8063" scope="external" format="html" keys="IMPALA-8063"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8064" scope="external" format="html" keys="IMPALA-8064"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8065" scope="external" format="html" keys="IMPALA-8065"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8066" scope="external" format="html" keys="IMPALA-8066"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8067" scope="external" format="html" keys="IMPALA-8067"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8068" scope="external" format="html" keys="IMPALA-8068"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8069" scope="external" format="html" keys="IMPALA-8069"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8070" scope="external" format="html" keys="IMPALA-8070"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8071" scope="external" format="html" keys="IMPALA-8071"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8072" scope="external" format="html" keys="IMPALA-8072"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8073" scope="external" format="html" keys="IMPALA-8073"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8074" scope="external" format="html" keys="IMPALA-8074"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8075" scope="external" format="html" keys="IMPALA-8075"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8076" scope="external" format="html" keys="IMPALA-8076"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8077" scope="external" format="html" keys="IMPALA-8077"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8078" scope="external" format="html" keys="IMPALA-8078"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8079" scope="external" format="html" keys="IMPALA-8079"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8080" scope="external" format="html" keys="IMPALA-8080"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8081" scope="external" format="html" keys="IMPALA-8081"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8082" scope="external" format="html" keys="IMPALA-8082"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8083" scope="external" format="html" keys="IMPALA-8083"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8084" scope="external" format="html" keys="IMPALA-8084"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8085" scope="external" format="html" keys="IMPALA-8085"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8086" scope="external" format="html" keys="IMPALA-8086"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8087" scope="external" format="html" keys="IMPALA-8087"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8088" scope="external" format="html" keys="IMPALA-8088"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8089" scope="external" format="html" keys="IMPALA-8089"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8090" scope="external" format="html" keys="IMPALA-8090"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8091" scope="external" format="html" keys="IMPALA-8091"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8092" scope="external" format="html" keys="IMPALA-8092"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8093" scope="external" format="html" keys="IMPALA-8093"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8094" scope="external" format="html" keys="IMPALA-8094"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8095" scope="external" format="html" keys="IMPALA-8095"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8096" scope="external" format="html" keys="IMPALA-8096"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8097" scope="external" format="html" keys="IMPALA-8097"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8098" scope="external" format="html" keys="IMPALA-8098"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8099" scope="external" format="html" keys="IMPALA-8099"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8100" scope="external" format="html" keys="IMPALA-8100"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8101" scope="external" format="html" keys="IMPALA-8101"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8102" scope="external" format="html" keys="IMPALA-8102"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8103" scope="external" format="html" keys="IMPALA-8103"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8104" scope="external" format="html" keys="IMPALA-8104"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8105" scope="external" format="html" keys="IMPALA-8105"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8106" scope="external" format="html" keys="IMPALA-8106"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8107" scope="external" format="html" keys="IMPALA-8107"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8108" scope="external" format="html" keys="IMPALA-8108"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8109" scope="external" format="html" keys="IMPALA-8109"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8110" scope="external" format="html" keys="IMPALA-8110"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8111" scope="external" format="html" keys="IMPALA-8111"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8112" scope="external" format="html" keys="IMPALA-8112"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8113" scope="external" format="html" keys="IMPALA-8113"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8114" scope="external" format="html" keys="IMPALA-8114"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8115" scope="external" format="html" keys="IMPALA-8115"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8116" scope="external" format="html" keys="IMPALA-8116"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8117" scope="external" format="html" keys="IMPALA-8117"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8118" scope="external" format="html" keys="IMPALA-8118"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8119" scope="external" format="html" keys="IMPALA-8119"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8120" scope="external" format="html" keys="IMPALA-8120"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8121" scope="external" format="html" keys="IMPALA-8121"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8122" scope="external" format="html" keys="IMPALA-8122"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8123" scope="external" format="html" keys="IMPALA-8123"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8124" scope="external" format="html" keys="IMPALA-8124"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8125" scope="external" format="html" keys="IMPALA-8125"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8126" scope="external" format="html" keys="IMPALA-8126"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8127" scope="external" format="html" keys="IMPALA-8127"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8128" scope="external" format="html" keys="IMPALA-8128"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8129" scope="external" format="html" keys="IMPALA-8129"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8130" scope="external" format="html" keys="IMPALA-8130"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8131" scope="external" format="html" keys="IMPALA-8131"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8132" scope="external" format="html" keys="IMPALA-8132"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8133" scope="external" format="html" keys="IMPALA-8133"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8134" scope="external" format="html" keys="IMPALA-8134"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8135" scope="external" format="html" keys="IMPALA-8135"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8136" scope="external" format="html" keys="IMPALA-8136"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8137" scope="external" format="html" keys="IMPALA-8137"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8138" scope="external" format="html" keys="IMPALA-8138"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8139" scope="external" format="html" keys="IMPALA-8139"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8140" scope="external" format="html" keys="IMPALA-8140"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8141" scope="external" format="html" keys="IMPALA-8141"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8142" scope="external" format="html" keys="IMPALA-8142"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8143" scope="external" format="html" keys="IMPALA-8143"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8144" scope="external" format="html" keys="IMPALA-8144"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8145" scope="external" format="html" keys="IMPALA-8145"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8146" scope="external" format="html" keys="IMPALA-8146"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8147" scope="external" format="html" keys="IMPALA-8147"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8148" scope="external" format="html" keys="IMPALA-8148"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8149" scope="external" format="html" keys="IMPALA-8149"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8150" scope="external" format="html" keys="IMPALA-8150"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8151" scope="external" format="html" keys="IMPALA-8151"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8152" scope="external" format="html" keys="IMPALA-8152"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8153" scope="external" format="html" keys="IMPALA-8153"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8154" scope="external" format="html" keys="IMPALA-8154"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8155" scope="external" format="html" keys="IMPALA-8155"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8156" scope="external" format="html" keys="IMPALA-8156"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8157" scope="external" format="html" keys="IMPALA-8157"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8158" scope="external" format="html" keys="IMPALA-8158"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8159" scope="external" format="html" keys="IMPALA-8159"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8160" scope="external" format="html" keys="IMPALA-8160"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8161" scope="external" format="html" keys="IMPALA-8161"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8162" scope="external" format="html" keys="IMPALA-8162"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8163" scope="external" format="html" keys="IMPALA-8163"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8164" scope="external" format="html" keys="IMPALA-8164"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8165" scope="external" format="html" keys="IMPALA-8165"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8166" scope="external" format="html" keys="IMPALA-8166"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8167" scope="external" format="html" keys="IMPALA-8167"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8168" scope="external" format="html" keys="IMPALA-8168"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8169" scope="external" format="html" keys="IMPALA-8169"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8170" scope="external" format="html" keys="IMPALA-8170"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8171" scope="external" format="html" keys="IMPALA-8171"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8172" scope="external" format="html" keys="IMPALA-8172"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8173" scope="external" format="html" keys="IMPALA-8173"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8174" scope="external" format="html" keys="IMPALA-8174"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8175" scope="external" format="html" keys="IMPALA-8175"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8176" scope="external" format="html" keys="IMPALA-8176"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8177" scope="external" format="html" keys="IMPALA-8177"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8178" scope="external" format="html" keys="IMPALA-8178"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8179" scope="external" format="html" keys="IMPALA-8179"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8180" scope="external" format="html" keys="IMPALA-8180"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8181" scope="external" format="html" keys="IMPALA-8181"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8182" scope="external" format="html" keys="IMPALA-8182"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8183" scope="external" format="html" keys="IMPALA-8183"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8184" scope="external" format="html" keys="IMPALA-8184"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8185" scope="external" format="html" keys="IMPALA-8185"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8186" scope="external" format="html" keys="IMPALA-8186"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8187" scope="external" format="html" keys="IMPALA-8187"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8188" scope="external" format="html" keys="IMPALA-8188"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8189" scope="external" format="html" keys="IMPALA-8189"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8190" scope="external" format="html" keys="IMPALA-8190"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8191" scope="external" format="html" keys="IMPALA-8191"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8192" scope="external" format="html" keys="IMPALA-8192"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8193" scope="external" format="html" keys="IMPALA-8193"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8194" scope="external" format="html" keys="IMPALA-8194"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8195" scope="external" format="html" keys="IMPALA-8195"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8196" scope="external" format="html" keys="IMPALA-8196"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8197" scope="external" format="html" keys="IMPALA-8197"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8198" scope="external" format="html" keys="IMPALA-8198"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8199" scope="external" format="html" keys="IMPALA-8199"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8200" scope="external" format="html" keys="IMPALA-8200"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8201" scope="external" format="html" keys="IMPALA-8201"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8202" scope="external" format="html" keys="IMPALA-8202"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8203" scope="external" format="html" keys="IMPALA-8203"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8204" scope="external" format="html" keys="IMPALA-8204"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8205" scope="external" format="html" keys="IMPALA-8205"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8206" scope="external" format="html" keys="IMPALA-8206"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8207" scope="external" format="html" keys="IMPALA-8207"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8208" scope="external" format="html" keys="IMPALA-8208"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8209" scope="external" format="html" keys="IMPALA-8209"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8210" scope="external" format="html" keys="IMPALA-8210"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8211" scope="external" format="html" keys="IMPALA-8211"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8212" scope="external" format="html" keys="IMPALA-8212"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8213" scope="external" format="html" keys="IMPALA-8213"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8214" scope="external" format="html" keys="IMPALA-8214"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8215" scope="external" format="html" keys="IMPALA-8215"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8216" scope="external" format="html" keys="IMPALA-8216"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8217" scope="external" format="html" keys="IMPALA-8217"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8218" scope="external" format="html" keys="IMPALA-8218"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8219" scope="external" format="html" keys="IMPALA-8219"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8220" scope="external" format="html" keys="IMPALA-8220"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8221" scope="external" format="html" keys="IMPALA-8221"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8222" scope="external" format="html" keys="IMPALA-8222"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8223" scope="external" format="html" keys="IMPALA-8223"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8224" scope="external" format="html" keys="IMPALA-8224"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8225" scope="external" format="html" keys="IMPALA-8225"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8226" scope="external" format="html" keys="IMPALA-8226"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8227" scope="external" format="html" keys="IMPALA-8227"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8228" scope="external" format="html" keys="IMPALA-8228"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8229" scope="external" format="html" keys="IMPALA-8229"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8230" scope="external" format="html" keys="IMPALA-8230"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8231" scope="external" format="html" keys="IMPALA-8231"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8232" scope="external" format="html" keys="IMPALA-8232"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8233" scope="external" format="html" keys="IMPALA-8233"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8234" scope="external" format="html" keys="IMPALA-8234"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8235" scope="external" format="html" keys="IMPALA-8235"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8236" scope="external" format="html" keys="IMPALA-8236"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8237" scope="external" format="html" keys="IMPALA-8237"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8238" scope="external" format="html" keys="IMPALA-8238"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8239" scope="external" format="html" keys="IMPALA-8239"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8240" scope="external" format="html" keys="IMPALA-8240"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8241" scope="external" format="html" keys="IMPALA-8241"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8242" scope="external" format="html" keys="IMPALA-8242"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8243" scope="external" format="html" keys="IMPALA-8243"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8244" scope="external" format="html" keys="IMPALA-8244"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8245" scope="external" format="html" keys="IMPALA-8245"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8246" scope="external" format="html" keys="IMPALA-8246"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8247" scope="external" format="html" keys="IMPALA-8247"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8248" scope="external" format="html" keys="IMPALA-8248"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8249" scope="external" format="html" keys="IMPALA-8249"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8250" scope="external" format="html" keys="IMPALA-8250"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8251" scope="external" format="html" keys="IMPALA-8251"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8252" scope="external" format="html" keys="IMPALA-8252"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8253" scope="external" format="html" keys="IMPALA-8253"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8254" scope="external" format="html" keys="IMPALA-8254"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8255" scope="external" format="html" keys="IMPALA-8255"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8256" scope="external" format="html" keys="IMPALA-8256"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8257" scope="external" format="html" keys="IMPALA-8257"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8258" scope="external" format="html" keys="IMPALA-8258"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8259" scope="external" format="html" keys="IMPALA-8259"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8260" scope="external" format="html" keys="IMPALA-8260"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8261" scope="external" format="html" keys="IMPALA-8261"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8262" scope="external" format="html" keys="IMPALA-8262"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8263" scope="external" format="html" keys="IMPALA-8263"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8264" scope="external" format="html" keys="IMPALA-8264"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8265" scope="external" format="html" keys="IMPALA-8265"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8266" scope="external" format="html" keys="IMPALA-8266"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8267" scope="external" format="html" keys="IMPALA-8267"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8268" scope="external" format="html" keys="IMPALA-8268"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8269" scope="external" format="html" keys="IMPALA-8269"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8270" scope="external" format="html" keys="IMPALA-8270"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8271" scope="external" format="html" keys="IMPALA-8271"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8272" scope="external" format="html" keys="IMPALA-8272"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8273" scope="external" format="html" keys="IMPALA-8273"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8274" scope="external" format="html" keys="IMPALA-8274"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8275" scope="external" format="html" keys="IMPALA-8275"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8276" scope="external" format="html" keys="IMPALA-8276"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8277" scope="external" format="html" keys="IMPALA-8277"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8278" scope="external" format="html" keys="IMPALA-8278"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8279" scope="external" format="html" keys="IMPALA-8279"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8280" scope="external" format="html" keys="IMPALA-8280"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8281" scope="external" format="html" keys="IMPALA-8281"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8282" scope="external" format="html" keys="IMPALA-8282"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8283" scope="external" format="html" keys="IMPALA-8283"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8284" scope="external" format="html" keys="IMPALA-8284"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8285" scope="external" format="html" keys="IMPALA-8285"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8286" scope="external" format="html" keys="IMPALA-8286"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8287" scope="external" format="html" keys="IMPALA-8287"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8288" scope="external" format="html" keys="IMPALA-8288"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8289" scope="external" format="html" keys="IMPALA-8289"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8290" scope="external" format="html" keys="IMPALA-8290"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8291" scope="external" format="html" keys="IMPALA-8291"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8292" scope="external" format="html" keys="IMPALA-8292"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8293" scope="external" format="html" keys="IMPALA-8293"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8294" scope="external" format="html" keys="IMPALA-8294"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8295" scope="external" format="html" keys="IMPALA-8295"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8296" scope="external" format="html" keys="IMPALA-8296"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8297" scope="external" format="html" keys="IMPALA-8297"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8298" scope="external" format="html" keys="IMPALA-8298"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8299" scope="external" format="html" keys="IMPALA-8299"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8300" scope="external" format="html" keys="IMPALA-8300"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8301" scope="external" format="html" keys="IMPALA-8301"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8302" scope="external" format="html" keys="IMPALA-8302"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8303" scope="external" format="html" keys="IMPALA-8303"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8304" scope="external" format="html" keys="IMPALA-8304"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8305" scope="external" format="html" keys="IMPALA-8305"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8306" scope="external" format="html" keys="IMPALA-8306"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8307" scope="external" format="html" keys="IMPALA-8307"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8308" scope="external" format="html" keys="IMPALA-8308"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8309" scope="external" format="html" keys="IMPALA-8309"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8310" scope="external" format="html" keys="IMPALA-8310"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8311" scope="external" format="html" keys="IMPALA-8311"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8312" scope="external" format="html" keys="IMPALA-8312"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8313" scope="external" format="html" keys="IMPALA-8313"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8314" scope="external" format="html" keys="IMPALA-8314"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8315" scope="external" format="html" keys="IMPALA-8315"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8316" scope="external" format="html" keys="IMPALA-8316"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8317" scope="external" format="html" keys="IMPALA-8317"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8318" scope="external" format="html" keys="IMPALA-8318"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8319" scope="external" format="html" keys="IMPALA-8319"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8320" scope="external" format="html" keys="IMPALA-8320"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8321" scope="external" format="html" keys="IMPALA-8321"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8322" scope="external" format="html" keys="IMPALA-8322"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8323" scope="external" format="html" keys="IMPALA-8323"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8324" scope="external" format="html" keys="IMPALA-8324"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8325" scope="external" format="html" keys="IMPALA-8325"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8326" scope="external" format="html" keys="IMPALA-8326"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8327" scope="external" format="html" keys="IMPALA-8327"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8328" scope="external" format="html" keys="IMPALA-8328"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8329" scope="external" format="html" keys="IMPALA-8329"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8330" scope="external" format="html" keys="IMPALA-8330"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8331" scope="external" format="html" keys="IMPALA-8331"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8332" scope="external" format="html" keys="IMPALA-8332"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8333" scope="external" format="html" keys="IMPALA-8333"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8334" scope="external" format="html" keys="IMPALA-8334"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8335" scope="external" format="html" keys="IMPALA-8335"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8336" scope="external" format="html" keys="IMPALA-8336"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8337" scope="external" format="html" keys="IMPALA-8337"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8338" scope="external" format="html" keys="IMPALA-8338"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8339" scope="external" format="html" keys="IMPALA-8339"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8340" scope="external" format="html" keys="IMPALA-8340"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8341" scope="external" format="html" keys="IMPALA-8341"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8342" scope="external" format="html" keys="IMPALA-8342"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8343" scope="external" format="html" keys="IMPALA-8343"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8344" scope="external" format="html" keys="IMPALA-8344"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8345" scope="external" format="html" keys="IMPALA-8345"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8346" scope="external" format="html" keys="IMPALA-8346"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8347" scope="external" format="html" keys="IMPALA-8347"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8348" scope="external" format="html" keys="IMPALA-8348"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8349" scope="external" format="html" keys="IMPALA-8349"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8350" scope="external" format="html" keys="IMPALA-8350"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8351" scope="external" format="html" keys="IMPALA-8351"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8352" scope="external" format="html" keys="IMPALA-8352"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8353" scope="external" format="html" keys="IMPALA-8353"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8354" scope="external" format="html" keys="IMPALA-8354"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8355" scope="external" format="html" keys="IMPALA-8355"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8356" scope="external" format="html" keys="IMPALA-8356"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8357" scope="external" format="html" keys="IMPALA-8357"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8358" scope="external" format="html" keys="IMPALA-8358"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8359" scope="external" format="html" keys="IMPALA-8359"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8360" scope="external" format="html" keys="IMPALA-8360"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8361" scope="external" format="html" keys="IMPALA-8361"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8362" scope="external" format="html" keys="IMPALA-8362"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8363" scope="external" format="html" keys="IMPALA-8363"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8364" scope="external" format="html" keys="IMPALA-8364"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8365" scope="external" format="html" keys="IMPALA-8365"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8366" scope="external" format="html" keys="IMPALA-8366"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8367" scope="external" format="html" keys="IMPALA-8367"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8368" scope="external" format="html" keys="IMPALA-8368"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8369" scope="external" format="html" keys="IMPALA-8369"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8370" scope="external" format="html" keys="IMPALA-8370"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8371" scope="external" format="html" keys="IMPALA-8371"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8372" scope="external" format="html" keys="IMPALA-8372"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8373" scope="external" format="html" keys="IMPALA-8373"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8374" scope="external" format="html" keys="IMPALA-8374"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8375" scope="external" format="html" keys="IMPALA-8375"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8376" scope="external" format="html" keys="IMPALA-8376"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8377" scope="external" format="html" keys="IMPALA-8377"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8378" scope="external" format="html" keys="IMPALA-8378"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8379" scope="external" format="html" keys="IMPALA-8379"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8380" scope="external" format="html" keys="IMPALA-8380"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8381" scope="external" format="html" keys="IMPALA-8381"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8382" scope="external" format="html" keys="IMPALA-8382"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8383" scope="external" format="html" keys="IMPALA-8383"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8384" scope="external" format="html" keys="IMPALA-8384"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8385" scope="external" format="html" keys="IMPALA-8385"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8386" scope="external" format="html" keys="IMPALA-8386"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8387" scope="external" format="html" keys="IMPALA-8387"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8388" scope="external" format="html" keys="IMPALA-8388"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8389" scope="external" format="html" keys="IMPALA-8389"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8390" scope="external" format="html" keys="IMPALA-8390"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8391" scope="external" format="html" keys="IMPALA-8391"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8392" scope="external" format="html" keys="IMPALA-8392"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8393" scope="external" format="html" keys="IMPALA-8393"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8394" scope="external" format="html" keys="IMPALA-8394"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8395" scope="external" format="html" keys="IMPALA-8395"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8396" scope="external" format="html" keys="IMPALA-8396"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8397" scope="external" format="html" keys="IMPALA-8397"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8398" scope="external" format="html" keys="IMPALA-8398"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8399" scope="external" format="html" keys="IMPALA-8399"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8400" scope="external" format="html" keys="IMPALA-8400"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8401" scope="external" format="html" keys="IMPALA-8401"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8402" scope="external" format="html" keys="IMPALA-8402"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8403" scope="external" format="html" keys="IMPALA-8403"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8404" scope="external" format="html" keys="IMPALA-8404"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8405" scope="external" format="html" keys="IMPALA-8405"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8406" scope="external" format="html" keys="IMPALA-8406"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8407" scope="external" format="html" keys="IMPALA-8407"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8408" scope="external" format="html" keys="IMPALA-8408"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8409" scope="external" format="html" keys="IMPALA-8409"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8410" scope="external" format="html" keys="IMPALA-8410"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8411" scope="external" format="html" keys="IMPALA-8411"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8412" scope="external" format="html" keys="IMPALA-8412"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8413" scope="external" format="html" keys="IMPALA-8413"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8414" scope="external" format="html" keys="IMPALA-8414"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8415" scope="external" format="html" keys="IMPALA-8415"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8416" scope="external" format="html" keys="IMPALA-8416"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8417" scope="external" format="html" keys="IMPALA-8417"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8418" scope="external" format="html" keys="IMPALA-8418"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8419" scope="external" format="html" keys="IMPALA-8419"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8420" scope="external" format="html" keys="IMPALA-8420"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8421" scope="external" format="html" keys="IMPALA-8421"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8422" scope="external" format="html" keys="IMPALA-8422"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8423" scope="external" format="html" keys="IMPALA-8423"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8424" scope="external" format="html" keys="IMPALA-8424"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8425" scope="external" format="html" keys="IMPALA-8425"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8426" scope="external" format="html" keys="IMPALA-8426"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8427" scope="external" format="html" keys="IMPALA-8427"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8428" scope="external" format="html" keys="IMPALA-8428"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8429" scope="external" format="html" keys="IMPALA-8429"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8430" scope="external" format="html" keys="IMPALA-8430"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8431" scope="external" format="html" keys="IMPALA-8431"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8432" scope="external" format="html" keys="IMPALA-8432"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8433" scope="external" format="html" keys="IMPALA-8433"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8434" scope="external" format="html" keys="IMPALA-8434"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8435" scope="external" format="html" keys="IMPALA-8435"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8436" scope="external" format="html" keys="IMPALA-8436"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8437" scope="external" format="html" keys="IMPALA-8437"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8438" scope="external" format="html" keys="IMPALA-8438"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8439" scope="external" format="html" keys="IMPALA-8439"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8440" scope="external" format="html" keys="IMPALA-8440"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8441" scope="external" format="html" keys="IMPALA-8441"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8442" scope="external" format="html" keys="IMPALA-8442"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8443" scope="external" format="html" keys="IMPALA-8443"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8444" scope="external" format="html" keys="IMPALA-8444"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8445" scope="external" format="html" keys="IMPALA-8445"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8446" scope="external" format="html" keys="IMPALA-8446"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8447" scope="external" format="html" keys="IMPALA-8447"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8448" scope="external" format="html" keys="IMPALA-8448"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8449" scope="external" format="html" keys="IMPALA-8449"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8450" scope="external" format="html" keys="IMPALA-8450"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8451" scope="external" format="html" keys="IMPALA-8451"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8452" scope="external" format="html" keys="IMPALA-8452"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8453" scope="external" format="html" keys="IMPALA-8453"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8454" scope="external" format="html" keys="IMPALA-8454"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8455" scope="external" format="html" keys="IMPALA-8455"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8456" scope="external" format="html" keys="IMPALA-8456"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8457" scope="external" format="html" keys="IMPALA-8457"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8458" scope="external" format="html" keys="IMPALA-8458"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8459" scope="external" format="html" keys="IMPALA-8459"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8460" scope="external" format="html" keys="IMPALA-8460"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8461" scope="external" format="html" keys="IMPALA-8461"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8462" scope="external" format="html" keys="IMPALA-8462"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8463" scope="external" format="html" keys="IMPALA-8463"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8464" scope="external" format="html" keys="IMPALA-8464"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8465" scope="external" format="html" keys="IMPALA-8465"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8466" scope="external" format="html" keys="IMPALA-8466"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8467" scope="external" format="html" keys="IMPALA-8467"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8468" scope="external" format="html" keys="IMPALA-8468"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8469" scope="external" format="html" keys="IMPALA-8469"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8470" scope="external" format="html" keys="IMPALA-8470"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8471" scope="external" format="html" keys="IMPALA-8471"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8472" scope="external" format="html" keys="IMPALA-8472"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8473" scope="external" format="html" keys="IMPALA-8473"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8474" scope="external" format="html" keys="IMPALA-8474"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8475" scope="external" format="html" keys="IMPALA-8475"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8476" scope="external" format="html" keys="IMPALA-8476"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8477" scope="external" format="html" keys="IMPALA-8477"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8478" scope="external" format="html" keys="IMPALA-8478"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8479" scope="external" format="html" keys="IMPALA-8479"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8480" scope="external" format="html" keys="IMPALA-8480"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8481" scope="external" format="html" keys="IMPALA-8481"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8482" scope="external" format="html" keys="IMPALA-8482"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8483" scope="external" format="html" keys="IMPALA-8483"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8484" scope="external" format="html" keys="IMPALA-8484"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8485" scope="external" format="html" keys="IMPALA-8485"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8486" scope="external" format="html" keys="IMPALA-8486"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8487" scope="external" format="html" keys="IMPALA-8487"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8488" scope="external" format="html" keys="IMPALA-8488"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8489" scope="external" format="html" keys="IMPALA-8489"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8490" scope="external" format="html" keys="IMPALA-8490"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8491" scope="external" format="html" keys="IMPALA-8491"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8492" scope="external" format="html" keys="IMPALA-8492"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8493" scope="external" format="html" keys="IMPALA-8493"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8494" scope="external" format="html" keys="IMPALA-8494"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8495" scope="external" format="html" keys="IMPALA-8495"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8496" scope="external" format="html" keys="IMPALA-8496"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8497" scope="external" format="html" keys="IMPALA-8497"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8498" scope="external" format="html" keys="IMPALA-8498"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8499" scope="external" format="html" keys="IMPALA-8499"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8500" scope="external" format="html" keys="IMPALA-8500"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8501" scope="external" format="html" keys="IMPALA-8501"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8502" scope="external" format="html" keys="IMPALA-8502"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8503" scope="external" format="html" keys="IMPALA-8503"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8504" scope="external" format="html" keys="IMPALA-8504"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8505" scope="external" format="html" keys="IMPALA-8505"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8506" scope="external" format="html" keys="IMPALA-8506"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8507" scope="external" format="html" keys="IMPALA-8507"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8508" scope="external" format="html" keys="IMPALA-8508"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8509" scope="external" format="html" keys="IMPALA-8509"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8510" scope="external" format="html" keys="IMPALA-8510"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8511" scope="external" format="html" keys="IMPALA-8511"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8512" scope="external" format="html" keys="IMPALA-8512"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8513" scope="external" format="html" keys="IMPALA-8513"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8514" scope="external" format="html" keys="IMPALA-8514"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8515" scope="external" format="html" keys="IMPALA-8515"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8516" scope="external" format="html" keys="IMPALA-8516"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8517" scope="external" format="html" keys="IMPALA-8517"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8518" scope="external" format="html" keys="IMPALA-8518"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8519" scope="external" format="html" keys="IMPALA-8519"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8520" scope="external" format="html" keys="IMPALA-8520"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8521" scope="external" format="html" keys="IMPALA-8521"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8522" scope="external" format="html" keys="IMPALA-8522"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8523" scope="external" format="html" keys="IMPALA-8523"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8524" scope="external" format="html" keys="IMPALA-8524"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8525" scope="external" format="html" keys="IMPALA-8525"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8526" scope="external" format="html" keys="IMPALA-8526"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8527" scope="external" format="html" keys="IMPALA-8527"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8528" scope="external" format="html" keys="IMPALA-8528"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8529" scope="external" format="html" keys="IMPALA-8529"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8530" scope="external" format="html" keys="IMPALA-8530"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8531" scope="external" format="html" keys="IMPALA-8531"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8532" scope="external" format="html" keys="IMPALA-8532"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8533" scope="external" format="html" keys="IMPALA-8533"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8534" scope="external" format="html" keys="IMPALA-8534"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8535" scope="external" format="html" keys="IMPALA-8535"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8536" scope="external" format="html" keys="IMPALA-8536"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8537" scope="external" format="html" keys="IMPALA-8537"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8538" scope="external" format="html" keys="IMPALA-8538"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8539" scope="external" format="html" keys="IMPALA-8539"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8540" scope="external" format="html" keys="IMPALA-8540"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8541" scope="external" format="html" keys="IMPALA-8541"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8542" scope="external" format="html" keys="IMPALA-8542"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8543" scope="external" format="html" keys="IMPALA-8543"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8544" scope="external" format="html" keys="IMPALA-8544"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8545" scope="external" format="html" keys="IMPALA-8545"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8546" scope="external" format="html" keys="IMPALA-8546"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8547" scope="external" format="html" keys="IMPALA-8547"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8548" scope="external" format="html" keys="IMPALA-8548"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8549" scope="external" format="html" keys="IMPALA-8549"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8550" scope="external" format="html" keys="IMPALA-8550"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8551" scope="external" format="html" keys="IMPALA-8551"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8552" scope="external" format="html" keys="IMPALA-8552"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8553" scope="external" format="html" keys="IMPALA-8553"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8554" scope="external" format="html" keys="IMPALA-8554"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8555" scope="external" format="html" keys="IMPALA-8555"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8556" scope="external" format="html" keys="IMPALA-8556"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8557" scope="external" format="html" keys="IMPALA-8557"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8558" scope="external" format="html" keys="IMPALA-8558"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8559" scope="external" format="html" keys="IMPALA-8559"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8560" scope="external" format="html" keys="IMPALA-8560"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8561" scope="external" format="html" keys="IMPALA-8561"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8562" scope="external" format="html" keys="IMPALA-8562"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8563" scope="external" format="html" keys="IMPALA-8563"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8564" scope="external" format="html" keys="IMPALA-8564"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8565" scope="external" format="html" keys="IMPALA-8565"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8566" scope="external" format="html" keys="IMPALA-8566"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8567" scope="external" format="html" keys="IMPALA-8567"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8568" scope="external" format="html" keys="IMPALA-8568"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8569" scope="external" format="html" keys="IMPALA-8569"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8570" scope="external" format="html" keys="IMPALA-8570"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8571" scope="external" format="html" keys="IMPALA-8571"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8572" scope="external" format="html" keys="IMPALA-8572"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8573" scope="external" format="html" keys="IMPALA-8573"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8574" scope="external" format="html" keys="IMPALA-8574"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8575" scope="external" format="html" keys="IMPALA-8575"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8576" scope="external" format="html" keys="IMPALA-8576"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8577" scope="external" format="html" keys="IMPALA-8577"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8578" scope="external" format="html" keys="IMPALA-8578"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8579" scope="external" format="html" keys="IMPALA-8579"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8580" scope="external" format="html" keys="IMPALA-8580"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8581" scope="external" format="html" keys="IMPALA-8581"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8582" scope="external" format="html" keys="IMPALA-8582"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8583" scope="external" format="html" keys="IMPALA-8583"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8584" scope="external" format="html" keys="IMPALA-8584"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8585" scope="external" format="html" keys="IMPALA-8585"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8586" scope="external" format="html" keys="IMPALA-8586"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8587" scope="external" format="html" keys="IMPALA-8587"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8588" scope="external" format="html" keys="IMPALA-8588"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8589" scope="external" format="html" keys="IMPALA-8589"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8590" scope="external" format="html" keys="IMPALA-8590"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8591" scope="external" format="html" keys="IMPALA-8591"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8592" scope="external" format="html" keys="IMPALA-8592"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8593" scope="external" format="html" keys="IMPALA-8593"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8594" scope="external" format="html" keys="IMPALA-8594"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8595" scope="external" format="html" keys="IMPALA-8595"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8596" scope="external" format="html" keys="IMPALA-8596"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8597" scope="external" format="html" keys="IMPALA-8597"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8598" scope="external" format="html" keys="IMPALA-8598"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8599" scope="external" format="html" keys="IMPALA-8599"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8600" scope="external" format="html" keys="IMPALA-8600"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8601" scope="external" format="html" keys="IMPALA-8601"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8602" scope="external" format="html" keys="IMPALA-8602"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8603" scope="external" format="html" keys="IMPALA-8603"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8604" scope="external" format="html" keys="IMPALA-8604"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8605" scope="external" format="html" keys="IMPALA-8605"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8606" scope="external" format="html" keys="IMPALA-8606"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8607" scope="external" format="html" keys="IMPALA-8607"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8608" scope="external" format="html" keys="IMPALA-8608"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8609" scope="external" format="html" keys="IMPALA-8609"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8610" scope="external" format="html" keys="IMPALA-8610"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8611" scope="external" format="html" keys="IMPALA-8611"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8612" scope="external" format="html" keys="IMPALA-8612"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8613" scope="external" format="html" keys="IMPALA-8613"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8614" scope="external" format="html" keys="IMPALA-8614"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8615" scope="external" format="html" keys="IMPALA-8615"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8616" scope="external" format="html" keys="IMPALA-8616"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8617" scope="external" format="html" keys="IMPALA-8617"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8618" scope="external" format="html" keys="IMPALA-8618"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8619" scope="external" format="html" keys="IMPALA-8619"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8620" scope="external" format="html" keys="IMPALA-8620"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8621" scope="external" format="html" keys="IMPALA-8621"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8622" scope="external" format="html" keys="IMPALA-8622"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8623" scope="external" format="html" keys="IMPALA-8623"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8624" scope="external" format="html" keys="IMPALA-8624"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8625" scope="external" format="html" keys="IMPALA-8625"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8626" scope="external" format="html" keys="IMPALA-8626"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8627" scope="external" format="html" keys="IMPALA-8627"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8628" scope="external" format="html" keys="IMPALA-8628"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8629" scope="external" format="html" keys="IMPALA-8629"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8630" scope="external" format="html" keys="IMPALA-8630"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8631" scope="external" format="html" keys="IMPALA-8631"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8632" scope="external" format="html" keys="IMPALA-8632"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8633" scope="external" format="html" keys="IMPALA-8633"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8634" scope="external" format="html" keys="IMPALA-8634"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8635" scope="external" format="html" keys="IMPALA-8635"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8636" scope="external" format="html" keys="IMPALA-8636"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8637" scope="external" format="html" keys="IMPALA-8637"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8638" scope="external" format="html" keys="IMPALA-8638"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8639" scope="external" format="html" keys="IMPALA-8639"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8640" scope="external" format="html" keys="IMPALA-8640"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8641" scope="external" format="html" keys="IMPALA-8641"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8642" scope="external" format="html" keys="IMPALA-8642"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8643" scope="external" format="html" keys="IMPALA-8643"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8644" scope="external" format="html" keys="IMPALA-8644"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8645" scope="external" format="html" keys="IMPALA-8645"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8646" scope="external" format="html" keys="IMPALA-8646"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8647" scope="external" format="html" keys="IMPALA-8647"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8648" scope="external" format="html" keys="IMPALA-8648"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8649" scope="external" format="html" keys="IMPALA-8649"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8650" scope="external" format="html" keys="IMPALA-8650"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8651" scope="external" format="html" keys="IMPALA-8651"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8652" scope="external" format="html" keys="IMPALA-8652"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8653" scope="external" format="html" keys="IMPALA-8653"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8654" scope="external" format="html" keys="IMPALA-8654"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8655" scope="external" format="html" keys="IMPALA-8655"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8656" scope="external" format="html" keys="IMPALA-8656"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8657" scope="external" format="html" keys="IMPALA-8657"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8658" scope="external" format="html" keys="IMPALA-8658"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8659" scope="external" format="html" keys="IMPALA-8659"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8660" scope="external" format="html" keys="IMPALA-8660"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8661" scope="external" format="html" keys="IMPALA-8661"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8662" scope="external" format="html" keys="IMPALA-8662"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8663" scope="external" format="html" keys="IMPALA-8663"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8664" scope="external" format="html" keys="IMPALA-8664"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8665" scope="external" format="html" keys="IMPALA-8665"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8666" scope="external" format="html" keys="IMPALA-8666"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8667" scope="external" format="html" keys="IMPALA-8667"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8668" scope="external" format="html" keys="IMPALA-8668"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8669" scope="external" format="html" keys="IMPALA-8669"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8670" scope="external" format="html" keys="IMPALA-8670"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8671" scope="external" format="html" keys="IMPALA-8671"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8672" scope="external" format="html" keys="IMPALA-8672"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8673" scope="external" format="html" keys="IMPALA-8673"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8674" scope="external" format="html" keys="IMPALA-8674"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8675" scope="external" format="html" keys="IMPALA-8675"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8676" scope="external" format="html" keys="IMPALA-8676"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8677" scope="external" format="html" keys="IMPALA-8677"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8678" scope="external" format="html" keys="IMPALA-8678"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8679" scope="external" format="html" keys="IMPALA-8679"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8680" scope="external" format="html" keys="IMPALA-8680"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8681" scope="external" format="html" keys="IMPALA-8681"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8682" scope="external" format="html" keys="IMPALA-8682"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8683" scope="external" format="html" keys="IMPALA-8683"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8684" scope="external" format="html" keys="IMPALA-8684"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8685" scope="external" format="html" keys="IMPALA-8685"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8686" scope="external" format="html" keys="IMPALA-8686"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8687" scope="external" format="html" keys="IMPALA-8687"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8688" scope="external" format="html" keys="IMPALA-8688"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8689" scope="external" format="html" keys="IMPALA-8689"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8690" scope="external" format="html" keys="IMPALA-8690"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8691" scope="external" format="html" keys="IMPALA-8691"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8692" scope="external" format="html" keys="IMPALA-8692"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8693" scope="external" format="html" keys="IMPALA-8693"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8694" scope="external" format="html" keys="IMPALA-8694"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8695" scope="external" format="html" keys="IMPALA-8695"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8696" scope="external" format="html" keys="IMPALA-8696"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8697" scope="external" format="html" keys="IMPALA-8697"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8698" scope="external" format="html" keys="IMPALA-8698"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8699" scope="external" format="html" keys="IMPALA-8699"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8700" scope="external" format="html" keys="IMPALA-8700"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8701" scope="external" format="html" keys="IMPALA-8701"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8702" scope="external" format="html" keys="IMPALA-8702"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8703" scope="external" format="html" keys="IMPALA-8703"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8704" scope="external" format="html" keys="IMPALA-8704"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8705" scope="external" format="html" keys="IMPALA-8705"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8706" scope="external" format="html" keys="IMPALA-8706"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8707" scope="external" format="html" keys="IMPALA-8707"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8708" scope="external" format="html" keys="IMPALA-8708"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8709" scope="external" format="html" keys="IMPALA-8709"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8710" scope="external" format="html" keys="IMPALA-8710"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8711" scope="external" format="html" keys="IMPALA-8711"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8712" scope="external" format="html" keys="IMPALA-8712"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8713" scope="external" format="html" keys="IMPALA-8713"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8714" scope="external" format="html" keys="IMPALA-8714"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8715" scope="external" format="html" keys="IMPALA-8715"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8716" scope="external" format="html" keys="IMPALA-8716"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8717" scope="external" format="html" keys="IMPALA-8717"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8718" scope="external" format="html" keys="IMPALA-8718"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8719" scope="external" format="html" keys="IMPALA-8719"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8720" scope="external" format="html" keys="IMPALA-8720"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8721" scope="external" format="html" keys="IMPALA-8721"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8722" scope="external" format="html" keys="IMPALA-8722"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8723" scope="external" format="html" keys="IMPALA-8723"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8724" scope="external" format="html" keys="IMPALA-8724"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8725" scope="external" format="html" keys="IMPALA-8725"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8726" scope="external" format="html" keys="IMPALA-8726"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8727" scope="external" format="html" keys="IMPALA-8727"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8728" scope="external" format="html" keys="IMPALA-8728"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8729" scope="external" format="html" keys="IMPALA-8729"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8730" scope="external" format="html" keys="IMPALA-8730"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8731" scope="external" format="html" keys="IMPALA-8731"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8732" scope="external" format="html" keys="IMPALA-8732"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8733" scope="external" format="html" keys="IMPALA-8733"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8734" scope="external" format="html" keys="IMPALA-8734"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8735" scope="external" format="html" keys="IMPALA-8735"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8736" scope="external" format="html" keys="IMPALA-8736"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8737" scope="external" format="html" keys="IMPALA-8737"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8738" scope="external" format="html" keys="IMPALA-8738"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8739" scope="external" format="html" keys="IMPALA-8739"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8740" scope="external" format="html" keys="IMPALA-8740"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8741" scope="external" format="html" keys="IMPALA-8741"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8742" scope="external" format="html" keys="IMPALA-8742"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8743" scope="external" format="html" keys="IMPALA-8743"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8744" scope="external" format="html" keys="IMPALA-8744"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8745" scope="external" format="html" keys="IMPALA-8745"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8746" scope="external" format="html" keys="IMPALA-8746"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8747" scope="external" format="html" keys="IMPALA-8747"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8748" scope="external" format="html" keys="IMPALA-8748"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8749" scope="external" format="html" keys="IMPALA-8749"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8750" scope="external" format="html" keys="IMPALA-8750"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8751" scope="external" format="html" keys="IMPALA-8751"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8752" scope="external" format="html" keys="IMPALA-8752"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8753" scope="external" format="html" keys="IMPALA-8753"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8754" scope="external" format="html" keys="IMPALA-8754"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8755" scope="external" format="html" keys="IMPALA-8755"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8756" scope="external" format="html" keys="IMPALA-8756"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8757" scope="external" format="html" keys="IMPALA-8757"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8758" scope="external" format="html" keys="IMPALA-8758"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8759" scope="external" format="html" keys="IMPALA-8759"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8760" scope="external" format="html" keys="IMPALA-8760"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8761" scope="external" format="html" keys="IMPALA-8761"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8762" scope="external" format="html" keys="IMPALA-8762"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8763" scope="external" format="html" keys="IMPALA-8763"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8764" scope="external" format="html" keys="IMPALA-8764"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8765" scope="external" format="html" keys="IMPALA-8765"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8766" scope="external" format="html" keys="IMPALA-8766"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8767" scope="external" format="html" keys="IMPALA-8767"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8768" scope="external" format="html" keys="IMPALA-8768"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8769" scope="external" format="html" keys="IMPALA-8769"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8770" scope="external" format="html" keys="IMPALA-8770"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8771" scope="external" format="html" keys="IMPALA-8771"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8772" scope="external" format="html" keys="IMPALA-8772"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8773" scope="external" format="html" keys="IMPALA-8773"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8774" scope="external" format="html" keys="IMPALA-8774"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8775" scope="external" format="html" keys="IMPALA-8775"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8776" scope="external" format="html" keys="IMPALA-8776"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8777" scope="external" format="html" keys="IMPALA-8777"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8778" scope="external" format="html" keys="IMPALA-8778"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8779" scope="external" format="html" keys="IMPALA-8779"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8780" scope="external" format="html" keys="IMPALA-8780"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8781" scope="external" format="html" keys="IMPALA-8781"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8782" scope="external" format="html" keys="IMPALA-8782"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8783" scope="external" format="html" keys="IMPALA-8783"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8784" scope="external" format="html" keys="IMPALA-8784"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8785" scope="external" format="html" keys="IMPALA-8785"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8786" scope="external" format="html" keys="IMPALA-8786"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8787" scope="external" format="html" keys="IMPALA-8787"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8788" scope="external" format="html" keys="IMPALA-8788"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8789" scope="external" format="html" keys="IMPALA-8789"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8790" scope="external" format="html" keys="IMPALA-8790"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8791" scope="external" format="html" keys="IMPALA-8791"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8792" scope="external" format="html" keys="IMPALA-8792"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8793" scope="external" format="html" keys="IMPALA-8793"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8794" scope="external" format="html" keys="IMPALA-8794"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8795" scope="external" format="html" keys="IMPALA-8795"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8796" scope="external" format="html" keys="IMPALA-8796"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8797" scope="external" format="html" keys="IMPALA-8797"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8798" scope="external" format="html" keys="IMPALA-8798"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8799" scope="external" format="html" keys="IMPALA-8799"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8800" scope="external" format="html" keys="IMPALA-8800"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8801" scope="external" format="html" keys="IMPALA-8801"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8802" scope="external" format="html" keys="IMPALA-8802"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8803" scope="external" format="html" keys="IMPALA-8803"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8804" scope="external" format="html" keys="IMPALA-8804"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8805" scope="external" format="html" keys="IMPALA-8805"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8806" scope="external" format="html" keys="IMPALA-8806"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8807" scope="external" format="html" keys="IMPALA-8807"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8808" scope="external" format="html" keys="IMPALA-8808"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8809" scope="external" format="html" keys="IMPALA-8809"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8810" scope="external" format="html" keys="IMPALA-8810"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8811" scope="external" format="html" keys="IMPALA-8811"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8812" scope="external" format="html" keys="IMPALA-8812"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8813" scope="external" format="html" keys="IMPALA-8813"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8814" scope="external" format="html" keys="IMPALA-8814"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8815" scope="external" format="html" keys="IMPALA-8815"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8816" scope="external" format="html" keys="IMPALA-8816"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8817" scope="external" format="html" keys="IMPALA-8817"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8818" scope="external" format="html" keys="IMPALA-8818"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8819" scope="external" format="html" keys="IMPALA-8819"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8820" scope="external" format="html" keys="IMPALA-8820"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8821" scope="external" format="html" keys="IMPALA-8821"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8822" scope="external" format="html" keys="IMPALA-8822"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8823" scope="external" format="html" keys="IMPALA-8823"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8824" scope="external" format="html" keys="IMPALA-8824"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8825" scope="external" format="html" keys="IMPALA-8825"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8826" scope="external" format="html" keys="IMPALA-8826"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8827" scope="external" format="html" keys="IMPALA-8827"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8828" scope="external" format="html" keys="IMPALA-8828"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8829" scope="external" format="html" keys="IMPALA-8829"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8830" scope="external" format="html" keys="IMPALA-8830"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8831" scope="external" format="html" keys="IMPALA-8831"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8832" scope="external" format="html" keys="IMPALA-8832"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8833" scope="external" format="html" keys="IMPALA-8833"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8834" scope="external" format="html" keys="IMPALA-8834"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8835" scope="external" format="html" keys="IMPALA-8835"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8836" scope="external" format="html" keys="IMPALA-8836"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8837" scope="external" format="html" keys="IMPALA-8837"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8838" scope="external" format="html" keys="IMPALA-8838"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8839" scope="external" format="html" keys="IMPALA-8839"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8840" scope="external" format="html" keys="IMPALA-8840"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8841" scope="external" format="html" keys="IMPALA-8841"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8842" scope="external" format="html" keys="IMPALA-8842"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8843" scope="external" format="html" keys="IMPALA-8843"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8844" scope="external" format="html" keys="IMPALA-8844"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8845" scope="external" format="html" keys="IMPALA-8845"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8846" scope="external" format="html" keys="IMPALA-8846"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8847" scope="external" format="html" keys="IMPALA-8847"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8848" scope="external" format="html" keys="IMPALA-8848"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8849" scope="external" format="html" keys="IMPALA-8849"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8850" scope="external" format="html" keys="IMPALA-8850"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8851" scope="external" format="html" keys="IMPALA-8851"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8852" scope="external" format="html" keys="IMPALA-8852"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8853" scope="external" format="html" keys="IMPALA-8853"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8854" scope="external" format="html" keys="IMPALA-8854"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8855" scope="external" format="html" keys="IMPALA-8855"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8856" scope="external" format="html" keys="IMPALA-8856"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8857" scope="external" format="html" keys="IMPALA-8857"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8858" scope="external" format="html" keys="IMPALA-8858"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8859" scope="external" format="html" keys="IMPALA-8859"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8860" scope="external" format="html" keys="IMPALA-8860"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8861" scope="external" format="html" keys="IMPALA-8861"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8862" scope="external" format="html" keys="IMPALA-8862"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8863" scope="external" format="html" keys="IMPALA-8863"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8864" scope="external" format="html" keys="IMPALA-8864"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8865" scope="external" format="html" keys="IMPALA-8865"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8866" scope="external" format="html" keys="IMPALA-8866"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8867" scope="external" format="html" keys="IMPALA-8867"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8868" scope="external" format="html" keys="IMPALA-8868"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8869" scope="external" format="html" keys="IMPALA-8869"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8870" scope="external" format="html" keys="IMPALA-8870"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8871" scope="external" format="html" keys="IMPALA-8871"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8872" scope="external" format="html" keys="IMPALA-8872"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8873" scope="external" format="html" keys="IMPALA-8873"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8874" scope="external" format="html" keys="IMPALA-8874"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8875" scope="external" format="html" keys="IMPALA-8875"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8876" scope="external" format="html" keys="IMPALA-8876"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8877" scope="external" format="html" keys="IMPALA-8877"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8878" scope="external" format="html" keys="IMPALA-8878"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8879" scope="external" format="html" keys="IMPALA-8879"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8880" scope="external" format="html" keys="IMPALA-8880"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8881" scope="external" format="html" keys="IMPALA-8881"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8882" scope="external" format="html" keys="IMPALA-8882"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8883" scope="external" format="html" keys="IMPALA-8883"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8884" scope="external" format="html" keys="IMPALA-8884"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8885" scope="external" format="html" keys="IMPALA-8885"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8886" scope="external" format="html" keys="IMPALA-8886"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8887" scope="external" format="html" keys="IMPALA-8887"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8888" scope="external" format="html" keys="IMPALA-8888"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8889" scope="external" format="html" keys="IMPALA-8889"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8890" scope="external" format="html" keys="IMPALA-8890"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8891" scope="external" format="html" keys="IMPALA-8891"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8892" scope="external" format="html" keys="IMPALA-8892"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8893" scope="external" format="html" keys="IMPALA-8893"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8894" scope="external" format="html" keys="IMPALA-8894"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8895" scope="external" format="html" keys="IMPALA-8895"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8896" scope="external" format="html" keys="IMPALA-8896"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8897" scope="external" format="html" keys="IMPALA-8897"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8898" scope="external" format="html" keys="IMPALA-8898"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8899" scope="external" format="html" keys="IMPALA-8899"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8900" scope="external" format="html" keys="IMPALA-8900"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8901" scope="external" format="html" keys="IMPALA-8901"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8902" scope="external" format="html" keys="IMPALA-8902"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8903" scope="external" format="html" keys="IMPALA-8903"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8904" scope="external" format="html" keys="IMPALA-8904"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8905" scope="external" format="html" keys="IMPALA-8905"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8906" scope="external" format="html" keys="IMPALA-8906"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8907" scope="external" format="html" keys="IMPALA-8907"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8908" scope="external" format="html" keys="IMPALA-8908"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8909" scope="external" format="html" keys="IMPALA-8909"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8910" scope="external" format="html" keys="IMPALA-8910"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8911" scope="external" format="html" keys="IMPALA-8911"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8912" scope="external" format="html" keys="IMPALA-8912"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8913" scope="external" format="html" keys="IMPALA-8913"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8914" scope="external" format="html" keys="IMPALA-8914"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8915" scope="external" format="html" keys="IMPALA-8915"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8916" scope="external" format="html" keys="IMPALA-8916"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8917" scope="external" format="html" keys="IMPALA-8917"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8918" scope="external" format="html" keys="IMPALA-8918"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8919" scope="external" format="html" keys="IMPALA-8919"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8920" scope="external" format="html" keys="IMPALA-8920"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8921" scope="external" format="html" keys="IMPALA-8921"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8922" scope="external" format="html" keys="IMPALA-8922"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8923" scope="external" format="html" keys="IMPALA-8923"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8924" scope="external" format="html" keys="IMPALA-8924"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8925" scope="external" format="html" keys="IMPALA-8925"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8926" scope="external" format="html" keys="IMPALA-8926"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8927" scope="external" format="html" keys="IMPALA-8927"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8928" scope="external" format="html" keys="IMPALA-8928"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8929" scope="external" format="html" keys="IMPALA-8929"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8930" scope="external" format="html" keys="IMPALA-8930"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8931" scope="external" format="html" keys="IMPALA-8931"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8932" scope="external" format="html" keys="IMPALA-8932"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8933" scope="external" format="html" keys="IMPALA-8933"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8934" scope="external" format="html" keys="IMPALA-8934"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8935" scope="external" format="html" keys="IMPALA-8935"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8936" scope="external" format="html" keys="IMPALA-8936"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8937" scope="external" format="html" keys="IMPALA-8937"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8938" scope="external" format="html" keys="IMPALA-8938"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8939" scope="external" format="html" keys="IMPALA-8939"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8940" scope="external" format="html" keys="IMPALA-8940"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8941" scope="external" format="html" keys="IMPALA-8941"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8942" scope="external" format="html" keys="IMPALA-8942"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8943" scope="external" format="html" keys="IMPALA-8943"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8944" scope="external" format="html" keys="IMPALA-8944"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8945" scope="external" format="html" keys="IMPALA-8945"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8946" scope="external" format="html" keys="IMPALA-8946"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8947" scope="external" format="html" keys="IMPALA-8947"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8948" scope="external" format="html" keys="IMPALA-8948"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8949" scope="external" format="html" keys="IMPALA-8949"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8950" scope="external" format="html" keys="IMPALA-8950"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8951" scope="external" format="html" keys="IMPALA-8951"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8952" scope="external" format="html" keys="IMPALA-8952"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8953" scope="external" format="html" keys="IMPALA-8953"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8954" scope="external" format="html" keys="IMPALA-8954"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8955" scope="external" format="html" keys="IMPALA-8955"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8956" scope="external" format="html" keys="IMPALA-8956"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8957" scope="external" format="html" keys="IMPALA-8957"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8958" scope="external" format="html" keys="IMPALA-8958"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8959" scope="external" format="html" keys="IMPALA-8959"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8960" scope="external" format="html" keys="IMPALA-8960"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8961" scope="external" format="html" keys="IMPALA-8961"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8962" scope="external" format="html" keys="IMPALA-8962"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8963" scope="external" format="html" keys="IMPALA-8963"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8964" scope="external" format="html" keys="IMPALA-8964"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8965" scope="external" format="html" keys="IMPALA-8965"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8966" scope="external" format="html" keys="IMPALA-8966"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8967" scope="external" format="html" keys="IMPALA-8967"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8968" scope="external" format="html" keys="IMPALA-8968"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8969" scope="external" format="html" keys="IMPALA-8969"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8970" scope="external" format="html" keys="IMPALA-8970"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8971" scope="external" format="html" keys="IMPALA-8971"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8972" scope="external" format="html" keys="IMPALA-8972"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8973" scope="external" format="html" keys="IMPALA-8973"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8974" scope="external" format="html" keys="IMPALA-8974"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8975" scope="external" format="html" keys="IMPALA-8975"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8976" scope="external" format="html" keys="IMPALA-8976"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8977" scope="external" format="html" keys="IMPALA-8977"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8978" scope="external" format="html" keys="IMPALA-8978"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8979" scope="external" format="html" keys="IMPALA-8979"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8980" scope="external" format="html" keys="IMPALA-8980"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8981" scope="external" format="html" keys="IMPALA-8981"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8982" scope="external" format="html" keys="IMPALA-8982"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8983" scope="external" format="html" keys="IMPALA-8983"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8984" scope="external" format="html" keys="IMPALA-8984"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8985" scope="external" format="html" keys="IMPALA-8985"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8986" scope="external" format="html" keys="IMPALA-8986"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8987" scope="external" format="html" keys="IMPALA-8987"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8988" scope="external" format="html" keys="IMPALA-8988"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8989" scope="external" format="html" keys="IMPALA-8989"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8990" scope="external" format="html" keys="IMPALA-8990"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8991" scope="external" format="html" keys="IMPALA-8991"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8992" scope="external" format="html" keys="IMPALA-8992"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8993" scope="external" format="html" keys="IMPALA-8993"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8994" scope="external" format="html" keys="IMPALA-8994"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8995" scope="external" format="html" keys="IMPALA-8995"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8996" scope="external" format="html" keys="IMPALA-8996"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8997" scope="external" format="html" keys="IMPALA-8997"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8998" scope="external" format="html" keys="IMPALA-8998"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-8999" scope="external" format="html" keys="IMPALA-8999"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9000" scope="external" format="html" keys="IMPALA-9000"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9001" scope="external" format="html" keys="IMPALA-9001"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9002" scope="external" format="html" keys="IMPALA-9002"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9003" scope="external" format="html" keys="IMPALA-9003"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9004" scope="external" format="html" keys="IMPALA-9004"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9005" scope="external" format="html" keys="IMPALA-9005"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9006" scope="external" format="html" keys="IMPALA-9006"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9007" scope="external" format="html" keys="IMPALA-9007"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9008" scope="external" format="html" keys="IMPALA-9008"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9009" scope="external" format="html" keys="IMPALA-9009"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9010" scope="external" format="html" keys="IMPALA-9010"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9011" scope="external" format="html" keys="IMPALA-9011"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9012" scope="external" format="html" keys="IMPALA-9012"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9013" scope="external" format="html" keys="IMPALA-9013"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9014" scope="external" format="html" keys="IMPALA-9014"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9015" scope="external" format="html" keys="IMPALA-9015"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9016" scope="external" format="html" keys="IMPALA-9016"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9017" scope="external" format="html" keys="IMPALA-9017"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9018" scope="external" format="html" keys="IMPALA-9018"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9019" scope="external" format="html" keys="IMPALA-9019"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9020" scope="external" format="html" keys="IMPALA-9020"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9021" scope="external" format="html" keys="IMPALA-9021"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9022" scope="external" format="html" keys="IMPALA-9022"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9023" scope="external" format="html" keys="IMPALA-9023"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9024" scope="external" format="html" keys="IMPALA-9024"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9025" scope="external" format="html" keys="IMPALA-9025"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9026" scope="external" format="html" keys="IMPALA-9026"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9027" scope="external" format="html" keys="IMPALA-9027"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9028" scope="external" format="html" keys="IMPALA-9028"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9029" scope="external" format="html" keys="IMPALA-9029"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9030" scope="external" format="html" keys="IMPALA-9030"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9031" scope="external" format="html" keys="IMPALA-9031"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9032" scope="external" format="html" keys="IMPALA-9032"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9033" scope="external" format="html" keys="IMPALA-9033"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9034" scope="external" format="html" keys="IMPALA-9034"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9035" scope="external" format="html" keys="IMPALA-9035"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9036" scope="external" format="html" keys="IMPALA-9036"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9037" scope="external" format="html" keys="IMPALA-9037"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9038" scope="external" format="html" keys="IMPALA-9038"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9039" scope="external" format="html" keys="IMPALA-9039"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9040" scope="external" format="html" keys="IMPALA-9040"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9041" scope="external" format="html" keys="IMPALA-9041"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9042" scope="external" format="html" keys="IMPALA-9042"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9043" scope="external" format="html" keys="IMPALA-9043"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9044" scope="external" format="html" keys="IMPALA-9044"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9045" scope="external" format="html" keys="IMPALA-9045"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9046" scope="external" format="html" keys="IMPALA-9046"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9047" scope="external" format="html" keys="IMPALA-9047"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9048" scope="external" format="html" keys="IMPALA-9048"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9049" scope="external" format="html" keys="IMPALA-9049"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9050" scope="external" format="html" keys="IMPALA-9050"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9051" scope="external" format="html" keys="IMPALA-9051"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9052" scope="external" format="html" keys="IMPALA-9052"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9053" scope="external" format="html" keys="IMPALA-9053"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9054" scope="external" format="html" keys="IMPALA-9054"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9055" scope="external" format="html" keys="IMPALA-9055"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9056" scope="external" format="html" keys="IMPALA-9056"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9057" scope="external" format="html" keys="IMPALA-9057"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9058" scope="external" format="html" keys="IMPALA-9058"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9059" scope="external" format="html" keys="IMPALA-9059"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9060" scope="external" format="html" keys="IMPALA-9060"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9061" scope="external" format="html" keys="IMPALA-9061"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9062" scope="external" format="html" keys="IMPALA-9062"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9063" scope="external" format="html" keys="IMPALA-9063"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9064" scope="external" format="html" keys="IMPALA-9064"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9065" scope="external" format="html" keys="IMPALA-9065"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9066" scope="external" format="html" keys="IMPALA-9066"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9067" scope="external" format="html" keys="IMPALA-9067"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9068" scope="external" format="html" keys="IMPALA-9068"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9069" scope="external" format="html" keys="IMPALA-9069"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9070" scope="external" format="html" keys="IMPALA-9070"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9071" scope="external" format="html" keys="IMPALA-9071"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9072" scope="external" format="html" keys="IMPALA-9072"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9073" scope="external" format="html" keys="IMPALA-9073"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9074" scope="external" format="html" keys="IMPALA-9074"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9075" scope="external" format="html" keys="IMPALA-9075"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9076" scope="external" format="html" keys="IMPALA-9076"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9077" scope="external" format="html" keys="IMPALA-9077"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9078" scope="external" format="html" keys="IMPALA-9078"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9079" scope="external" format="html" keys="IMPALA-9079"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9080" scope="external" format="html" keys="IMPALA-9080"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9081" scope="external" format="html" keys="IMPALA-9081"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9082" scope="external" format="html" keys="IMPALA-9082"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9083" scope="external" format="html" keys="IMPALA-9083"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9084" scope="external" format="html" keys="IMPALA-9084"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9085" scope="external" format="html" keys="IMPALA-9085"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9086" scope="external" format="html" keys="IMPALA-9086"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9087" scope="external" format="html" keys="IMPALA-9087"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9088" scope="external" format="html" keys="IMPALA-9088"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9089" scope="external" format="html" keys="IMPALA-9089"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9090" scope="external" format="html" keys="IMPALA-9090"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9091" scope="external" format="html" keys="IMPALA-9091"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9092" scope="external" format="html" keys="IMPALA-9092"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9093" scope="external" format="html" keys="IMPALA-9093"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9094" scope="external" format="html" keys="IMPALA-9094"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9095" scope="external" format="html" keys="IMPALA-9095"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9096" scope="external" format="html" keys="IMPALA-9096"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9097" scope="external" format="html" keys="IMPALA-9097"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9098" scope="external" format="html" keys="IMPALA-9098"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9099" scope="external" format="html" keys="IMPALA-9099"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9100" scope="external" format="html" keys="IMPALA-9100"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9101" scope="external" format="html" keys="IMPALA-9101"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9102" scope="external" format="html" keys="IMPALA-9102"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9103" scope="external" format="html" keys="IMPALA-9103"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9104" scope="external" format="html" keys="IMPALA-9104"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9105" scope="external" format="html" keys="IMPALA-9105"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9106" scope="external" format="html" keys="IMPALA-9106"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9107" scope="external" format="html" keys="IMPALA-9107"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9108" scope="external" format="html" keys="IMPALA-9108"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9109" scope="external" format="html" keys="IMPALA-9109"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9110" scope="external" format="html" keys="IMPALA-9110"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9111" scope="external" format="html" keys="IMPALA-9111"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9112" scope="external" format="html" keys="IMPALA-9112"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9113" scope="external" format="html" keys="IMPALA-9113"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9114" scope="external" format="html" keys="IMPALA-9114"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9115" scope="external" format="html" keys="IMPALA-9115"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9116" scope="external" format="html" keys="IMPALA-9116"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9117" scope="external" format="html" keys="IMPALA-9117"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9118" scope="external" format="html" keys="IMPALA-9118"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9119" scope="external" format="html" keys="IMPALA-9119"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9120" scope="external" format="html" keys="IMPALA-9120"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9121" scope="external" format="html" keys="IMPALA-9121"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9122" scope="external" format="html" keys="IMPALA-9122"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9123" scope="external" format="html" keys="IMPALA-9123"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9124" scope="external" format="html" keys="IMPALA-9124"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9125" scope="external" format="html" keys="IMPALA-9125"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9126" scope="external" format="html" keys="IMPALA-9126"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9127" scope="external" format="html" keys="IMPALA-9127"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9128" scope="external" format="html" keys="IMPALA-9128"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9129" scope="external" format="html" keys="IMPALA-9129"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9130" scope="external" format="html" keys="IMPALA-9130"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9131" scope="external" format="html" keys="IMPALA-9131"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9132" scope="external" format="html" keys="IMPALA-9132"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9133" scope="external" format="html" keys="IMPALA-9133"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9134" scope="external" format="html" keys="IMPALA-9134"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9135" scope="external" format="html" keys="IMPALA-9135"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9136" scope="external" format="html" keys="IMPALA-9136"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9137" scope="external" format="html" keys="IMPALA-9137"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9138" scope="external" format="html" keys="IMPALA-9138"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9139" scope="external" format="html" keys="IMPALA-9139"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9140" scope="external" format="html" keys="IMPALA-9140"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9141" scope="external" format="html" keys="IMPALA-9141"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9142" scope="external" format="html" keys="IMPALA-9142"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9143" scope="external" format="html" keys="IMPALA-9143"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9144" scope="external" format="html" keys="IMPALA-9144"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9145" scope="external" format="html" keys="IMPALA-9145"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9146" scope="external" format="html" keys="IMPALA-9146"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9147" scope="external" format="html" keys="IMPALA-9147"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9148" scope="external" format="html" keys="IMPALA-9148"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9149" scope="external" format="html" keys="IMPALA-9149"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9150" scope="external" format="html" keys="IMPALA-9150"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9151" scope="external" format="html" keys="IMPALA-9151"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9152" scope="external" format="html" keys="IMPALA-9152"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9153" scope="external" format="html" keys="IMPALA-9153"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9154" scope="external" format="html" keys="IMPALA-9154"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9155" scope="external" format="html" keys="IMPALA-9155"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9156" scope="external" format="html" keys="IMPALA-9156"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9157" scope="external" format="html" keys="IMPALA-9157"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9158" scope="external" format="html" keys="IMPALA-9158"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9159" scope="external" format="html" keys="IMPALA-9159"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9160" scope="external" format="html" keys="IMPALA-9160"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9161" scope="external" format="html" keys="IMPALA-9161"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9162" scope="external" format="html" keys="IMPALA-9162"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9163" scope="external" format="html" keys="IMPALA-9163"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9164" scope="external" format="html" keys="IMPALA-9164"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9165" scope="external" format="html" keys="IMPALA-9165"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9166" scope="external" format="html" keys="IMPALA-9166"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9167" scope="external" format="html" keys="IMPALA-9167"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9168" scope="external" format="html" keys="IMPALA-9168"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9169" scope="external" format="html" keys="IMPALA-9169"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9170" scope="external" format="html" keys="IMPALA-9170"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9171" scope="external" format="html" keys="IMPALA-9171"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9172" scope="external" format="html" keys="IMPALA-9172"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9173" scope="external" format="html" keys="IMPALA-9173"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9174" scope="external" format="html" keys="IMPALA-9174"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9175" scope="external" format="html" keys="IMPALA-9175"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9176" scope="external" format="html" keys="IMPALA-9176"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9177" scope="external" format="html" keys="IMPALA-9177"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9178" scope="external" format="html" keys="IMPALA-9178"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9179" scope="external" format="html" keys="IMPALA-9179"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9180" scope="external" format="html" keys="IMPALA-9180"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9181" scope="external" format="html" keys="IMPALA-9181"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9182" scope="external" format="html" keys="IMPALA-9182"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9183" scope="external" format="html" keys="IMPALA-9183"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9184" scope="external" format="html" keys="IMPALA-9184"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9185" scope="external" format="html" keys="IMPALA-9185"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9186" scope="external" format="html" keys="IMPALA-9186"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9187" scope="external" format="html" keys="IMPALA-9187"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9188" scope="external" format="html" keys="IMPALA-9188"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9189" scope="external" format="html" keys="IMPALA-9189"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9190" scope="external" format="html" keys="IMPALA-9190"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9191" scope="external" format="html" keys="IMPALA-9191"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9192" scope="external" format="html" keys="IMPALA-9192"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9193" scope="external" format="html" keys="IMPALA-9193"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9194" scope="external" format="html" keys="IMPALA-9194"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9195" scope="external" format="html" keys="IMPALA-9195"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9196" scope="external" format="html" keys="IMPALA-9196"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9197" scope="external" format="html" keys="IMPALA-9197"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9198" scope="external" format="html" keys="IMPALA-9198"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9199" scope="external" format="html" keys="IMPALA-9199"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9200" scope="external" format="html" keys="IMPALA-9200"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9201" scope="external" format="html" keys="IMPALA-9201"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9202" scope="external" format="html" keys="IMPALA-9202"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9203" scope="external" format="html" keys="IMPALA-9203"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9204" scope="external" format="html" keys="IMPALA-9204"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9205" scope="external" format="html" keys="IMPALA-9205"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9206" scope="external" format="html" keys="IMPALA-9206"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9207" scope="external" format="html" keys="IMPALA-9207"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9208" scope="external" format="html" keys="IMPALA-9208"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9209" scope="external" format="html" keys="IMPALA-9209"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9210" scope="external" format="html" keys="IMPALA-9210"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9211" scope="external" format="html" keys="IMPALA-9211"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9212" scope="external" format="html" keys="IMPALA-9212"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9213" scope="external" format="html" keys="IMPALA-9213"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9214" scope="external" format="html" keys="IMPALA-9214"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9215" scope="external" format="html" keys="IMPALA-9215"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9216" scope="external" format="html" keys="IMPALA-9216"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9217" scope="external" format="html" keys="IMPALA-9217"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9218" scope="external" format="html" keys="IMPALA-9218"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9219" scope="external" format="html" keys="IMPALA-9219"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9220" scope="external" format="html" keys="IMPALA-9220"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9221" scope="external" format="html" keys="IMPALA-9221"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9222" scope="external" format="html" keys="IMPALA-9222"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9223" scope="external" format="html" keys="IMPALA-9223"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9224" scope="external" format="html" keys="IMPALA-9224"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9225" scope="external" format="html" keys="IMPALA-9225"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9226" scope="external" format="html" keys="IMPALA-9226"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9227" scope="external" format="html" keys="IMPALA-9227"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9228" scope="external" format="html" keys="IMPALA-9228"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9229" scope="external" format="html" keys="IMPALA-9229"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9230" scope="external" format="html" keys="IMPALA-9230"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9231" scope="external" format="html" keys="IMPALA-9231"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9232" scope="external" format="html" keys="IMPALA-9232"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9233" scope="external" format="html" keys="IMPALA-9233"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9234" scope="external" format="html" keys="IMPALA-9234"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9235" scope="external" format="html" keys="IMPALA-9235"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9236" scope="external" format="html" keys="IMPALA-9236"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9237" scope="external" format="html" keys="IMPALA-9237"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9238" scope="external" format="html" keys="IMPALA-9238"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9239" scope="external" format="html" keys="IMPALA-9239"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9240" scope="external" format="html" keys="IMPALA-9240"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9241" scope="external" format="html" keys="IMPALA-9241"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9242" scope="external" format="html" keys="IMPALA-9242"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9243" scope="external" format="html" keys="IMPALA-9243"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9244" scope="external" format="html" keys="IMPALA-9244"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9245" scope="external" format="html" keys="IMPALA-9245"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9246" scope="external" format="html" keys="IMPALA-9246"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9247" scope="external" format="html" keys="IMPALA-9247"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9248" scope="external" format="html" keys="IMPALA-9248"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9249" scope="external" format="html" keys="IMPALA-9249"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9250" scope="external" format="html" keys="IMPALA-9250"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9251" scope="external" format="html" keys="IMPALA-9251"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9252" scope="external" format="html" keys="IMPALA-9252"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9253" scope="external" format="html" keys="IMPALA-9253"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9254" scope="external" format="html" keys="IMPALA-9254"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9255" scope="external" format="html" keys="IMPALA-9255"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9256" scope="external" format="html" keys="IMPALA-9256"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9257" scope="external" format="html" keys="IMPALA-9257"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9258" scope="external" format="html" keys="IMPALA-9258"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9259" scope="external" format="html" keys="IMPALA-9259"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9260" scope="external" format="html" keys="IMPALA-9260"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9261" scope="external" format="html" keys="IMPALA-9261"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9262" scope="external" format="html" keys="IMPALA-9262"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9263" scope="external" format="html" keys="IMPALA-9263"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9264" scope="external" format="html" keys="IMPALA-9264"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9265" scope="external" format="html" keys="IMPALA-9265"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9266" scope="external" format="html" keys="IMPALA-9266"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9267" scope="external" format="html" keys="IMPALA-9267"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9268" scope="external" format="html" keys="IMPALA-9268"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9269" scope="external" format="html" keys="IMPALA-9269"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9270" scope="external" format="html" keys="IMPALA-9270"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9271" scope="external" format="html" keys="IMPALA-9271"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9272" scope="external" format="html" keys="IMPALA-9272"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9273" scope="external" format="html" keys="IMPALA-9273"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9274" scope="external" format="html" keys="IMPALA-9274"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9275" scope="external" format="html" keys="IMPALA-9275"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9276" scope="external" format="html" keys="IMPALA-9276"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9277" scope="external" format="html" keys="IMPALA-9277"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9278" scope="external" format="html" keys="IMPALA-9278"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9279" scope="external" format="html" keys="IMPALA-9279"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9280" scope="external" format="html" keys="IMPALA-9280"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9281" scope="external" format="html" keys="IMPALA-9281"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9282" scope="external" format="html" keys="IMPALA-9282"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9283" scope="external" format="html" keys="IMPALA-9283"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9284" scope="external" format="html" keys="IMPALA-9284"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9285" scope="external" format="html" keys="IMPALA-9285"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9286" scope="external" format="html" keys="IMPALA-9286"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9287" scope="external" format="html" keys="IMPALA-9287"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9288" scope="external" format="html" keys="IMPALA-9288"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9289" scope="external" format="html" keys="IMPALA-9289"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9290" scope="external" format="html" keys="IMPALA-9290"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9291" scope="external" format="html" keys="IMPALA-9291"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9292" scope="external" format="html" keys="IMPALA-9292"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9293" scope="external" format="html" keys="IMPALA-9293"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9294" scope="external" format="html" keys="IMPALA-9294"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9295" scope="external" format="html" keys="IMPALA-9295"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9296" scope="external" format="html" keys="IMPALA-9296"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9297" scope="external" format="html" keys="IMPALA-9297"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9298" scope="external" format="html" keys="IMPALA-9298"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9299" scope="external" format="html" keys="IMPALA-9299"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9300" scope="external" format="html" keys="IMPALA-9300"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9301" scope="external" format="html" keys="IMPALA-9301"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9302" scope="external" format="html" keys="IMPALA-9302"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9303" scope="external" format="html" keys="IMPALA-9303"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9304" scope="external" format="html" keys="IMPALA-9304"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9305" scope="external" format="html" keys="IMPALA-9305"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9306" scope="external" format="html" keys="IMPALA-9306"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9307" scope="external" format="html" keys="IMPALA-9307"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9308" scope="external" format="html" keys="IMPALA-9308"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9309" scope="external" format="html" keys="IMPALA-9309"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9310" scope="external" format="html" keys="IMPALA-9310"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9311" scope="external" format="html" keys="IMPALA-9311"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9312" scope="external" format="html" keys="IMPALA-9312"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9313" scope="external" format="html" keys="IMPALA-9313"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9314" scope="external" format="html" keys="IMPALA-9314"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9315" scope="external" format="html" keys="IMPALA-9315"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9316" scope="external" format="html" keys="IMPALA-9316"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9317" scope="external" format="html" keys="IMPALA-9317"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9318" scope="external" format="html" keys="IMPALA-9318"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9319" scope="external" format="html" keys="IMPALA-9319"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9320" scope="external" format="html" keys="IMPALA-9320"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9321" scope="external" format="html" keys="IMPALA-9321"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9322" scope="external" format="html" keys="IMPALA-9322"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9323" scope="external" format="html" keys="IMPALA-9323"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9324" scope="external" format="html" keys="IMPALA-9324"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9325" scope="external" format="html" keys="IMPALA-9325"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9326" scope="external" format="html" keys="IMPALA-9326"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9327" scope="external" format="html" keys="IMPALA-9327"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9328" scope="external" format="html" keys="IMPALA-9328"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9329" scope="external" format="html" keys="IMPALA-9329"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9330" scope="external" format="html" keys="IMPALA-9330"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9331" scope="external" format="html" keys="IMPALA-9331"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9332" scope="external" format="html" keys="IMPALA-9332"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9333" scope="external" format="html" keys="IMPALA-9333"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9334" scope="external" format="html" keys="IMPALA-9334"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9335" scope="external" format="html" keys="IMPALA-9335"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9336" scope="external" format="html" keys="IMPALA-9336"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9337" scope="external" format="html" keys="IMPALA-9337"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9338" scope="external" format="html" keys="IMPALA-9338"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9339" scope="external" format="html" keys="IMPALA-9339"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9340" scope="external" format="html" keys="IMPALA-9340"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9341" scope="external" format="html" keys="IMPALA-9341"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9342" scope="external" format="html" keys="IMPALA-9342"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9343" scope="external" format="html" keys="IMPALA-9343"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9344" scope="external" format="html" keys="IMPALA-9344"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9345" scope="external" format="html" keys="IMPALA-9345"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9346" scope="external" format="html" keys="IMPALA-9346"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9347" scope="external" format="html" keys="IMPALA-9347"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9348" scope="external" format="html" keys="IMPALA-9348"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9349" scope="external" format="html" keys="IMPALA-9349"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9350" scope="external" format="html" keys="IMPALA-9350"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9351" scope="external" format="html" keys="IMPALA-9351"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9352" scope="external" format="html" keys="IMPALA-9352"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9353" scope="external" format="html" keys="IMPALA-9353"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9354" scope="external" format="html" keys="IMPALA-9354"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9355" scope="external" format="html" keys="IMPALA-9355"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9356" scope="external" format="html" keys="IMPALA-9356"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9357" scope="external" format="html" keys="IMPALA-9357"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9358" scope="external" format="html" keys="IMPALA-9358"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9359" scope="external" format="html" keys="IMPALA-9359"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9360" scope="external" format="html" keys="IMPALA-9360"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9361" scope="external" format="html" keys="IMPALA-9361"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9362" scope="external" format="html" keys="IMPALA-9362"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9363" scope="external" format="html" keys="IMPALA-9363"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9364" scope="external" format="html" keys="IMPALA-9364"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9365" scope="external" format="html" keys="IMPALA-9365"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9366" scope="external" format="html" keys="IMPALA-9366"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9367" scope="external" format="html" keys="IMPALA-9367"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9368" scope="external" format="html" keys="IMPALA-9368"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9369" scope="external" format="html" keys="IMPALA-9369"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9370" scope="external" format="html" keys="IMPALA-9370"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9371" scope="external" format="html" keys="IMPALA-9371"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9372" scope="external" format="html" keys="IMPALA-9372"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9373" scope="external" format="html" keys="IMPALA-9373"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9374" scope="external" format="html" keys="IMPALA-9374"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9375" scope="external" format="html" keys="IMPALA-9375"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9376" scope="external" format="html" keys="IMPALA-9376"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9377" scope="external" format="html" keys="IMPALA-9377"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9378" scope="external" format="html" keys="IMPALA-9378"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9379" scope="external" format="html" keys="IMPALA-9379"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9380" scope="external" format="html" keys="IMPALA-9380"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9381" scope="external" format="html" keys="IMPALA-9381"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9382" scope="external" format="html" keys="IMPALA-9382"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9383" scope="external" format="html" keys="IMPALA-9383"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9384" scope="external" format="html" keys="IMPALA-9384"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9385" scope="external" format="html" keys="IMPALA-9385"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9386" scope="external" format="html" keys="IMPALA-9386"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9387" scope="external" format="html" keys="IMPALA-9387"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9388" scope="external" format="html" keys="IMPALA-9388"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9389" scope="external" format="html" keys="IMPALA-9389"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9390" scope="external" format="html" keys="IMPALA-9390"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9391" scope="external" format="html" keys="IMPALA-9391"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9392" scope="external" format="html" keys="IMPALA-9392"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9393" scope="external" format="html" keys="IMPALA-9393"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9394" scope="external" format="html" keys="IMPALA-9394"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9395" scope="external" format="html" keys="IMPALA-9395"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9396" scope="external" format="html" keys="IMPALA-9396"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9397" scope="external" format="html" keys="IMPALA-9397"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9398" scope="external" format="html" keys="IMPALA-9398"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9399" scope="external" format="html" keys="IMPALA-9399"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9400" scope="external" format="html" keys="IMPALA-9400"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9401" scope="external" format="html" keys="IMPALA-9401"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9402" scope="external" format="html" keys="IMPALA-9402"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9403" scope="external" format="html" keys="IMPALA-9403"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9404" scope="external" format="html" keys="IMPALA-9404"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9405" scope="external" format="html" keys="IMPALA-9405"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9406" scope="external" format="html" keys="IMPALA-9406"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9407" scope="external" format="html" keys="IMPALA-9407"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9408" scope="external" format="html" keys="IMPALA-9408"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9409" scope="external" format="html" keys="IMPALA-9409"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9410" scope="external" format="html" keys="IMPALA-9410"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9411" scope="external" format="html" keys="IMPALA-9411"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9412" scope="external" format="html" keys="IMPALA-9412"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9413" scope="external" format="html" keys="IMPALA-9413"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9414" scope="external" format="html" keys="IMPALA-9414"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9415" scope="external" format="html" keys="IMPALA-9415"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9416" scope="external" format="html" keys="IMPALA-9416"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9417" scope="external" format="html" keys="IMPALA-9417"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9418" scope="external" format="html" keys="IMPALA-9418"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9419" scope="external" format="html" keys="IMPALA-9419"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9420" scope="external" format="html" keys="IMPALA-9420"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9421" scope="external" format="html" keys="IMPALA-9421"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9422" scope="external" format="html" keys="IMPALA-9422"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9423" scope="external" format="html" keys="IMPALA-9423"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9424" scope="external" format="html" keys="IMPALA-9424"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9425" scope="external" format="html" keys="IMPALA-9425"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9426" scope="external" format="html" keys="IMPALA-9426"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9427" scope="external" format="html" keys="IMPALA-9427"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9428" scope="external" format="html" keys="IMPALA-9428"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9429" scope="external" format="html" keys="IMPALA-9429"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9430" scope="external" format="html" keys="IMPALA-9430"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9431" scope="external" format="html" keys="IMPALA-9431"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9432" scope="external" format="html" keys="IMPALA-9432"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9433" scope="external" format="html" keys="IMPALA-9433"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9434" scope="external" format="html" keys="IMPALA-9434"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9435" scope="external" format="html" keys="IMPALA-9435"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9436" scope="external" format="html" keys="IMPALA-9436"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9437" scope="external" format="html" keys="IMPALA-9437"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9438" scope="external" format="html" keys="IMPALA-9438"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9439" scope="external" format="html" keys="IMPALA-9439"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9440" scope="external" format="html" keys="IMPALA-9440"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9441" scope="external" format="html" keys="IMPALA-9441"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9442" scope="external" format="html" keys="IMPALA-9442"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9443" scope="external" format="html" keys="IMPALA-9443"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9444" scope="external" format="html" keys="IMPALA-9444"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9445" scope="external" format="html" keys="IMPALA-9445"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9446" scope="external" format="html" keys="IMPALA-9446"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9447" scope="external" format="html" keys="IMPALA-9447"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9448" scope="external" format="html" keys="IMPALA-9448"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9449" scope="external" format="html" keys="IMPALA-9449"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9450" scope="external" format="html" keys="IMPALA-9450"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9451" scope="external" format="html" keys="IMPALA-9451"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9452" scope="external" format="html" keys="IMPALA-9452"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9453" scope="external" format="html" keys="IMPALA-9453"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9454" scope="external" format="html" keys="IMPALA-9454"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9455" scope="external" format="html" keys="IMPALA-9455"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9456" scope="external" format="html" keys="IMPALA-9456"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9457" scope="external" format="html" keys="IMPALA-9457"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9458" scope="external" format="html" keys="IMPALA-9458"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9459" scope="external" format="html" keys="IMPALA-9459"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9460" scope="external" format="html" keys="IMPALA-9460"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9461" scope="external" format="html" keys="IMPALA-9461"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9462" scope="external" format="html" keys="IMPALA-9462"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9463" scope="external" format="html" keys="IMPALA-9463"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9464" scope="external" format="html" keys="IMPALA-9464"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9465" scope="external" format="html" keys="IMPALA-9465"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9466" scope="external" format="html" keys="IMPALA-9466"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9467" scope="external" format="html" keys="IMPALA-9467"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9468" scope="external" format="html" keys="IMPALA-9468"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9469" scope="external" format="html" keys="IMPALA-9469"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9470" scope="external" format="html" keys="IMPALA-9470"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9471" scope="external" format="html" keys="IMPALA-9471"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9472" scope="external" format="html" keys="IMPALA-9472"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9473" scope="external" format="html" keys="IMPALA-9473"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9474" scope="external" format="html" keys="IMPALA-9474"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9475" scope="external" format="html" keys="IMPALA-9475"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9476" scope="external" format="html" keys="IMPALA-9476"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9477" scope="external" format="html" keys="IMPALA-9477"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9478" scope="external" format="html" keys="IMPALA-9478"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9479" scope="external" format="html" keys="IMPALA-9479"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9480" scope="external" format="html" keys="IMPALA-9480"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9481" scope="external" format="html" keys="IMPALA-9481"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9482" scope="external" format="html" keys="IMPALA-9482"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9483" scope="external" format="html" keys="IMPALA-9483"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9484" scope="external" format="html" keys="IMPALA-9484"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9485" scope="external" format="html" keys="IMPALA-9485"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9486" scope="external" format="html" keys="IMPALA-9486"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9487" scope="external" format="html" keys="IMPALA-9487"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9488" scope="external" format="html" keys="IMPALA-9488"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9489" scope="external" format="html" keys="IMPALA-9489"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9490" scope="external" format="html" keys="IMPALA-9490"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9491" scope="external" format="html" keys="IMPALA-9491"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9492" scope="external" format="html" keys="IMPALA-9492"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9493" scope="external" format="html" keys="IMPALA-9493"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9494" scope="external" format="html" keys="IMPALA-9494"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9495" scope="external" format="html" keys="IMPALA-9495"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9496" scope="external" format="html" keys="IMPALA-9496"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9497" scope="external" format="html" keys="IMPALA-9497"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9498" scope="external" format="html" keys="IMPALA-9498"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9499" scope="external" format="html" keys="IMPALA-9499"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9500" scope="external" format="html" keys="IMPALA-9500"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9501" scope="external" format="html" keys="IMPALA-9501"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9502" scope="external" format="html" keys="IMPALA-9502"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9503" scope="external" format="html" keys="IMPALA-9503"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9504" scope="external" format="html" keys="IMPALA-9504"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9505" scope="external" format="html" keys="IMPALA-9505"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9506" scope="external" format="html" keys="IMPALA-9506"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9507" scope="external" format="html" keys="IMPALA-9507"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9508" scope="external" format="html" keys="IMPALA-9508"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9509" scope="external" format="html" keys="IMPALA-9509"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9510" scope="external" format="html" keys="IMPALA-9510"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9511" scope="external" format="html" keys="IMPALA-9511"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9512" scope="external" format="html" keys="IMPALA-9512"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9513" scope="external" format="html" keys="IMPALA-9513"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9514" scope="external" format="html" keys="IMPALA-9514"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9515" scope="external" format="html" keys="IMPALA-9515"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9516" scope="external" format="html" keys="IMPALA-9516"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9517" scope="external" format="html" keys="IMPALA-9517"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9518" scope="external" format="html" keys="IMPALA-9518"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9519" scope="external" format="html" keys="IMPALA-9519"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9520" scope="external" format="html" keys="IMPALA-9520"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9521" scope="external" format="html" keys="IMPALA-9521"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9522" scope="external" format="html" keys="IMPALA-9522"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9523" scope="external" format="html" keys="IMPALA-9523"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9524" scope="external" format="html" keys="IMPALA-9524"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9525" scope="external" format="html" keys="IMPALA-9525"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9526" scope="external" format="html" keys="IMPALA-9526"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9527" scope="external" format="html" keys="IMPALA-9527"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9528" scope="external" format="html" keys="IMPALA-9528"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9529" scope="external" format="html" keys="IMPALA-9529"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9530" scope="external" format="html" keys="IMPALA-9530"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9531" scope="external" format="html" keys="IMPALA-9531"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9532" scope="external" format="html" keys="IMPALA-9532"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9533" scope="external" format="html" keys="IMPALA-9533"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9534" scope="external" format="html" keys="IMPALA-9534"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9535" scope="external" format="html" keys="IMPALA-9535"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9536" scope="external" format="html" keys="IMPALA-9536"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9537" scope="external" format="html" keys="IMPALA-9537"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9538" scope="external" format="html" keys="IMPALA-9538"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9539" scope="external" format="html" keys="IMPALA-9539"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9540" scope="external" format="html" keys="IMPALA-9540"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9541" scope="external" format="html" keys="IMPALA-9541"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9542" scope="external" format="html" keys="IMPALA-9542"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9543" scope="external" format="html" keys="IMPALA-9543"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9544" scope="external" format="html" keys="IMPALA-9544"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9545" scope="external" format="html" keys="IMPALA-9545"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9546" scope="external" format="html" keys="IMPALA-9546"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9547" scope="external" format="html" keys="IMPALA-9547"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9548" scope="external" format="html" keys="IMPALA-9548"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9549" scope="external" format="html" keys="IMPALA-9549"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9550" scope="external" format="html" keys="IMPALA-9550"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9551" scope="external" format="html" keys="IMPALA-9551"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9552" scope="external" format="html" keys="IMPALA-9552"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9553" scope="external" format="html" keys="IMPALA-9553"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9554" scope="external" format="html" keys="IMPALA-9554"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9555" scope="external" format="html" keys="IMPALA-9555"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9556" scope="external" format="html" keys="IMPALA-9556"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9557" scope="external" format="html" keys="IMPALA-9557"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9558" scope="external" format="html" keys="IMPALA-9558"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9559" scope="external" format="html" keys="IMPALA-9559"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9560" scope="external" format="html" keys="IMPALA-9560"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9561" scope="external" format="html" keys="IMPALA-9561"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9562" scope="external" format="html" keys="IMPALA-9562"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9563" scope="external" format="html" keys="IMPALA-9563"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9564" scope="external" format="html" keys="IMPALA-9564"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9565" scope="external" format="html" keys="IMPALA-9565"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9566" scope="external" format="html" keys="IMPALA-9566"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9567" scope="external" format="html" keys="IMPALA-9567"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9568" scope="external" format="html" keys="IMPALA-9568"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9569" scope="external" format="html" keys="IMPALA-9569"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9570" scope="external" format="html" keys="IMPALA-9570"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9571" scope="external" format="html" keys="IMPALA-9571"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9572" scope="external" format="html" keys="IMPALA-9572"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9573" scope="external" format="html" keys="IMPALA-9573"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9574" scope="external" format="html" keys="IMPALA-9574"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9575" scope="external" format="html" keys="IMPALA-9575"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9576" scope="external" format="html" keys="IMPALA-9576"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9577" scope="external" format="html" keys="IMPALA-9577"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9578" scope="external" format="html" keys="IMPALA-9578"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9579" scope="external" format="html" keys="IMPALA-9579"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9580" scope="external" format="html" keys="IMPALA-9580"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9581" scope="external" format="html" keys="IMPALA-9581"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9582" scope="external" format="html" keys="IMPALA-9582"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9583" scope="external" format="html" keys="IMPALA-9583"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9584" scope="external" format="html" keys="IMPALA-9584"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9585" scope="external" format="html" keys="IMPALA-9585"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9586" scope="external" format="html" keys="IMPALA-9586"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9587" scope="external" format="html" keys="IMPALA-9587"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9588" scope="external" format="html" keys="IMPALA-9588"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9589" scope="external" format="html" keys="IMPALA-9589"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9590" scope="external" format="html" keys="IMPALA-9590"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9591" scope="external" format="html" keys="IMPALA-9591"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9592" scope="external" format="html" keys="IMPALA-9592"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9593" scope="external" format="html" keys="IMPALA-9593"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9594" scope="external" format="html" keys="IMPALA-9594"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9595" scope="external" format="html" keys="IMPALA-9595"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9596" scope="external" format="html" keys="IMPALA-9596"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9597" scope="external" format="html" keys="IMPALA-9597"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9598" scope="external" format="html" keys="IMPALA-9598"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9599" scope="external" format="html" keys="IMPALA-9599"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9600" scope="external" format="html" keys="IMPALA-9600"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9601" scope="external" format="html" keys="IMPALA-9601"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9602" scope="external" format="html" keys="IMPALA-9602"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9603" scope="external" format="html" keys="IMPALA-9603"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9604" scope="external" format="html" keys="IMPALA-9604"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9605" scope="external" format="html" keys="IMPALA-9605"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9606" scope="external" format="html" keys="IMPALA-9606"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9607" scope="external" format="html" keys="IMPALA-9607"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9608" scope="external" format="html" keys="IMPALA-9608"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9609" scope="external" format="html" keys="IMPALA-9609"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9610" scope="external" format="html" keys="IMPALA-9610"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9611" scope="external" format="html" keys="IMPALA-9611"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9612" scope="external" format="html" keys="IMPALA-9612"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9613" scope="external" format="html" keys="IMPALA-9613"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9614" scope="external" format="html" keys="IMPALA-9614"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9615" scope="external" format="html" keys="IMPALA-9615"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9616" scope="external" format="html" keys="IMPALA-9616"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9617" scope="external" format="html" keys="IMPALA-9617"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9618" scope="external" format="html" keys="IMPALA-9618"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9619" scope="external" format="html" keys="IMPALA-9619"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9620" scope="external" format="html" keys="IMPALA-9620"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9621" scope="external" format="html" keys="IMPALA-9621"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9622" scope="external" format="html" keys="IMPALA-9622"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9623" scope="external" format="html" keys="IMPALA-9623"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9624" scope="external" format="html" keys="IMPALA-9624"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9625" scope="external" format="html" keys="IMPALA-9625"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9626" scope="external" format="html" keys="IMPALA-9626"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9627" scope="external" format="html" keys="IMPALA-9627"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9628" scope="external" format="html" keys="IMPALA-9628"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9629" scope="external" format="html" keys="IMPALA-9629"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9630" scope="external" format="html" keys="IMPALA-9630"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9631" scope="external" format="html" keys="IMPALA-9631"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9632" scope="external" format="html" keys="IMPALA-9632"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9633" scope="external" format="html" keys="IMPALA-9633"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9634" scope="external" format="html" keys="IMPALA-9634"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9635" scope="external" format="html" keys="IMPALA-9635"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9636" scope="external" format="html" keys="IMPALA-9636"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9637" scope="external" format="html" keys="IMPALA-9637"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9638" scope="external" format="html" keys="IMPALA-9638"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9639" scope="external" format="html" keys="IMPALA-9639"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9640" scope="external" format="html" keys="IMPALA-9640"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9641" scope="external" format="html" keys="IMPALA-9641"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9642" scope="external" format="html" keys="IMPALA-9642"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9643" scope="external" format="html" keys="IMPALA-9643"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9644" scope="external" format="html" keys="IMPALA-9644"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9645" scope="external" format="html" keys="IMPALA-9645"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9646" scope="external" format="html" keys="IMPALA-9646"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9647" scope="external" format="html" keys="IMPALA-9647"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9648" scope="external" format="html" keys="IMPALA-9648"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9649" scope="external" format="html" keys="IMPALA-9649"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9650" scope="external" format="html" keys="IMPALA-9650"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9651" scope="external" format="html" keys="IMPALA-9651"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9652" scope="external" format="html" keys="IMPALA-9652"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9653" scope="external" format="html" keys="IMPALA-9653"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9654" scope="external" format="html" keys="IMPALA-9654"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9655" scope="external" format="html" keys="IMPALA-9655"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9656" scope="external" format="html" keys="IMPALA-9656"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9657" scope="external" format="html" keys="IMPALA-9657"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9658" scope="external" format="html" keys="IMPALA-9658"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9659" scope="external" format="html" keys="IMPALA-9659"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9660" scope="external" format="html" keys="IMPALA-9660"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9661" scope="external" format="html" keys="IMPALA-9661"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9662" scope="external" format="html" keys="IMPALA-9662"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9663" scope="external" format="html" keys="IMPALA-9663"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9664" scope="external" format="html" keys="IMPALA-9664"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9665" scope="external" format="html" keys="IMPALA-9665"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9666" scope="external" format="html" keys="IMPALA-9666"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9667" scope="external" format="html" keys="IMPALA-9667"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9668" scope="external" format="html" keys="IMPALA-9668"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9669" scope="external" format="html" keys="IMPALA-9669"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9670" scope="external" format="html" keys="IMPALA-9670"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9671" scope="external" format="html" keys="IMPALA-9671"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9672" scope="external" format="html" keys="IMPALA-9672"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9673" scope="external" format="html" keys="IMPALA-9673"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9674" scope="external" format="html" keys="IMPALA-9674"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9675" scope="external" format="html" keys="IMPALA-9675"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9676" scope="external" format="html" keys="IMPALA-9676"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9677" scope="external" format="html" keys="IMPALA-9677"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9678" scope="external" format="html" keys="IMPALA-9678"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9679" scope="external" format="html" keys="IMPALA-9679"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9680" scope="external" format="html" keys="IMPALA-9680"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9681" scope="external" format="html" keys="IMPALA-9681"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9682" scope="external" format="html" keys="IMPALA-9682"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9683" scope="external" format="html" keys="IMPALA-9683"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9684" scope="external" format="html" keys="IMPALA-9684"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9685" scope="external" format="html" keys="IMPALA-9685"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9686" scope="external" format="html" keys="IMPALA-9686"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9687" scope="external" format="html" keys="IMPALA-9687"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9688" scope="external" format="html" keys="IMPALA-9688"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9689" scope="external" format="html" keys="IMPALA-9689"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9690" scope="external" format="html" keys="IMPALA-9690"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9691" scope="external" format="html" keys="IMPALA-9691"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9692" scope="external" format="html" keys="IMPALA-9692"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9693" scope="external" format="html" keys="IMPALA-9693"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9694" scope="external" format="html" keys="IMPALA-9694"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9695" scope="external" format="html" keys="IMPALA-9695"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9696" scope="external" format="html" keys="IMPALA-9696"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9697" scope="external" format="html" keys="IMPALA-9697"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9698" scope="external" format="html" keys="IMPALA-9698"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9699" scope="external" format="html" keys="IMPALA-9699"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9700" scope="external" format="html" keys="IMPALA-9700"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9701" scope="external" format="html" keys="IMPALA-9701"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9702" scope="external" format="html" keys="IMPALA-9702"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9703" scope="external" format="html" keys="IMPALA-9703"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9704" scope="external" format="html" keys="IMPALA-9704"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9705" scope="external" format="html" keys="IMPALA-9705"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9706" scope="external" format="html" keys="IMPALA-9706"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9707" scope="external" format="html" keys="IMPALA-9707"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9708" scope="external" format="html" keys="IMPALA-9708"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9709" scope="external" format="html" keys="IMPALA-9709"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9710" scope="external" format="html" keys="IMPALA-9710"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9711" scope="external" format="html" keys="IMPALA-9711"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9712" scope="external" format="html" keys="IMPALA-9712"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9713" scope="external" format="html" keys="IMPALA-9713"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9714" scope="external" format="html" keys="IMPALA-9714"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9715" scope="external" format="html" keys="IMPALA-9715"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9716" scope="external" format="html" keys="IMPALA-9716"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9717" scope="external" format="html" keys="IMPALA-9717"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9718" scope="external" format="html" keys="IMPALA-9718"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9719" scope="external" format="html" keys="IMPALA-9719"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9720" scope="external" format="html" keys="IMPALA-9720"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9721" scope="external" format="html" keys="IMPALA-9721"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9722" scope="external" format="html" keys="IMPALA-9722"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9723" scope="external" format="html" keys="IMPALA-9723"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9724" scope="external" format="html" keys="IMPALA-9724"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9725" scope="external" format="html" keys="IMPALA-9725"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9726" scope="external" format="html" keys="IMPALA-9726"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9727" scope="external" format="html" keys="IMPALA-9727"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9728" scope="external" format="html" keys="IMPALA-9728"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9729" scope="external" format="html" keys="IMPALA-9729"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9730" scope="external" format="html" keys="IMPALA-9730"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9731" scope="external" format="html" keys="IMPALA-9731"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9732" scope="external" format="html" keys="IMPALA-9732"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9733" scope="external" format="html" keys="IMPALA-9733"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9734" scope="external" format="html" keys="IMPALA-9734"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9735" scope="external" format="html" keys="IMPALA-9735"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9736" scope="external" format="html" keys="IMPALA-9736"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9737" scope="external" format="html" keys="IMPALA-9737"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9738" scope="external" format="html" keys="IMPALA-9738"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9739" scope="external" format="html" keys="IMPALA-9739"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9740" scope="external" format="html" keys="IMPALA-9740"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9741" scope="external" format="html" keys="IMPALA-9741"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9742" scope="external" format="html" keys="IMPALA-9742"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9743" scope="external" format="html" keys="IMPALA-9743"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9744" scope="external" format="html" keys="IMPALA-9744"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9745" scope="external" format="html" keys="IMPALA-9745"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9746" scope="external" format="html" keys="IMPALA-9746"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9747" scope="external" format="html" keys="IMPALA-9747"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9748" scope="external" format="html" keys="IMPALA-9748"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9749" scope="external" format="html" keys="IMPALA-9749"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9750" scope="external" format="html" keys="IMPALA-9750"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9751" scope="external" format="html" keys="IMPALA-9751"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9752" scope="external" format="html" keys="IMPALA-9752"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9753" scope="external" format="html" keys="IMPALA-9753"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9754" scope="external" format="html" keys="IMPALA-9754"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9755" scope="external" format="html" keys="IMPALA-9755"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9756" scope="external" format="html" keys="IMPALA-9756"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9757" scope="external" format="html" keys="IMPALA-9757"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9758" scope="external" format="html" keys="IMPALA-9758"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9759" scope="external" format="html" keys="IMPALA-9759"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9760" scope="external" format="html" keys="IMPALA-9760"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9761" scope="external" format="html" keys="IMPALA-9761"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9762" scope="external" format="html" keys="IMPALA-9762"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9763" scope="external" format="html" keys="IMPALA-9763"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9764" scope="external" format="html" keys="IMPALA-9764"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9765" scope="external" format="html" keys="IMPALA-9765"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9766" scope="external" format="html" keys="IMPALA-9766"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9767" scope="external" format="html" keys="IMPALA-9767"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9768" scope="external" format="html" keys="IMPALA-9768"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9769" scope="external" format="html" keys="IMPALA-9769"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9770" scope="external" format="html" keys="IMPALA-9770"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9771" scope="external" format="html" keys="IMPALA-9771"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9772" scope="external" format="html" keys="IMPALA-9772"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9773" scope="external" format="html" keys="IMPALA-9773"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9774" scope="external" format="html" keys="IMPALA-9774"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9775" scope="external" format="html" keys="IMPALA-9775"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9776" scope="external" format="html" keys="IMPALA-9776"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9777" scope="external" format="html" keys="IMPALA-9777"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9778" scope="external" format="html" keys="IMPALA-9778"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9779" scope="external" format="html" keys="IMPALA-9779"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9780" scope="external" format="html" keys="IMPALA-9780"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9781" scope="external" format="html" keys="IMPALA-9781"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9782" scope="external" format="html" keys="IMPALA-9782"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9783" scope="external" format="html" keys="IMPALA-9783"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9784" scope="external" format="html" keys="IMPALA-9784"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9785" scope="external" format="html" keys="IMPALA-9785"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9786" scope="external" format="html" keys="IMPALA-9786"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9787" scope="external" format="html" keys="IMPALA-9787"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9788" scope="external" format="html" keys="IMPALA-9788"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9789" scope="external" format="html" keys="IMPALA-9789"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9790" scope="external" format="html" keys="IMPALA-9790"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9791" scope="external" format="html" keys="IMPALA-9791"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9792" scope="external" format="html" keys="IMPALA-9792"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9793" scope="external" format="html" keys="IMPALA-9793"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9794" scope="external" format="html" keys="IMPALA-9794"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9795" scope="external" format="html" keys="IMPALA-9795"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9796" scope="external" format="html" keys="IMPALA-9796"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9797" scope="external" format="html" keys="IMPALA-9797"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9798" scope="external" format="html" keys="IMPALA-9798"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9799" scope="external" format="html" keys="IMPALA-9799"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9800" scope="external" format="html" keys="IMPALA-9800"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9801" scope="external" format="html" keys="IMPALA-9801"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9802" scope="external" format="html" keys="IMPALA-9802"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9803" scope="external" format="html" keys="IMPALA-9803"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9804" scope="external" format="html" keys="IMPALA-9804"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9805" scope="external" format="html" keys="IMPALA-9805"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9806" scope="external" format="html" keys="IMPALA-9806"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9807" scope="external" format="html" keys="IMPALA-9807"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9808" scope="external" format="html" keys="IMPALA-9808"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9809" scope="external" format="html" keys="IMPALA-9809"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9810" scope="external" format="html" keys="IMPALA-9810"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9811" scope="external" format="html" keys="IMPALA-9811"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9812" scope="external" format="html" keys="IMPALA-9812"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9813" scope="external" format="html" keys="IMPALA-9813"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9814" scope="external" format="html" keys="IMPALA-9814"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9815" scope="external" format="html" keys="IMPALA-9815"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9816" scope="external" format="html" keys="IMPALA-9816"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9817" scope="external" format="html" keys="IMPALA-9817"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9818" scope="external" format="html" keys="IMPALA-9818"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9819" scope="external" format="html" keys="IMPALA-9819"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9820" scope="external" format="html" keys="IMPALA-9820"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9821" scope="external" format="html" keys="IMPALA-9821"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9822" scope="external" format="html" keys="IMPALA-9822"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9823" scope="external" format="html" keys="IMPALA-9823"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9824" scope="external" format="html" keys="IMPALA-9824"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9825" scope="external" format="html" keys="IMPALA-9825"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9826" scope="external" format="html" keys="IMPALA-9826"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9827" scope="external" format="html" keys="IMPALA-9827"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9828" scope="external" format="html" keys="IMPALA-9828"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9829" scope="external" format="html" keys="IMPALA-9829"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9830" scope="external" format="html" keys="IMPALA-9830"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9831" scope="external" format="html" keys="IMPALA-9831"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9832" scope="external" format="html" keys="IMPALA-9832"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9833" scope="external" format="html" keys="IMPALA-9833"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9834" scope="external" format="html" keys="IMPALA-9834"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9835" scope="external" format="html" keys="IMPALA-9835"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9836" scope="external" format="html" keys="IMPALA-9836"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9837" scope="external" format="html" keys="IMPALA-9837"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9838" scope="external" format="html" keys="IMPALA-9838"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9839" scope="external" format="html" keys="IMPALA-9839"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9840" scope="external" format="html" keys="IMPALA-9840"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9841" scope="external" format="html" keys="IMPALA-9841"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9842" scope="external" format="html" keys="IMPALA-9842"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9843" scope="external" format="html" keys="IMPALA-9843"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9844" scope="external" format="html" keys="IMPALA-9844"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9845" scope="external" format="html" keys="IMPALA-9845"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9846" scope="external" format="html" keys="IMPALA-9846"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9847" scope="external" format="html" keys="IMPALA-9847"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9848" scope="external" format="html" keys="IMPALA-9848"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9849" scope="external" format="html" keys="IMPALA-9849"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9850" scope="external" format="html" keys="IMPALA-9850"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9851" scope="external" format="html" keys="IMPALA-9851"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9852" scope="external" format="html" keys="IMPALA-9852"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9853" scope="external" format="html" keys="IMPALA-9853"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9854" scope="external" format="html" keys="IMPALA-9854"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9855" scope="external" format="html" keys="IMPALA-9855"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9856" scope="external" format="html" keys="IMPALA-9856"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9857" scope="external" format="html" keys="IMPALA-9857"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9858" scope="external" format="html" keys="IMPALA-9858"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9859" scope="external" format="html" keys="IMPALA-9859"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9860" scope="external" format="html" keys="IMPALA-9860"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9861" scope="external" format="html" keys="IMPALA-9861"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9862" scope="external" format="html" keys="IMPALA-9862"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9863" scope="external" format="html" keys="IMPALA-9863"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9864" scope="external" format="html" keys="IMPALA-9864"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9865" scope="external" format="html" keys="IMPALA-9865"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9866" scope="external" format="html" keys="IMPALA-9866"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9867" scope="external" format="html" keys="IMPALA-9867"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9868" scope="external" format="html" keys="IMPALA-9868"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9869" scope="external" format="html" keys="IMPALA-9869"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9870" scope="external" format="html" keys="IMPALA-9870"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9871" scope="external" format="html" keys="IMPALA-9871"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9872" scope="external" format="html" keys="IMPALA-9872"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9873" scope="external" format="html" keys="IMPALA-9873"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9874" scope="external" format="html" keys="IMPALA-9874"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9875" scope="external" format="html" keys="IMPALA-9875"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9876" scope="external" format="html" keys="IMPALA-9876"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9877" scope="external" format="html" keys="IMPALA-9877"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9878" scope="external" format="html" keys="IMPALA-9878"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9879" scope="external" format="html" keys="IMPALA-9879"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9880" scope="external" format="html" keys="IMPALA-9880"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9881" scope="external" format="html" keys="IMPALA-9881"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9882" scope="external" format="html" keys="IMPALA-9882"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9883" scope="external" format="html" keys="IMPALA-9883"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9884" scope="external" format="html" keys="IMPALA-9884"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9885" scope="external" format="html" keys="IMPALA-9885"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9886" scope="external" format="html" keys="IMPALA-9886"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9887" scope="external" format="html" keys="IMPALA-9887"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9888" scope="external" format="html" keys="IMPALA-9888"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9889" scope="external" format="html" keys="IMPALA-9889"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9890" scope="external" format="html" keys="IMPALA-9890"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9891" scope="external" format="html" keys="IMPALA-9891"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9892" scope="external" format="html" keys="IMPALA-9892"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9893" scope="external" format="html" keys="IMPALA-9893"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9894" scope="external" format="html" keys="IMPALA-9894"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9895" scope="external" format="html" keys="IMPALA-9895"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9896" scope="external" format="html" keys="IMPALA-9896"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9897" scope="external" format="html" keys="IMPALA-9897"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9898" scope="external" format="html" keys="IMPALA-9898"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9899" scope="external" format="html" keys="IMPALA-9899"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9900" scope="external" format="html" keys="IMPALA-9900"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9901" scope="external" format="html" keys="IMPALA-9901"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9902" scope="external" format="html" keys="IMPALA-9902"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9903" scope="external" format="html" keys="IMPALA-9903"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9904" scope="external" format="html" keys="IMPALA-9904"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9905" scope="external" format="html" keys="IMPALA-9905"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9906" scope="external" format="html" keys="IMPALA-9906"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9907" scope="external" format="html" keys="IMPALA-9907"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9908" scope="external" format="html" keys="IMPALA-9908"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9909" scope="external" format="html" keys="IMPALA-9909"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9910" scope="external" format="html" keys="IMPALA-9910"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9911" scope="external" format="html" keys="IMPALA-9911"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9912" scope="external" format="html" keys="IMPALA-9912"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9913" scope="external" format="html" keys="IMPALA-9913"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9914" scope="external" format="html" keys="IMPALA-9914"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9915" scope="external" format="html" keys="IMPALA-9915"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9916" scope="external" format="html" keys="IMPALA-9916"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9917" scope="external" format="html" keys="IMPALA-9917"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9918" scope="external" format="html" keys="IMPALA-9918"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9919" scope="external" format="html" keys="IMPALA-9919"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9920" scope="external" format="html" keys="IMPALA-9920"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9921" scope="external" format="html" keys="IMPALA-9921"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9922" scope="external" format="html" keys="IMPALA-9922"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9923" scope="external" format="html" keys="IMPALA-9923"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9924" scope="external" format="html" keys="IMPALA-9924"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9925" scope="external" format="html" keys="IMPALA-9925"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9926" scope="external" format="html" keys="IMPALA-9926"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9927" scope="external" format="html" keys="IMPALA-9927"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9928" scope="external" format="html" keys="IMPALA-9928"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9929" scope="external" format="html" keys="IMPALA-9929"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9930" scope="external" format="html" keys="IMPALA-9930"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9931" scope="external" format="html" keys="IMPALA-9931"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9932" scope="external" format="html" keys="IMPALA-9932"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9933" scope="external" format="html" keys="IMPALA-9933"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9934" scope="external" format="html" keys="IMPALA-9934"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9935" scope="external" format="html" keys="IMPALA-9935"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9936" scope="external" format="html" keys="IMPALA-9936"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9937" scope="external" format="html" keys="IMPALA-9937"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9938" scope="external" format="html" keys="IMPALA-9938"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9939" scope="external" format="html" keys="IMPALA-9939"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9940" scope="external" format="html" keys="IMPALA-9940"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9941" scope="external" format="html" keys="IMPALA-9941"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9942" scope="external" format="html" keys="IMPALA-9942"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9943" scope="external" format="html" keys="IMPALA-9943"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9944" scope="external" format="html" keys="IMPALA-9944"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9945" scope="external" format="html" keys="IMPALA-9945"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9946" scope="external" format="html" keys="IMPALA-9946"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9947" scope="external" format="html" keys="IMPALA-9947"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9948" scope="external" format="html" keys="IMPALA-9948"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9949" scope="external" format="html" keys="IMPALA-9949"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9950" scope="external" format="html" keys="IMPALA-9950"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9951" scope="external" format="html" keys="IMPALA-9951"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9952" scope="external" format="html" keys="IMPALA-9952"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9953" scope="external" format="html" keys="IMPALA-9953"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9954" scope="external" format="html" keys="IMPALA-9954"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9955" scope="external" format="html" keys="IMPALA-9955"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9956" scope="external" format="html" keys="IMPALA-9956"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9957" scope="external" format="html" keys="IMPALA-9957"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9958" scope="external" format="html" keys="IMPALA-9958"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9959" scope="external" format="html" keys="IMPALA-9959"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9960" scope="external" format="html" keys="IMPALA-9960"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9961" scope="external" format="html" keys="IMPALA-9961"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9962" scope="external" format="html" keys="IMPALA-9962"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9963" scope="external" format="html" keys="IMPALA-9963"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9964" scope="external" format="html" keys="IMPALA-9964"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9965" scope="external" format="html" keys="IMPALA-9965"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9966" scope="external" format="html" keys="IMPALA-9966"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9967" scope="external" format="html" keys="IMPALA-9967"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9968" scope="external" format="html" keys="IMPALA-9968"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9969" scope="external" format="html" keys="IMPALA-9969"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9970" scope="external" format="html" keys="IMPALA-9970"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9971" scope="external" format="html" keys="IMPALA-9971"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9972" scope="external" format="html" keys="IMPALA-9972"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9973" scope="external" format="html" keys="IMPALA-9973"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9974" scope="external" format="html" keys="IMPALA-9974"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9975" scope="external" format="html" keys="IMPALA-9975"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9976" scope="external" format="html" keys="IMPALA-9976"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9977" scope="external" format="html" keys="IMPALA-9977"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9978" scope="external" format="html" keys="IMPALA-9978"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9979" scope="external" format="html" keys="IMPALA-9979"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9980" scope="external" format="html" keys="IMPALA-9980"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9981" scope="external" format="html" keys="IMPALA-9981"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9982" scope="external" format="html" keys="IMPALA-9982"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9983" scope="external" format="html" keys="IMPALA-9983"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9984" scope="external" format="html" keys="IMPALA-9984"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9985" scope="external" format="html" keys="IMPALA-9985"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9986" scope="external" format="html" keys="IMPALA-9986"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9987" scope="external" format="html" keys="IMPALA-9987"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9988" scope="external" format="html" keys="IMPALA-9988"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9989" scope="external" format="html" keys="IMPALA-9989"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9990" scope="external" format="html" keys="IMPALA-9990"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9991" scope="external" format="html" keys="IMPALA-9991"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9992" scope="external" format="html" keys="IMPALA-9992"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9993" scope="external" format="html" keys="IMPALA-9993"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9994" scope="external" format="html" keys="IMPALA-9994"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9995" scope="external" format="html" keys="IMPALA-9995"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9996" scope="external" format="html" keys="IMPALA-9996"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9997" scope="external" format="html" keys="IMPALA-9997"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9998" scope="external" format="html" keys="IMPALA-9998"/>
<keydef href="https://issues.apache.org/jira/browse/IMPALA-9999" scope="external" format="html" keys="IMPALA-9999"/>
<!-- Short form of mapping from Impala release to vendor-specific releases, for use in headings. -->
<keydef keys="impala45"><topicmeta><keywords><keyword>Impala 4.5</keyword></keywords></topicmeta></keydef>
<keydef keys="impala44"><topicmeta><keywords><keyword>Impala 4.4</keyword></keywords></topicmeta></keydef>
<keydef keys="impala43"><topicmeta><keywords><keyword>Impala 4.3</keyword></keywords></topicmeta></keydef>
<keydef keys="impala42"><topicmeta><keywords><keyword>Impala 4.2</keyword></keywords></topicmeta></keydef>
<keydef keys="impala41"><topicmeta><keywords><keyword>Impala 4.1</keyword></keywords></topicmeta></keydef>
<keydef keys="impala40"><topicmeta><keywords><keyword>Impala 4.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala34"><topicmeta><keywords><keyword>Impala 3.4</keyword></keywords></topicmeta></keydef>
<keydef keys="impala33"><topicmeta><keywords><keyword>Impala 3.3</keyword></keywords></topicmeta></keydef>
<keydef keys="impala32"><topicmeta><keywords><keyword>Impala 3.2</keyword></keywords></topicmeta></keydef>
<keydef keys="impala31"><topicmeta><keywords><keyword>Impala 3.1</keyword></keywords></topicmeta></keydef>
<keydef keys="impala30"><topicmeta><keywords><keyword>Impala 3.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala212"><topicmeta><keywords><keyword>Impala 2.12</keyword></keywords></topicmeta></keydef>
<keydef keys="impala211"><topicmeta><keywords><keyword>Impala 2.11</keyword></keywords></topicmeta></keydef>
<keydef keys="impala210"><topicmeta><keywords><keyword>Impala 2.10</keyword></keywords></topicmeta></keydef>
<keydef keys="impala29"><topicmeta><keywords><keyword>Impala 2.9</keyword></keywords></topicmeta></keydef>
<keydef keys="impala28"><topicmeta><keywords><keyword>Impala 2.8</keyword></keywords></topicmeta></keydef>
<keydef keys="impala27"><topicmeta><keywords><keyword>Impala 2.7</keyword></keywords></topicmeta></keydef>
<keydef keys="impala26"><topicmeta><keywords><keyword>Impala 2.6</keyword></keywords></topicmeta></keydef>
<keydef keys="impala25"><topicmeta><keywords><keyword>Impala 2.5</keyword></keywords></topicmeta></keydef>
<keydef keys="impala24"><topicmeta><keywords><keyword>Impala 2.4</keyword></keywords></topicmeta></keydef>
<keydef keys="impala23"><topicmeta><keywords><keyword>Impala 2.3</keyword></keywords></topicmeta></keydef>
<keydef keys="impala22"><topicmeta><keywords><keyword>Impala 2.2</keyword></keywords></topicmeta></keydef>
<keydef keys="impala21"><topicmeta><keywords><keyword>Impala 2.1</keyword></keywords></topicmeta></keydef>
<keydef keys="impala20"><topicmeta><keywords><keyword>Impala 2.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala14"><topicmeta><keywords><keyword>Impala 1.4</keyword></keywords></topicmeta></keydef>
<keydef keys="impala13"><topicmeta><keywords><keyword>Impala 1.3</keyword></keywords></topicmeta></keydef>
<!-- 3-part forms of version numbers, for use in release notes. -->
<!-- Using spaced-out form to avoid conflict with variable for 2.1.10 -->
<keydef keys="impala3_01_0"><topicmeta><keywords><keyword>Impala 3.1.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala3_00_0"><topicmeta><keywords><keyword>Impala 3.0.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala2_12_0"><topicmeta><keywords><keyword>Impala 2.12.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala2_11_0"><topicmeta><keywords><keyword>Impala 2.11.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala2100"><topicmeta><keywords><keyword>Impala 2.10.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala290"><topicmeta><keywords><keyword>Impala 2.9.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala280"><topicmeta><keywords><keyword>Impala 2.8.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala270"><topicmeta><keywords><keyword>Impala 2.7.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala263"><topicmeta><keywords><keyword>Impala 2.6.3</keyword></keywords></topicmeta></keydef>
<keydef keys="impala262"><topicmeta><keywords><keyword>Impala 2.6.2</keyword></keywords></topicmeta></keydef>
<keydef keys="impala260"><topicmeta><keywords><keyword>Impala 2.6.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala254"><topicmeta><keywords><keyword>Impala 2.5.4</keyword></keywords></topicmeta></keydef>
<keydef keys="impala253"><topicmeta><keywords><keyword>Impala 2.5.3</keyword></keywords></topicmeta></keydef>
<keydef keys="impala252"><topicmeta><keywords><keyword>Impala 2.5.2</keyword></keywords></topicmeta></keydef>
<keydef keys="impala251"><topicmeta><keywords><keyword>Impala 2.5.1</keyword></keywords></topicmeta></keydef>
<keydef keys="impala250"><topicmeta><keywords><keyword>Impala 2.5.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala241"><topicmeta><keywords><keyword>Impala 2.4.1</keyword></keywords></topicmeta></keydef>
<keydef keys="impala240"><topicmeta><keywords><keyword>Impala 2.4.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala2310"><topicmeta><keywords><keyword>Impala 2.3.10</keyword></keywords></topicmeta></keydef>
<keydef keys="impala234"><topicmeta><keywords><keyword>Impala 2.3.4</keyword></keywords></topicmeta></keydef>
<keydef keys="impala232"><topicmeta><keywords><keyword>Impala 2.3.2</keyword></keywords></topicmeta></keydef>
<keydef keys="impala231"><topicmeta><keywords><keyword>Impala 2.3.1</keyword></keywords></topicmeta></keydef>
<keydef keys="impala230"><topicmeta><keywords><keyword>Impala 2.3.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala224"><topicmeta><keywords><keyword>Impala 2.2.4</keyword></keywords></topicmeta></keydef>
<keydef keys="impala223"><topicmeta><keywords><keyword>Impala 2.2.3</keyword></keywords></topicmeta></keydef>
<keydef keys="impala2210"><topicmeta><keywords><keyword>Impala 2.2.10</keyword></keywords></topicmeta></keydef>
<keydef keys="impala229"><topicmeta><keywords><keyword>Impala 2.2.9</keyword></keywords></topicmeta></keydef>
<keydef keys="impala228"><topicmeta><keywords><keyword>Impala 2.2.8</keyword></keywords></topicmeta></keydef>
<keydef keys="impala227"><topicmeta><keywords><keyword>Impala 2.2.7</keyword></keywords></topicmeta></keydef>
<keydef keys="impala225"><topicmeta><keywords><keyword>Impala 2.2.5</keyword></keywords></topicmeta></keydef>
<keydef keys="impala221"><topicmeta><keywords><keyword>Impala 2.2.1</keyword></keywords></topicmeta></keydef>
<keydef keys="impala220"><topicmeta><keywords><keyword>Impala 2.2.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala2110"><topicmeta><keywords><keyword>Impala 2.1.10</keyword></keywords></topicmeta></keydef>
<keydef keys="impala217"><topicmeta><keywords><keyword>Impala 2.1.7</keyword></keywords></topicmeta></keydef>
<!-- This 3-part lookup key was defined for completeness, but never referenced.
Commenting out to avoid a conflict with the short key for Impala 2.10. -->
<!-- <keydef keys="impala210"><topicmeta><keywords><keyword>Impala 2.1.0</keyword></keywords></topicmeta></keydef> -->
<keydef keys="impala200"><topicmeta><keywords><keyword>Impala 2.0.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala140"><topicmeta><keywords><keyword>Impala 1.4.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala132"><topicmeta><keywords><keyword>Impala 1.3.2</keyword></keywords></topicmeta></keydef>
<keydef keys="impala130"><topicmeta><keywords><keyword>Impala 1.3.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala50_full"><topicmeta><keywords><keyword>Impala 5.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala42_full"><topicmeta><keywords><keyword>Impala 4.2</keyword></keywords></topicmeta></keydef>
<keydef keys="impala34_full"><topicmeta><keywords><keyword>Impala 3.4</keyword></keywords></topicmeta></keydef>
<keydef keys="impala33_full"><topicmeta><keywords><keyword>Impala 3.3</keyword></keywords></topicmeta></keydef>
<keydef keys="impala32_full"><topicmeta><keywords><keyword>Impala 3.2</keyword></keywords></topicmeta></keydef>
<keydef keys="impala31_full"><topicmeta><keywords><keyword>Impala 3.1</keyword></keywords></topicmeta></keydef>
<keydef keys="impala30_full"><topicmeta><keywords><keyword>Impala 3.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala212_full"><topicmeta><keywords><keyword>Impala 2.12</keyword></keywords></topicmeta></keydef>
<keydef keys="impala211_full"><topicmeta><keywords><keyword>Impala 2.11</keyword></keywords></topicmeta></keydef>
<keydef keys="impala210_full"><topicmeta><keywords><keyword>Impala 2.10</keyword></keywords></topicmeta></keydef>
<keydef keys="impala29_full"><topicmeta><keywords><keyword>Impala 2.9</keyword></keywords></topicmeta></keydef>
<keydef keys="impala28_full"><topicmeta><keywords><keyword>Impala 2.8</keyword></keywords></topicmeta></keydef>
<keydef keys="impala27_full"><topicmeta><keywords><keyword>Impala 2.7</keyword></keywords></topicmeta></keydef>
<keydef keys="impala26_full"><topicmeta><keywords><keyword>Impala 2.6</keyword></keywords></topicmeta></keydef>
<keydef keys="impala25_full"><topicmeta><keywords><keyword>Impala 2.5</keyword></keywords></topicmeta></keydef>
<keydef keys="impala24_full"><topicmeta><keywords><keyword>Impala 2.4</keyword></keywords></topicmeta></keydef>
<keydef keys="impala23_full"><topicmeta><keywords><keyword>Impala 2.3</keyword></keywords></topicmeta></keydef>
<keydef keys="impala223_full"><topicmeta><keywords><keyword>Impala 2.2.3</keyword></keywords></topicmeta></keydef>
<keydef keys="impala22_full"><topicmeta><keywords><keyword>Impala 2.2</keyword></keywords></topicmeta></keydef>
<keydef keys="impala21_full"><topicmeta><keywords><keyword>Impala 2.1</keyword></keywords></topicmeta></keydef>
<keydef keys="impala20_full"><topicmeta><keywords><keyword>Impala 2.0</keyword></keywords></topicmeta></keydef>
<keydef keys="impala14_full"><topicmeta><keywords><keyword>Impala 1.4</keyword></keywords></topicmeta></keydef>
<keydef keys="impala13_full"><topicmeta><keywords><keyword>Impala 1.3</keyword></keywords></topicmeta></keydef>
<!-- Pointers to changelog pages -->
<keydef keys="release_notes_40" href="https://impala.apache.org/docs/release-notes-4.0.html" scope="external" format="html"/>
<keydef keys="changelog_40" href="https://impala.apache.org/docs/changelog-4.0.html" scope="external" format="html"/>
<keydef keys="changelog_34" href="https://impala.apache.org/docs/changelog-3.4.html" scope="external" format="html"/>
<keydef keys="changelog_33" href="https://impala.apache.org/docs/changelog-3.3.html" scope="external" format="html"/>
<keydef keys="changelog_32" href="https://impala.apache.org/docs/changelog-3.2.html" scope="external" format="html"/>
<keydef keys="changelog_31" href="https://impala.apache.org/docs/changelog-3.1.html" scope="external" format="html"/>
<keydef keys="changelog_300" href="https://impala.apache.org/docs/changelog-3.0.html" scope="external" format="html"/>
<keydef keys="changelog_212" href="https://impala.apache.org/docs/changelog-2.12.html" scope="external" format="html"/>
<keydef keys="changelog_211" href="https://impala.apache.org/docs/changelog-2.11.html" scope="external" format="html"/>
<keydef keys="changelog_210" href="https://impala.apache.org/docs/changelog-2.10.html" scope="external" format="html"/>
<keydef keys="changelog_29" href="https://impala.apache.org/docs/changelog-2.9.html" scope="external" format="html"/>
<keydef keys="changelog_28" href="https://impala.apache.org/docs/changelog-2.8.html" scope="external" format="html"/>
<!-- Indirect addresses for all the impala*.xml files. The key is the ID of the first topic within each file. -->
<keydef href="topics/impala_concepts.xml" keys="concepts"/>
<keydef href="topics/impala_components.xml" keys="intro_components"/>
<keydef href="topics/impala_components.xml#intro_impalad" keys="intro_impalad"/>
<keydef href="topics/impala_components.xml#intro_statestore" keys="intro_statestore"/>
<keydef href="topics/impala_components.xml#intro_catalogd" keys="intro_catalogd"/>
<keydef href="topics/impala_development.xml" keys="intro_dev"/>
<keydef href="topics/impala_hadoop.xml" keys="intro_hadoop"/>
<keydef href="topics/impala_planning.xml" keys="planning"/>
<keydef href="topics/impala_prereqs.xml" keys="prereqs"/>
<!-- Removed <keydef href="topics/impala_cluster_sizing.xml" keys="cluster_sizing"/> -->
<keydef href="topics/impala_schema_design.xml" keys="schema_design"/>
<keydef href="topics/impala_install.xml" keys="install"/>
<keydef href="topics/impala_config.xml" keys="config"/>
<keydef href="topics/impala_config_performance.xml" keys="config_performance"/>
<keydef href="topics/impala_odbc.xml" keys="impala_odbc"/>
<keydef href="topics/impala_jdbc.xml" keys="impala_jdbc"/>
<keydef href="topics/impala_upgrading.xml" keys="upgrading"/>
<keydef href="topics/impala_processes.xml" keys="processes"/>
<keydef href="topics/impala_config_options.xml" keys="config_options"/>
<keydef href="topics/impala_tutorial.xml" keys="tutorial"/>
<keydef href="topics/impala_tutorial.xml#tut_beginner" keys="tut_beginner"/>
<keydef href="topics/impala_tutorial.xml#tutorial_explore" keys="tutorial_explore"/>
<keydef href="topics/impala_tutorial.xml#tutorial_csv_setup" keys="tutorial_csv_setup"/>
<keydef href="topics/impala_tutorial.xml#tutorial_create_table" keys="tutorial_create_table"/>
<keydef href="topics/impala_tutorial.xml#tutorial_describe_impala" keys="tutorial_describe_impala"/>
<keydef href="topics/impala_tutorial.xml#tutorial_query_impala" keys="tutorial_query_impala"/>
<keydef href="topics/impala_tutorial.xml#tutorial_etl" keys="tutorial_etl"/>
<keydef href="topics/impala_tutorial.xml#tutorial_loading" keys="tutorial_loading"/>
<keydef href="topics/impala_tutorial.xml#tutorial_queries" keys="tutorial_queries"/>
<keydef href="topics/impala_tutorial.xml#tut_advanced" keys="tut_advanced"/>
<keydef href="topics/impala_tutorial.xml#tut_external_partition_data" keys="tut_external_partition_data"/>
<keydef href="topics/impala_tutorial.xml#tutorial_impala_hive" keys="tutorial_impala_hive"/>
<keydef href="topics/impala_tutorial.xml#tut_cross_join" keys="tut_cross_join"/>
<keydef href="topics/impala_tutorial.xml#tut_parquet_schemaless" keys="tut_parquet_schemaless"/>
<keydef href="topics/impala_admin.xml" keys="admin"/>
<keydef href="topics/impala_admission.xml" keys="admission_control"/>
<keydef href="topics/impala_resource_management.xml" keys="resource_management"/>
<keydef href="topics/impala_timeouts.xml" keys="timeouts"/>
<keydef href="topics/impala_proxy.xml" keys="proxy"/>
<keydef href="topics/impala_disk_space.xml" keys="disk_space"/>
<keydef href="topics/impala_workload_mgmt.xml" keys="workload_mgmt"/>
<keydef href="topics/impala_auditing.xml" keys="auditing"/>
<keydef href="topics/impala_lineage.xml" keys="lineage"/>
<keydef href="topics/impala_security.xml" keys="security"/>
<keydef href="topics/impala_security_guidelines.xml" keys="security_guidelines"/>
<keydef href="topics/impala_security_files.xml" keys="secure_files"/>
<keydef href="topics/impala_security_install.xml" keys="security_install"/>
<keydef href="topics/impala_security_metastore.xml" keys="security_metastore"/>
<keydef href="topics/impala_security_webui.xml" keys="security_webui"/>
<keydef href="topics/impala_ssl.xml" keys="ssl"/>
<keydef href="topics/impala_authorization.xml" keys="authorization">
<topicmeta><linktext>Enabling Sentry Authorization for Impala</linktext></topicmeta>
</keydef>
<keydef href="topics/impala_authentication.xml" keys="authentication"/>
<keydef href="topics/impala_kerberos.xml" keys="kerberos"/>
<keydef href="topics/impala_kerberos.xml#kerberos_prereqs" keys="kerberos_prereqs"/>
<keydef href="topics/impala_kerberos.xml#kerberos_config" keys="kerberos_config"/>
<keydef href="topics/impala_kerberos.xml#kerberos_setup" keys="kerberos_setup"/>
<keydef href="topics/impala_kerberos.xml#kerberos_proxy" keys="kerberos_proxy"/>
<keydef href="topics/impala_kerberos.xml#kerberos_delegation" keys="kerberos_delegation"/>
<keydef href="topics/impala_kerberos.xml#whitelisting_internal_apis" keys="whitelisting_internal_apis"/>
<keydef href="topics/impala_kerberos.xml#auth_to_local" keys="auth_to_local"/>
<keydef href="topics/impala_ldap.xml" keys="ldap"/>
<keydef href="topics/impala_mixed_security.xml" keys="mixed_security"/>
<keydef href="topics/impala_delegation.xml" keys="delegation"/>
<keydef href="topics/impala_langref.xml" keys="langref"/>
<keydef href="topics/impala_comments.xml" keys="comments"/>
<keydef href="topics/impala_datatypes.xml" keys="datatypes"/>
<keydef href="topics/impala_array.xml" keys="array"/>
<keydef href="topics/impala_bigint.xml" keys="bigint"/>
<keydef href="topics/impala_boolean.xml" keys="boolean"/>
<keydef href="topics/impala_char.xml" keys="char"/>
<keydef href="topics/impala_decimal.xml" keys="decimal"/>
<keydef href="topics/impala_double.xml" keys="double"/>
<keydef href="topics/impala_float.xml" keys="float"/>
<keydef href="topics/impala_int.xml" keys="int"/>
<keydef href="topics/impala_map.xml" keys="map"/>
<keydef href="topics/impala_real.xml" keys="real"/>
<keydef href="topics/impala_smallint.xml" keys="smallint"/>
<keydef href="topics/impala_string.xml" keys="string"/>
<keydef href="topics/impala_struct.xml" keys="struct"/>
<keydef href="topics/impala_timestamp.xml" keys="timestamp"/>
<keydef href="topics/impala_tinyint.xml" keys="tinyint"/>
<keydef href="topics/impala_varchar.xml" keys="varchar"/>
<keydef href="topics/impala_complex_types.xml" keys="complex_types"/>
<keydef href="topics/impala_literals.xml" keys="literals"/>
<keydef href="topics/impala_operators.xml" keys="operators"/>
<keydef href="topics/impala_operators.xml#arithmetic_operators" keys="arithmetic_operators"/>
<keydef href="topics/impala_operators.xml#between" keys="between"/>
<keydef href="topics/impala_operators.xml#comparison_operators" keys="comparison_operators"/>
<keydef audience="hidden" href="topics/impala_operators.xml#except" keys="except"/>
<keydef href="topics/impala_operators.xml#exists" keys="exists"/>
<keydef href="topics/impala_operators.xml#ilike" keys="ilike"/>
<keydef href="topics/impala_operators.xml#in" keys="in"/>
<keydef audience="hidden" href="topics/impala_operators.xml#intersect" keys="intersect">
<topicmeta><linktext>INTERSECT</linktext></topicmeta>
</keydef>
<keydef href="topics/impala_operators.xml#iregexp" keys="iregexp"/>
<keydef href="topics/impala_operators.xml#is_distinct_from" keys="is_distinct_from"/>
<keydef href="topics/impala_operators.xml#is_null" keys="is_null"/>
<keydef href="topics/impala_operators.xml#like" keys="like"/>
<keydef href="topics/impala_operators.xml#logical_operators" keys="logical_operators"/>
<keydef href="topics/impala_operators.xml#regexp" keys="regexp"/>
<keydef href="topics/impala_operators.xml#rlike" keys="rlike"/>
<keydef href="topics/impala_schema_objects.xml" keys="schema_objects"/>
<keydef href="topics/impala_aliases.xml" keys="aliases"/>
<keydef href="topics/impala_databases.xml" keys="databases"/>
<keydef href="topics/impala_functions_overview.xml" keys="functions"/>
<keydef href="topics/impala_identifiers.xml" keys="identifiers"/>
<keydef href="topics/impala_tables.xml" keys="tables"/>
<keydef href="topics/impala_tables.xml#kudu_tables" keys="kudu_tables"/>
<keydef href="topics/impala_views.xml" keys="views"/>
<keydef href="topics/impala_langref_sql.xml" keys="langref_sql"/>
<keydef href="topics/impala_ddl.xml" keys="ddl"/>
<keydef href="topics/impala_dml.xml" keys="dml"/>
<keydef href="topics/impala_alter_table.xml" keys="alter_table"/>
<keydef href="topics/impala_alter_view.xml" keys="alter_view"/>
<keydef href="topics/impala_compute_stats.xml" keys="compute_stats"/>
<keydef href="topics/impala_create_database.xml" keys="create_database"/>
<keydef href="topics/impala_create_function.xml" keys="create_function"/>
<keydef href="topics/impala_create_role.xml" keys="create_role"/>
<keydef href="topics/impala_create_table.xml" keys="create_table"/>
<keydef href="topics/impala_create_view.xml" keys="create_view"/>
<keydef href="topics/impala_delete.xml" keys="delete"/>
<keydef href="topics/impala_describe.xml" keys="describe"/>
<keydef href="topics/impala_drop_database.xml" keys="drop_database"/>
<keydef href="topics/impala_drop_function.xml" keys="drop_function"/>
<keydef href="topics/impala_drop_role.xml" keys="drop_role"/>
<keydef href="topics/impala_drop_stats.xml" keys="drop_stats"/>
<keydef href="topics/impala_drop_table.xml" keys="drop_table"/>
<keydef href="topics/impala_drop_view.xml" keys="drop_view"/>
<keydef href="topics/impala_explain.xml" keys="explain"/>
<keydef href="topics/impala_grant.xml" keys="grant"/>
<keydef href="topics/impala_insert.xml" keys="insert"/>
<keydef href="topics/impala_insert.xml#values" keys="values"/>
<keydef href="topics/impala_invalidate_metadata.xml" keys="invalidate_metadata"/>
<keydef href="topics/impala_load_data.xml" keys="load_data"/>
<keydef href="topics/impala_refresh.xml" keys="refresh"/>
<keydef href="topics/impala_revoke.xml" keys="revoke"/>
<keydef href="topics/impala_select.xml" keys="select"/>
<keydef href="topics/impala_joins.xml" keys="joins"/>
<keydef href="topics/impala_order_by.xml" keys="order_by"/>
<keydef href="topics/impala_group_by.xml" keys="group_by"/>
<keydef rev="IMPALA-5309" href="topics/impala_tablesample.xml" keys="tablesample"/>
<keydef href="topics/impala_having.xml" keys="having"/>
<keydef href="topics/impala_limit.xml" keys="limit"/>
<keydef href="topics/impala_offset.xml" keys="offset"/>
<keydef href="topics/impala_union.xml" keys="union"/>
<keydef href="topics/impala_subqueries.xml" keys="subqueries"/>
<keydef href="topics/impala_with.xml" keys="with"/>
<keydef href="topics/impala_distinct.xml" keys="distinct"/>
<keydef href="topics/impala_hints.xml" keys="hints"/>
<keydef href="topics/impala_set.xml" keys="set"/>
<keydef href="topics/impala_abort_on_error.xml" keys="abort_on_error"/>
<keydef href="topics/impala_allow_unsupported_formats.xml" keys="allow_unsupported_formats"/>
<keydef href="topics/impala_appx_count_distinct.xml" keys="appx_count_distinct"/>
<keydef href="topics/impala_batch_size.xml" keys="batch_size"/>
<keydef rev="2.10.0 IMPALA-3200" href="topics/impala_buffer_pool_limit.xml" keys="buffer_pool_limit"/>
<keydef href="topics/impala_compression_codec.xml" keys="compression_codec"/>
<keydef href="topics/impala_compute_stats_min_sample_size.xml" keys="compute_stats_min_sample_size"/>
<keydef href="topics/impala_debug_action.xml" keys="debug_action"/>
<keydef href="topics/impala_default_join_distribution_mode.xml" keys="default_join_distribution_mode"/>
<keydef rev="2.10.0 IMPALA-3200" href="topics/impala_default_spillable_buffer_size.xml" keys="default_spillable_buffer_size"/>
<keydef href="topics/impala_disable_codegen.xml" keys="disable_codegen"/>
<keydef href="topics/impala_disable_codegen_rows_threshold.xml" keys="disable_codegen_rows_threshold"/>
<keydef href="topics/impala_disable_row_runtime_filtering.xml" keys="disable_row_runtime_filtering"/>
<keydef href="topics/impala_disable_streaming_preaggregations.xml" keys="disable_streaming_preaggregations"/>
<keydef href="topics/impala_disable_unsafe_spills.xml" keys="disable_unsafe_spills"/>
<keydef href="topics/impala_exec_single_node_rows_threshold.xml" keys="exec_single_node_rows_threshold"/>
<keydef href="topics/impala_exec_time_limit_s.xml" keys="exec_time_limit_s"/>
<keydef href="topics/impala_explain_level.xml" keys="explain_level"/>
<keydef href="topics/impala_hbase_cache_blocks.xml" keys="hbase_cache_blocks"/>
<keydef href="topics/impala_hbase_caching.xml" keys="hbase_caching"/>
<keydef href="topics/impala_live_progress.xml" keys="live_progress"/>
<keydef href="topics/impala_live_summary.xml" keys="live_summary"/>
<keydef href="topics/impala_max_errors.xml" keys="max_errors"/>
<keydef rev="2.10.0 IMPALA-3200" href="topics/impala_max_row_size.xml" keys="max_row_size"/>
<keydef href="topics/impala_max_scan_range_length.xml" keys="max_scan_range_length"/>
<keydef href="topics/impala_max_num_runtime_filters.xml" keys="max_num_runtime_filters"/>
<keydef href="topics/impala_mem_limit.xml" keys="mem_limit"/>
<keydef rev="2.10.0 IMPALA-3200" href="topics/impala_min_spillable_buffer_size.xml" keys="min_spillable_buffer_size"/>
<keydef href="topics/impala_mt_dop.xml" keys="mt_dop"/>
<keydef href="topics/impala_num_nodes.xml" keys="num_nodes"/>
<keydef href="topics/impala_num_scanner_threads.xml" keys="num_scanner_threads"/>
<keydef href="topics/impala_optimize_partition_key_scans.xml" keys="optimize_partition_key_scans"/>
<keydef href="topics/impala_parquet_compression_codec.xml" keys="parquet_compression_codec"/>
<keydef href="topics/impala_parquet_annotate_strings_utf8.xml" keys="parquet_annotate_strings_utf8"/>
<keydef href="topics/impala_parquet_array_resolution.xml" keys="parquet_array_resolution"/>
<keydef href="topics/impala_parquet_fallback_schema_resolution.xml" keys="parquet_fallback_schema_resolution"/>
<keydef href="topics/impala_parquet_file_size.xml" keys="parquet_file_size"/>
<keydef href="topics/impala_prefetch_mode.xml" keys="prefetch_mode"/>
<keydef href="topics/impala_query_timeout_s.xml" keys="query_timeout_s"/>
<keydef href="topics/impala_request_pool.xml" keys="request_pool"/>
<keydef href="topics/impala_schedule_random_replica.xml" keys="schedule_random_replica"/>
<keydef href="topics/impala_replica_preference.xml" keys="replica_preference"/>
<keydef href="topics/impala_runtime_bloom_filter_size.xml" keys="runtime_bloom_filter_size"/>
<keydef href="topics/impala_runtime_filter_max_size.xml" keys="runtime_filter_max_size"/>
<keydef href="topics/impala_runtime_filter_min_size.xml" keys="runtime_filter_min_size"/>
<keydef href="topics/impala_runtime_filter_mode.xml" keys="runtime_filter_mode"/>
<keydef href="topics/impala_runtime_filter_wait_time_ms.xml" keys="runtime_filter_wait_time_ms"/>
<keydef href="topics/impala_s3_skip_insert_staging.xml" keys="s3_skip_insert_staging"/>
<keydef href="topics/impala_scratch_limit.xml" keys="scratch_limit"/>
<keydef href="topics/impala_shuffle_distinct_exprs.xml" keys="shuffle_distinct_exprs"/>
<keydef href="topics/impala_support_start_over.xml" keys="support_start_over"/>
<keydef href="topics/impala_sync_ddl.xml" keys="sync_ddl"/>
<keydef href="topics/impala_show.xml" keys="show"/>
<keydef href="topics/impala_show.xml#show_files" keys="show_files"/>
<keydef href="topics/impala_show.xml#show_roles" keys="show_roles"/>
<keydef href="topics/impala_show.xml#show_current_role" keys="show_current_role"/>
<keydef href="topics/impala_show.xml#show_role_grant" keys="show_role_grant"/>
<keydef href="topics/impala_show.xml#show_grant_role" keys="show_grant_role"/>
<keydef href="topics/impala_show.xml#show_databases" keys="show_databases"/>
<keydef href="topics/impala_show.xml#show_tables" keys="show_tables"/>
<keydef href="topics/impala_show.xml#show_create_table" keys="show_create_table"/>
<keydef href="topics/impala_show.xml#show_table_stats" keys="show_table_stats"/>
<keydef href="topics/impala_show.xml#show_column_stats" keys="show_column_stats"/>
<keydef href="topics/impala_show.xml#show_partitions" keys="show_partitions"/>
<keydef href="topics/impala_show.xml#show_functions" keys="show_functions"/>
<keydef audience="hidden" href="topics/impala_show.xml#show_data_sources" keys="show_data_sources"/>
<keydef href="topics/impala_truncate_table.xml" keys="truncate_table"/>
<keydef href="topics/impala_update.xml" keys="update"/>
<keydef href="topics/impala_upsert.xml" keys="upsert"/>
<keydef href="topics/impala_use.xml" keys="use"/>
<keydef href="topics/impala_functions.xml" keys="builtins"/>
<keydef href="topics/impala_math_functions.xml" keys="math_functions"/>
<keydef href="topics/impala_bit_functions.xml" keys="bit_functions"/>
<keydef href="topics/impala_conversion_functions.xml" keys="conversion_functions"/>
<keydef href="topics/impala_datetime_functions.xml" keys="datetime_functions"/>
<keydef href="topics/impala_conditional_functions.xml" keys="conditional_functions"/>
<keydef href="topics/impala_string_functions.xml" keys="string_functions"/>
<keydef href="topics/impala_misc_functions.xml" keys="misc_functions"/>
<keydef href="topics/impala_aggregate_functions.xml" keys="aggregate_functions"/>
<keydef href="topics/impala_appx_median.xml" keys="appx_median"/>
<keydef href="topics/impala_avg.xml" keys="avg"/>
<keydef href="topics/impala_count.xml" keys="count"/>
<keydef href="topics/impala_group_concat.xml" keys="group_concat"/>
<keydef href="topics/impala_max.xml" keys="max"/>
<keydef href="topics/impala_min.xml" keys="min"/>
<keydef href="topics/impala_ndv.xml" keys="ndv"/>
<keydef href="topics/impala_stddev.xml" keys="stddev"/>
<keydef href="topics/impala_sum.xml" keys="sum"/>
<keydef href="topics/impala_variance.xml" keys="variance"/>
<keydef href="topics/impala_analytic_functions.xml" keys="analytic_functions"/>
<keydef href="topics/impala_analytic_functions.xml#over" keys="over"/>
<keydef href="topics/impala_analytic_functions.xml#window_clause" keys="window_clause"/>
<keydef href="topics/impala_analytic_functions.xml#avg_analytic" keys="avg_analytic"/>
<keydef href="topics/impala_analytic_functions.xml#count_analytic" keys="count_analytic"/>
<keydef href="topics/impala_analytic_functions.xml#cume_dist" keys="cume_dist"/>
<keydef href="topics/impala_analytic_functions.xml#dense_rank" keys="dense_rank"/>
<keydef href="topics/impala_analytic_functions.xml#first_value" keys="first_value"/>
<keydef href="topics/impala_analytic_functions.xml#lag" keys="lag"/>
<keydef href="topics/impala_analytic_functions.xml#last_value" keys="last_value"/>
<keydef href="topics/impala_analytic_functions.xml#lead" keys="lead"/>
<keydef href="topics/impala_analytic_functions.xml#max_analytic" keys="max_analytic"/>
<keydef href="topics/impala_analytic_functions.xml#min_analytic" keys="min_analytic"/>
<keydef audience="hidden" href="topics/impala_analytic_functions.xml#nth_value" keys="nth_value"/>
<keydef href="topics/impala_analytic_functions.xml#ntile" keys="ntile"/>
<keydef href="topics/impala_analytic_functions.xml#percent_rank" keys="percent_rank"/>
<keydef href="topics/impala_analytic_functions.xml#rank" keys="rank"/>
<keydef href="topics/impala_analytic_functions.xml#row_number" keys="row_number"/>
<keydef href="topics/impala_analytic_functions.xml#sum_analytic" keys="sum_analytic"/>
<keydef href="topics/impala_geospatial_functions.xml" keys="geospatial_functions"/>
<keydef href="topics/impala_udf.xml" keys="udfs"/>
<keydef href="topics/impala_udf.xml#udf_concepts" keys="udf_concepts"/>
<keydef href="topics/impala_udf.xml#udfs_udafs" keys="udfs_udafs"/>
<keydef href="topics/impala_udf.xml#native_udfs" keys="native_udfs"/>
<keydef href="topics/impala_udf.xml#udfs_hive" keys="udfs_hive"/>
<keydef href="topics/impala_udf.xml#udf_runtime" keys="udf_runtime"/>
<keydef href="topics/impala_udf.xml#udf_demo_env" keys="udf_demo_env"/>
<keydef href="topics/impala_udf.xml#udf_coding" keys="udf_coding"/>
<keydef href="topics/impala_udf.xml#udf_exploring" keys="udf_exploring"/>
<keydef href="topics/impala_udf.xml#udfs_args" keys="udfs_args"/>
<keydef href="topics/impala_udf.xml#udf_varargs" keys="udf_varargs"/>
<keydef href="topics/impala_udf.xml#udf_null" keys="udf_null"/>
<keydef href="topics/impala_udf.xml#udf_malloc" keys="udf_malloc"/>
<keydef href="topics/impala_udf.xml#udf_threads" keys="udf_threads"/>
<keydef href="topics/impala_udf.xml#udf_error_handling" keys="udf_error_handling"/>
<keydef href="topics/impala_udf.xml#udafs" keys="udafs"/>
<keydef href="topics/impala_udf.xml#uda_functions" keys="uda_functions"/>
<keydef href="topics/impala_udf.xml#udf_intermediate" keys="udf_intermediate"/>
<keydef href="topics/impala_udf.xml#udf_building" keys="udf_building"/>
<keydef href="topics/impala_udf.xml#udf_performance" keys="udf_performance"/>
<keydef href="topics/impala_udf.xml#udf_tutorial" keys="udf_tutorial"/>
<keydef href="topics/impala_udf.xml#udf_security" keys="udf_security"/>
<keydef href="topics/impala_udf.xml#udf_limits" keys="udf_limits"/>
<keydef href="topics/impala_langref_unsupported.xml" keys="langref_hiveql_delta"/>
<keydef href="topics/impala_porting.xml" keys="porting"/>
<keydef href="topics/impala_impala_shell.xml" keys="impala_shell"/>
<keydef href="topics/impala_shell_options.xml" keys="shell_options"/>
<keydef href="topics/impala_shell_options.xml#shell_option_summary" keys="shell_option_summary"/>
<keydef href="topics/impala_shell_options.xml#shell_config_file" keys="shell_config_file"/>
<keydef href="topics/impala_connecting.xml" keys="connecting"/>
<keydef href="topics/impala_shell_running_commands.xml" keys="shell_running_commands"/>
<keydef href="topics/impala_shell_commands.xml" keys="shell_commands"/>
<keydef href="topics/impala_performance.xml" keys="performance"/>
<keydef audience="hidden" href="topics/impala_performance.xml#perf_network" keys="perf_network"/>
<keydef audience="hidden" href="topics/impala_performance.xml#perf_partition_schema" keys="perf_partition_schema"/>
<keydef audience="hidden" href="topics/impala_performance.xml#perf_partition_query" keys="perf_partition_query"/>
<keydef audience="hidden" href="topics/impala_performance.xml#perf_monitoring" keys="perf_monitoring"/>
<keydef audience="hidden" href="topics/impala_performance.xml#perf_query_coord" keys="perf_query_coord"/>
<keydef audience="hidden" href="topics/impala_performance.xml#perf_bottlenecks" keys="perf_bottlenecks"/>
<keydef audience="hidden" href="topics/impala_performance.xml#perf_long_queries" keys="perf_long_queries"/>
<keydef audience="hidden" href="topics/impala_performance.xml#perf_load" keys="perf_load"/>
<keydef audience="hidden" href="topics/impala_performance.xml#perf_file_formats" keys="perf_file_formats"/>
<keydef audience="hidden" href="topics/impala_performance.xml#perf_compression" keys="perf_compression"/>
<keydef audience="hidden" href="topics/impala_performance.xml#perf_codegen" keys="perf_codegen"/>
<keydef href="topics/impala_perf_cookbook.xml" keys="perf_cookbook"/>
<keydef href="topics/impala_perf_joins.xml" keys="perf_joins"/>
<keydef href="topics/impala_perf_joins.xml#joins_no_stats" keys="joins_no_stats"/>
<keydef href="topics/impala_perf_joins.xml#straight_join" keys="straight_join"/>
<keydef href="topics/impala_perf_joins.xml#perf_joins_examples" keys="perf_joins_examples"/>
<keydef href="topics/impala_perf_stats.xml" keys="perf_stats"/>
<keydef href="topics/impala_perf_benchmarking.xml" keys="perf_benchmarks"/>
<keydef href="topics/impala_perf_resources.xml" keys="mem_limits"/>
<keydef href="topics/impala_runtime_filtering.xml" keys="runtime_filtering"/>
<keydef href="topics/impala_perf_hdfs_caching.xml" keys="hdfs_caching"/>
<keydef href="topics/impala_perf_testing.xml" keys="performance_testing"/>
<keydef href="topics/impala_explain_plan.xml" keys="explain_plan"/>
<keydef href="topics/impala_explain_plan.xml#perf_explain" keys="perf_explain"/>
<keydef href="topics/impala_explain_plan.xml#perf_summary" keys="perf_summary"/>
<keydef href="topics/impala_explain_plan.xml#perf_profile" keys="perf_profile"/>
<keydef href="topics/impala_perf_skew.xml" keys="perf_skew"/>
<keydef audience="hidden" href="topics/impala_perf_ddl.xml" keys="perf_ddl"/>
<keydef href="topics/impala_scalability.xml" keys="scalability"/>
<keydef audience="hidden" href="topics/impala_scalability.xml#scalability_memory" keys="scalability_memory"/>
<keydef href="topics/impala_scalability.xml#scalability_catalog" keys="scalability_catalog"/>
<keydef href="topics/impala_dedicated_coordinator.xml" keys="scalability_coordinator"/>
<keydef href="topics/impala_scalability.xml#statestore_scalability" keys="statestore_scalability"/>
<keydef href="topics/impala_scalability.xml#scalability_buffer_pool" keys="scalability_buffer_pool"/>
<keydef audience="hidden" href="topics/impala_scalability.xml#scalability_cluster_size" keys="scalability_cluster_size"/>
<keydef audience="hidden" href="topics/impala_scalability.xml#concurrent_connections" keys="concurrent_connections"/>
<keydef href="topics/impala_scalability.xml#spill_to_disk" keys="spill_to_disk"/>
<keydef href="topics/impala_scalability.xml#complex_query" keys="complex_query"/>
<keydef href="topics/impala_scalability.xml#scalability_io" keys="scalability_io"/>
<keydef href="topics/impala_scalability.xml#big_tables" keys="big_tables"/>
<keydef href="topics/impala_scalability.xml#kerberos_overhead_cluster_size" keys="kerberos_overhead_cluster_size"/>
<keydef href="topics/impala_scalability.xml#scalability_hotspots" keys="scalability_hotspots"/>
<keydef href="topics/impala_scalability.xml#scalability_file_handle_cache" keys="scalability_file_handle_cache"/>
<keydef href="topics/impala_partitioning.xml" keys="partitioning"/>
<keydef href="topics/impala_partitioning.xml#partitioning_choosing" keys="partitioning_choosing"/>
<keydef href="topics/impala_partitioning.xml#partition_sql" keys="partition_sql"/>
<keydef href="topics/impala_partitioning.xml#partition_static_dynamic" keys="partition_static_dynamic"/>
<keydef href="topics/impala_partitioning.xml#partition_refresh" keys="partition_refresh"/>
<keydef href="topics/impala_partitioning.xml#partition_permissions" keys="partition_permissions"/>
<keydef href="topics/impala_partitioning.xml#partition_pruning" keys="partition_pruning"/>
<keydef href="topics/impala_partitioning.xml#partition_pruning_checking" keys="partition_pruning_checking"/>
<keydef href="topics/impala_partitioning.xml#partition_pruning_sql" keys="partition_pruning_sql"/>
<keydef href="topics/impala_partitioning.xml#dynamic_partition_pruning" keys="dynamic_partition_pruning"/>
<keydef href="topics/impala_partitioning.xml#partition_key_columns" keys="partition_key_columns"/>
<keydef href="topics/impala_partitioning.xml#mixed_format_partitions" keys="mixed_format_partitions"/>
<keydef href="topics/impala_partitioning.xml#partition_management" keys="partition_management"/>
<keydef href="topics/impala_partitioning.xml#partition_kudu" keys="partition_kudu"/>
<keydef href="topics/impala_file_formats.xml" keys="file_formats"/>
<keydef href="topics/impala_txtfile.xml" keys="txtfile"/>
<keydef href="topics/impala_txtfile.xml#text_performance" keys="text_performance"/>
<keydef href="topics/impala_txtfile.xml#text_ddl" keys="text_ddl"/>
<keydef href="topics/impala_txtfile.xml#text_data_files" keys="text_data_files"/>
<keydef href="topics/impala_txtfile.xml#text_etl" keys="text_etl"/>
<keydef href="topics/impala_txtfile.xml#lzo" keys="lzo"/>
<keydef href="topics/impala_txtfile.xml#gzip" keys="gzip"/>
<keydef audience="hidden" href="topics/impala_txtfile.xml#txtfile_data_types" keys="txtfile_data_types"/>
<keydef href="topics/impala_parquet.xml" keys="parquet"/>
<keydef href="topics/impala_parquet.xml#parquet_ddl" keys="parquet_ddl"/>
<keydef href="topics/impala_parquet.xml#parquet_etl" keys="parquet_etl"/>
<keydef href="topics/impala_parquet.xml#parquet_performance" keys="parquet_performance"/>
<keydef href="topics/impala_parquet.xml#parquet_partitioning" keys="parquet_partitioning"/>
<keydef href="topics/impala_parquet.xml#parquet_compression" keys="parquet_compression"/>
<keydef href="topics/impala_parquet.xml#parquet_snappy" keys="parquet_snappy"/>
<keydef href="topics/impala_parquet.xml#parquet_gzip" keys="parquet_gzip"/>
<keydef href="topics/impala_parquet.xml#parquet_none" keys="parquet_none"/>
<keydef href="topics/impala_parquet.xml#parquet_compression_examples" keys="parquet_compression_examples"/>
<keydef href="topics/impala_parquet.xml#parquet_compression_multiple" keys="parquet_compression_multiple"/>
<keydef href="topics/impala_parquet.xml#parquet_complex_types" keys="parquet_complex_types"/>
<keydef href="topics/impala_parquet.xml#parquet_interop" keys="parquet_interop"/>
<keydef href="topics/impala_parquet.xml#parquet_data_files" keys="parquet_data_files"/>
<keydef href="topics/impala_parquet.xml#parquet_encoding" keys="parquet_encoding"/>
<keydef href="topics/impala_parquet.xml#parquet_compacting" keys="parquet_compacting"/>
<keydef href="topics/impala_parquet.xml#parquet_schema_evolution" keys="parquet_schema_evolution"/>
<keydef href="topics/impala_parquet.xml#parquet_data_types" keys="parquet_data_types"/>
<keydef href="topics/impala_avro.xml" keys="avro"/>
<keydef href="topics/impala_avro.xml#avro_create_table" keys="avro_create_table"/>
<keydef href="topics/impala_avro.xml#avro_map_table" keys="avro_map_table"/>
<keydef href="topics/impala_avro.xml#avro_json" keys="avro_json"/>
<keydef href="topics/impala_avro.xml#avro_load_data" keys="avro_load_data"/>
<keydef href="topics/impala_avro.xml#avro_compression" keys="avro_compression"/>
<keydef href="topics/impala_avro.xml#avro_schema_evolution" keys="avro_schema_evolution"/>
<keydef href="topics/impala_avro.xml#avro_data_types" keys="avro_data_types"/>
<keydef href="topics/impala_avro.xml#avro_performance" keys="avro_performance"/>
<keydef href="topics/impala_avro.xml#avro_performance" keys="avro_performance"/>
<keydef href="topics/impala_rcfile.xml" keys="rcfile"/>
<keydef href="topics/impala_seqfile.xml" keys="seqfile"/>
<keydef href="topics/impala_kudu.xml" keys="impala_kudu"/>
<keydef href="topics/impala_hbase.xml" keys="impala_hbase"/>
<keydef href="topics/impala_hbase.xml#hbase_using" keys="hbase_using"/>
<keydef href="topics/impala_hbase.xml#hbase_config" keys="hbase_config"/>
<keydef href="topics/impala_hbase.xml#hbase_types" keys="hbase_types"/>
<keydef href="topics/impala_hbase.xml#hbase_performance" keys="hbase_performance"/>
<keydef href="topics/impala_hbase.xml#hbase_scenarios" keys="hbase_scenarios"/>
<keydef audience="hidden" href="topics/impala_hbase.xml#hbase_create_new" keys="hbase_create_new"/>
<keydef audience="hidden" href="topics/impala_hbase.xml#hbase_reuse_existing" keys="hbase_reuse_existing"/>
<keydef audience="hidden" href="topics/impala_hbase.xml#hbase_column_families" keys="hbase_column_families"/>
<keydef href="topics/impala_hbase.xml#hbase_loading" keys="hbase_loading"/>
<keydef href="topics/impala_hbase.xml#hbase_limitations" keys="hbase_limitations"/>
<keydef href="topics/impala_hbase.xml#hbase_queries" keys="hbase_queries"/>
<keydef href="topics/impala_s3.xml" keys="s3"/>
<keydef href="topics/impala_isilon.xml" keys="impala_isilon"/>
<keydef href="topics/impala_ozone.xml" keys="impala_ozone"/>
<keydef href="topics/impala_logging.xml" keys="logging"/>
<keydef href="topics/impala_logging.xml#logs_details" keys="logs_details"/>
<keydef href="topics/impala_logging.xml#logs_rotate" keys="logs_rotate"/>
<keydef href="topics/impala_logging.xml#logs_debug" keys="logs_debug"/>
<keydef href="topics/impala_logging.xml#log_format" keys="log_format"/>
<keydef href="topics/impala_logging.xml#log_levels" keys="log_levels"/>
<keydef href="topics/impala_logging.xml#redaction" keys="redaction"/>
<keydef href="topics/impala_troubleshooting.xml" keys="troubleshooting"/>
<keydef href="topics/impala_webui.xml" keys="webui"/>
<keydef href="topics/impala_breakpad.xml" keys="breakpad"/>
<keydef href="topics/impala_ports.xml" keys="ports"/>
<keydef href="topics/impala_reserved_words.xml" keys="reserved_words"/>
<keydef href="topics/impala_faq.xml" keys="faq"/>
<keydef audience="hidden" href="topics/impala_release_notes.xml" keys="impala_release_notes"/>
<keydef href="topics/impala_fixed_issues.xml" keys="fixed_issues"/>
<keydef href="topics/impala_incompatible_changes.xml" keys="incompatible_changes"/>
<keydef href="topics/impala_known_issues.xml" keys="known_issues"/>
<keydef href="topics/impala_new_features.xml" keys="new_features"/>
</map>