diff --git a/src/share/object/ob_obj_cast.h b/src/share/object/ob_obj_cast.h index e5f4bc5bd9..471c3a2aa6 100644 --- a/src/share/object/ob_obj_cast.h +++ b/src/share/object/ob_obj_cast.h @@ -47,6 +47,7 @@ namespace common #define CM_ERROR_ON_SCALE_OVER (1ULL << 10) #define CM_STRICT_JSON (1ULL << 11) +#define CM_ADD_ZEROFILL (1ULL << 47) #define CM_CS_LEVEL_RESERVED1 (1ULL << 48) #define CM_CS_LEVEL_RESERVED2 (1ULL << 49) #define CM_CS_LEVEL_RESERVED3 (1ULL << 50) @@ -137,6 +138,7 @@ typedef uint64_t ObCastMode; #define CM_SET_CS_LEVEL(mode, level) \ ((mode) &= ~(CM_CS_LEVEL_MASK << CM_CS_LEVEL_SHIFT), \ (mode) |= ((level & CM_CS_LEVEL_MASK) << CM_CS_LEVEL_SHIFT)) +#define CM_IS_ADD_ZEROFILL(mode) ((CM_ADD_ZEROFILL & (mode)) != 0) struct ObObjCastParams { // add params when necessary diff --git a/src/sql/engine/expr/ob_expr_cast.cpp b/src/sql/engine/expr/ob_expr_cast.cpp index ebe43d424f..30eeca9259 100644 --- a/src/sql/engine/expr/ob_expr_cast.cpp +++ b/src/sql/engine/expr/ob_expr_cast.cpp @@ -441,7 +441,8 @@ int ObExprCast::calc_result_type2(ObExprResType &type, // MySql:cast (1 as decimal(0)) = cast(1 as decimal) // Oracle: cast(1.4 as number) = cast(1.4 as number(-1, -1)) type.set_precision(ObAccuracy::DDL_DEFAULT_ACCURACY2[compatibility_mode][ObNumberType].get_precision()); - } else if (ObIntTC == dst_type.get_type_class() || ObUIntTC == dst_type.get_type_class()) { + } else if ((ObIntTC == dst_type.get_type_class() || ObUIntTC == dst_type.get_type_class()) + && dst_type.get_precision() <= 0) { // for int or uint , the precision = len int32_t len = 0; int16_t length_semantics = LS_BYTE;//unused @@ -471,6 +472,9 @@ int ObExprCast::calc_result_type2(ObExprResType &type, // interval expr need NOT_NULL_FLAG // bug: calc_result_flag2(type, type1, type2); + if (CM_IS_ADD_ZEROFILL(cast_raw_expr->get_extra())) { + type.set_result_flag(ZEROFILL_FLAG); + } } } if (OB_SUCC(ret)) { diff --git a/src/sql/ob_sql_utils.cpp b/src/sql/ob_sql_utils.cpp index cf59652817..fa8b8a7df1 100644 --- a/src/sql/ob_sql_utils.cpp +++ b/src/sql/ob_sql_utils.cpp @@ -1689,6 +1689,26 @@ int ObSQLUtils::get_default_cast_mode(const bool is_explicit_cast, return ret; } +int ObSQLUtils::get_cast_mode_for_replace(const ObRawExpr *expr, + const ObSQLSessionInfo *session, + ObCastMode &cast_mode) +{ + int ret = OB_SUCCESS; + if (OB_ISNULL(expr) || OB_ISNULL(session)) { + ret = OB_ERR_UNEXPECTED; + LOG_WARN("get unexpected null", KP(expr), KP(session), K(ret)); + } else if (OB_FAIL(ObSQLUtils::get_default_cast_mode(false,/* explicit_cast */ + 0, /* result_flag */ + session, cast_mode))) { + LOG_WARN("failed to get default cast mode", K(ret)); + } else if (OB_FAIL(ObSQLUtils::set_cs_level_cast_mode(expr->get_collation_level(), cast_mode))) { + LOG_WARN("failed to set cs level cast mode", K(ret)); + } else if (expr->get_result_type().has_result_flag(ZEROFILL_FLAG)) { + cast_mode |= CM_ADD_ZEROFILL; + } + return ret; +} + ObCollationLevel ObSQLUtils::transform_cs_level(const ObCollationLevel cs_level) { // CS_LEVEL_INVALID is not defined as 0, transform the input cs level to make the default 0 diff --git a/src/sql/ob_sql_utils.h b/src/sql/ob_sql_utils.h index 1796c43645..52a8b1bca7 100644 --- a/src/sql/ob_sql_utils.h +++ b/src/sql/ob_sql_utils.h @@ -369,6 +369,9 @@ public: const bool ret_error = false); static void set_insert_update_scope(common::ObCastMode &cast_mode); static bool is_insert_update_scope(common::ObCastMode &cast_mode); + static int get_cast_mode_for_replace(const ObRawExpr *expr, + const ObSQLSessionInfo *session, + ObCastMode &cast_mode); static common::ObCollationLevel transform_cs_level(const common::ObCollationLevel cs_level); static int set_cs_level_cast_mode(const common::ObCollationLevel cs_level, common::ObCastMode &cast_mode); diff --git a/src/sql/rewrite/ob_transform_utils.cpp b/src/sql/rewrite/ob_transform_utils.cpp index 4f2a555ee3..130462960f 100644 --- a/src/sql/rewrite/ob_transform_utils.cpp +++ b/src/sql/rewrite/ob_transform_utils.cpp @@ -4325,12 +4325,8 @@ int ObTransformUtils::add_cast_for_replace(ObRawExprFactory &expr_factory, } else { ObSysFunRawExpr *cast_expr = NULL; ObCastMode cm; - if (OB_FAIL(ObSQLUtils::get_default_cast_mode(false,/* explicit_cast */ - 0, /* result_flag */ - session_info, cm))) { - LOG_WARN("failed to get default cast mode", K(ret)); - } else if (OB_FAIL(ObSQLUtils::set_cs_level_cast_mode(from_expr->get_collation_level(), cm))) { - LOG_WARN("failed to set cs level cast mode", K(ret)); + if (OB_FAIL(ObSQLUtils::get_cast_mode_for_replace(from_expr, session_info, cm))) { + LOG_WARN("failed to get cast mode for replace", K(ret)); } else if (OB_FAIL(ObRawExprUtils::create_cast_expr(expr_factory, to_expr, from_expr->get_result_type(), @@ -4359,7 +4355,8 @@ int ObTransformUtils::add_cast_for_replace_if_need(ObRawExprFactory &expr_factor bool need_cast = (src_type.get_type() != dst_type.get_type()) || (src_type.get_length() != dst_type.get_length()) || (src_type.get_precision() != dst_type.get_precision()) || - (src_type.get_scale() != dst_type.get_scale()); + (src_type.get_scale() != dst_type.get_scale()) || + from_expr->get_result_type().has_result_flag(ZEROFILL_FLAG); if (ob_is_string_or_lob_type(src_type.get_type())) { need_cast |= (src_type.get_collation_type() != dst_type.get_collation_type()) || (src_type.get_collation_level() != dst_type.get_collation_level()); diff --git a/tools/deploy/mysql_test/test_suite/static_engine/r/mysql/expr_nvl.result b/tools/deploy/mysql_test/test_suite/static_engine/r/mysql/expr_nvl.result index ac13a64dc9..0eaecb47dc 100644 --- a/tools/deploy/mysql_test/test_suite/static_engine/r/mysql/expr_nvl.result +++ b/tools/deploy/mysql_test/test_suite/static_engine/r/mysql/expr_nvl.result @@ -95,7 +95,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -136,7 +136,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -177,7 +177,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -218,7 +218,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -259,7 +259,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -300,7 +300,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -341,7 +341,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -382,7 +382,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -423,7 +423,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -464,7 +464,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -505,7 +505,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -546,7 +546,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -587,7 +587,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -628,7 +628,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -669,7 +669,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -710,7 +710,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -751,7 +751,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -792,7 +792,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -833,7 +833,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -874,7 +874,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -915,7 +915,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -956,7 +956,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c1]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -997,7 +997,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1038,7 +1038,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1079,7 +1079,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1120,7 +1120,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1161,7 +1161,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1202,7 +1202,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1243,7 +1243,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1284,7 +1284,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1325,7 +1325,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1366,7 +1366,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1407,7 +1407,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1448,7 +1448,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1489,7 +1489,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1530,7 +1530,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1571,7 +1571,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1612,7 +1612,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1653,7 +1653,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1694,7 +1694,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1735,7 +1735,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1776,7 +1776,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1817,7 +1817,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1858,7 +1858,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c2]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1899,7 +1899,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1940,7 +1940,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -1981,7 +1981,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2022,7 +2022,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2063,7 +2063,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2104,7 +2104,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2145,7 +2145,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2186,7 +2186,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2227,7 +2227,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2268,7 +2268,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2309,7 +2309,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2350,7 +2350,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2391,7 +2391,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2432,7 +2432,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2473,7 +2473,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2514,7 +2514,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2555,7 +2555,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2596,7 +2596,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2637,7 +2637,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2678,7 +2678,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2719,7 +2719,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2760,7 +2760,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=16 access([t1.c3]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2801,7 +2801,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2842,7 +2842,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2883,7 +2883,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2924,7 +2924,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -2965,7 +2965,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3006,7 +3006,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3047,7 +3047,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3088,7 +3088,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3129,7 +3129,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3170,7 +3170,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3211,7 +3211,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3252,7 +3252,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3293,7 +3293,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3334,7 +3334,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3375,7 +3375,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3416,7 +3416,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3457,7 +3457,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3498,7 +3498,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3539,7 +3539,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3580,7 +3580,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3621,7 +3621,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3662,7 +3662,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=16 access([t1.c4]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3703,7 +3703,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3744,7 +3744,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3785,7 +3785,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3826,7 +3826,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3867,7 +3867,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3908,7 +3908,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3949,7 +3949,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -3990,7 +3990,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4031,7 +4031,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4072,7 +4072,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4113,7 +4113,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4154,7 +4154,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4195,7 +4195,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4236,7 +4236,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4277,7 +4277,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4318,7 +4318,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4359,7 +4359,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4400,7 +4400,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4441,7 +4441,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4482,7 +4482,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4523,7 +4523,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4564,7 +4564,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=16 access([t1.c5]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4605,7 +4605,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4646,7 +4646,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4687,7 +4687,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4728,7 +4728,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4769,7 +4769,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4810,7 +4810,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4851,7 +4851,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4892,7 +4892,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4933,7 +4933,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -4974,7 +4974,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5015,7 +5015,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5056,7 +5056,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5097,7 +5097,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5138,7 +5138,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5179,7 +5179,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5220,7 +5220,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5261,7 +5261,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5302,7 +5302,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5343,7 +5343,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5384,7 +5384,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5425,7 +5425,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5466,7 +5466,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=16 access([t1.c6]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5507,7 +5507,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5548,7 +5548,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5589,7 +5589,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5630,7 +5630,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5671,7 +5671,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5712,7 +5712,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5753,7 +5753,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5794,7 +5794,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5835,7 +5835,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5876,7 +5876,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5917,7 +5917,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5958,7 +5958,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -5999,7 +5999,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6040,7 +6040,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6081,7 +6081,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6122,7 +6122,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6163,7 +6163,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6204,7 +6204,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6245,7 +6245,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6286,7 +6286,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6327,7 +6327,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6368,7 +6368,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=16 access([t1.c7]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6409,7 +6409,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6450,7 +6450,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6491,7 +6491,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6532,7 +6532,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6573,7 +6573,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6614,7 +6614,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6655,7 +6655,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6696,7 +6696,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6737,7 +6737,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6778,7 +6778,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6819,7 +6819,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6860,7 +6860,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6901,7 +6901,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6942,7 +6942,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -6983,7 +6983,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7024,7 +7024,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7065,7 +7065,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7106,7 +7106,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7147,7 +7147,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7188,7 +7188,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7229,7 +7229,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7270,7 +7270,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=16 access([t1.c8]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7311,7 +7311,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7352,7 +7352,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7393,7 +7393,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7434,7 +7434,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7475,7 +7475,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7516,7 +7516,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7557,7 +7557,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7598,7 +7598,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7639,7 +7639,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7680,7 +7680,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7721,7 +7721,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7762,7 +7762,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7803,7 +7803,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7844,7 +7844,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7885,7 +7885,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7926,7 +7926,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -7967,7 +7967,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8008,7 +8008,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8049,7 +8049,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8090,7 +8090,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8131,7 +8131,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8172,7 +8172,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=16 access([t1.c9]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8213,7 +8213,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8254,7 +8254,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8295,7 +8295,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8336,7 +8336,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8377,7 +8377,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8418,7 +8418,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8459,7 +8459,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8500,7 +8500,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8541,7 +8541,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8582,7 +8582,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8623,7 +8623,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8664,7 +8664,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8705,7 +8705,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8746,7 +8746,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8787,7 +8787,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8828,7 +8828,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8869,7 +8869,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8910,7 +8910,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8951,7 +8951,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -8992,7 +8992,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9033,7 +9033,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9074,7 +9074,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([cast(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=16 access([t1.c10]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9115,7 +9115,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9156,7 +9156,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9197,7 +9197,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9238,7 +9238,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9279,7 +9279,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9320,7 +9320,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9361,7 +9361,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9402,7 +9402,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9443,7 +9443,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9484,7 +9484,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9525,7 +9525,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9566,7 +9566,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9607,7 +9607,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9648,7 +9648,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9689,7 +9689,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9730,7 +9730,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9771,7 +9771,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9812,7 +9812,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9853,7 +9853,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9894,7 +9894,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9935,7 +9935,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -9976,7 +9976,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c11]), filter(nil), rowset=16 access([t1.c11]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10017,7 +10017,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10058,7 +10058,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10099,7 +10099,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10140,7 +10140,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10181,7 +10181,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10222,7 +10222,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10263,7 +10263,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10304,7 +10304,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10345,7 +10345,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10386,7 +10386,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10427,7 +10427,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10468,7 +10468,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10509,7 +10509,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10550,7 +10550,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10591,7 +10591,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10632,7 +10632,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10673,7 +10673,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10714,7 +10714,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10755,7 +10755,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10796,7 +10796,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10837,7 +10837,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true @@ -10878,7 +10878,7 @@ Query Plan =============================================== Outputs & filters: ------------------------------------- - 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=16 + 0 - output([t1.c12]), filter(nil), rowset=16 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true