diff --git a/src/sql/rewrite/ob_transform_simplify_expr.cpp b/src/sql/rewrite/ob_transform_simplify_expr.cpp index 9064bd4691..48cfae4c07 100644 --- a/src/sql/rewrite/ob_transform_simplify_expr.cpp +++ b/src/sql/rewrite/ob_transform_simplify_expr.cpp @@ -1282,6 +1282,7 @@ int ObTransformSimplifyExpr::remove_dummy_nvl(ObDMLStmt *stmt, LOG_WARN("stmt is NULL", K(stmt)); } else if (stmt->is_sel_del_upd()) { ObNotNullContext not_null_ctx(*ctx_, stmt); + ObSEArray ignore_exprs; if (OB_FAIL(not_null_ctx.generate_stmt_context(NULLABLE_SCOPE::NS_WHERE))){ LOG_WARN("failed to generate not null context", K(ret)); } @@ -1291,6 +1292,7 @@ int ObTransformSimplifyExpr::remove_dummy_nvl(ObDMLStmt *stmt, } else if (OB_FAIL(inner_remove_dummy_nvl(stmt, stmt->get_condition_exprs().at(i), not_null_ctx, + ignore_exprs, trans_happened))) { LOG_WARN("failed to remove dummy nvl", K(ret)); } else if (OB_FAIL(not_null_ctx.add_filter(stmt->get_condition_exprs().at(i)))) { @@ -1298,26 +1300,33 @@ int ObTransformSimplifyExpr::remove_dummy_nvl(ObDMLStmt *stmt, } } + /** + * Do not simplify expr in rollup. + * e.g. + * select nvl(NULL, a), a from t group by rollup(a, nvl(NULL, a)); + * != select a, a from t group by rollup(a, a); + */ if (OB_SUCC(ret) && stmt->is_select_stmt()) { ObSelectStmt *sel_stmt = static_cast(stmt); - not_null_ctx.reset(); - if (OB_FAIL(not_null_ctx.generate_stmt_context(NULLABLE_SCOPE::NS_GROUPBY))){ - LOG_WARN("failed to generate not null context", K(ret)); - } - for (int64_t i = 0; OB_SUCC(ret) && i < sel_stmt->get_group_expr_size(); ++i) { - if (OB_FAIL(inner_remove_dummy_nvl(stmt, - sel_stmt->get_group_exprs().at(i), - not_null_ctx, - trans_happened))) { - LOG_WARN("failed to remove dummy nvl", K(ret)); + if (sel_stmt->has_rollup()) { + if (OB_FAIL(append(ignore_exprs, sel_stmt->get_group_exprs()))) { + LOG_WARN("failed to append exprs", K(ret)); + } else if (OB_FAIL(append(ignore_exprs, sel_stmt->get_rollup_exprs()))) { + LOG_WARN("failed to append exprs", K(ret)); } - } - for (int64_t i = 0; OB_SUCC(ret) && i < sel_stmt->get_rollup_expr_size(); ++i) { - if (OB_FAIL(inner_remove_dummy_nvl(stmt, - sel_stmt->get_rollup_exprs().at(i), - not_null_ctx, - trans_happened))) { - LOG_WARN("failed to remove dummy nvl", K(ret)); + } else { + not_null_ctx.reset(); + if (OB_FAIL(not_null_ctx.generate_stmt_context(NULLABLE_SCOPE::NS_GROUPBY))){ + LOG_WARN("failed to generate not null context", K(ret)); + } + for (int64_t i = 0; OB_SUCC(ret) && i < sel_stmt->get_group_expr_size(); ++i) { + if (OB_FAIL(inner_remove_dummy_nvl(stmt, + sel_stmt->get_group_exprs().at(i), + not_null_ctx, + ignore_exprs, + trans_happened))) { + LOG_WARN("failed to remove dummy nvl", K(ret)); + } } } } @@ -1334,6 +1343,7 @@ int ObTransformSimplifyExpr::remove_dummy_nvl(ObDMLStmt *stmt, } else if (OB_FAIL(inner_remove_dummy_nvl(stmt, sel_stmt->get_having_exprs().at(i), not_null_ctx, + ignore_exprs, trans_happened))) { LOG_WARN("failed to remove dummy nvl", K(ret)); } else if (OB_FAIL(not_null_ctx.add_having_filter(sel_stmt->get_having_exprs().at(i)))) { @@ -1345,6 +1355,7 @@ int ObTransformSimplifyExpr::remove_dummy_nvl(ObDMLStmt *stmt, if (OB_FAIL(inner_remove_dummy_nvl(stmt, sel_stmt->get_select_item(i).expr_, not_null_ctx, + ignore_exprs, trans_happened))) { LOG_WARN("failed to remove dummy nvl", K(ret)); } @@ -1355,6 +1366,7 @@ int ObTransformSimplifyExpr::remove_dummy_nvl(ObDMLStmt *stmt, if (OB_FAIL(inner_remove_dummy_nvl(stmt, stmt->get_order_item(i).expr_, not_null_ctx, + ignore_exprs, trans_happened))) { LOG_WARN("failed to remove dummy nvl", K(ret)); } @@ -1366,6 +1378,7 @@ int ObTransformSimplifyExpr::remove_dummy_nvl(ObDMLStmt *stmt, int ObTransformSimplifyExpr::inner_remove_dummy_nvl(ObDMLStmt *stmt, ObRawExpr *&expr, ObNotNullContext ¬_null_ctx, + ObIArray &ignore_exprs, bool &trans_happened) { int ret = OB_SUCCESS; @@ -1378,6 +1391,7 @@ int ObTransformSimplifyExpr::inner_remove_dummy_nvl(ObDMLStmt *stmt, if (OB_FAIL(SMART_CALL(inner_remove_dummy_nvl(stmt, expr->get_param_expr(i), not_null_ctx, + ignore_exprs, trans_happened)))){ LOG_WARN("failed to remove dummy nvl", K(ret)); } @@ -1386,7 +1400,9 @@ int ObTransformSimplifyExpr::inner_remove_dummy_nvl(ObDMLStmt *stmt, if (OB_SUCC(ret) && (T_FUN_SYS_NVL == expr->get_expr_type() || T_FUN_SYS_IFNULL == expr->get_expr_type())) { - if (OB_FAIL(do_remove_dummy_nvl(stmt, + if (ObOptimizerUtil::find_item(ignore_exprs, expr)) { + // nvl expr is rollup expr, do nothing + } else if (OB_FAIL(do_remove_dummy_nvl(stmt, expr, not_null_ctx, trans_happened))){ @@ -1456,8 +1472,7 @@ int ObTransformSimplifyExpr::do_remove_dummy_nvl(ObDMLStmt *stmt, } } if (OB_SUCC(ret) && new_expr != NULL) { - bool need_cast = expr->get_collation_level() != new_expr->get_collation_level(); - if (need_cast && OB_FAIL(ObTransformUtils::add_cast_for_replace( + if (OB_FAIL(ObTransformUtils::add_cast_for_replace_if_need( *ctx_->expr_factory_, expr, new_expr, ctx_->session_info_))) { LOG_WARN("failed to add cast for replace", K(ret)); } else if (OB_ISNULL(new_expr)) { @@ -1488,9 +1503,10 @@ int ObTransformSimplifyExpr::convert_nvl_predicate(ObDMLStmt *stmt, bool &trans_ ret = OB_ERR_UNEXPECTED; LOG_WARN("stmt is NULL", K(stmt)); } else if (stmt->is_sel_del_upd()) { + ObSEArray ignore_exprs; for (int64_t i = 0; OB_SUCC(ret) && i < stmt->get_condition_size(); ++i) { if (OB_FAIL(inner_convert_nvl_predicate( - stmt, stmt->get_condition_exprs().at(i), is_happened))) { + stmt, stmt->get_condition_exprs().at(i), ignore_exprs, is_happened))) { LOG_WARN("failed to replace is null expr", K(ret)); } else { trans_happened |= is_happened; @@ -1498,9 +1514,18 @@ int ObTransformSimplifyExpr::convert_nvl_predicate(ObDMLStmt *stmt, bool &trans_ } if (OB_SUCC(ret) && stmt->is_select_stmt()) { ObSelectStmt *sel_stmt = static_cast(stmt); + if (sel_stmt->has_rollup()) { + if (OB_FAIL(append(ignore_exprs, sel_stmt->get_group_exprs()))) { + LOG_WARN("failed to append exprs", K(ret)); + } else if (OB_FAIL(append(ignore_exprs, sel_stmt->get_rollup_exprs()))) { + LOG_WARN("failed to append exprs", K(ret)); + } + } for (int64_t i = 0; OB_SUCC(ret) && i < sel_stmt->get_having_expr_size(); ++i) { - if (OB_FAIL(inner_convert_nvl_predicate( - sel_stmt, sel_stmt->get_having_exprs().at(i), is_happened))) { + if (OB_FAIL(inner_convert_nvl_predicate(sel_stmt, + sel_stmt->get_having_exprs().at(i), + ignore_exprs, + is_happened))) { LOG_WARN("failed to replace is null expr", K(ret)); } else { trans_happened |= is_happened; @@ -1513,6 +1538,7 @@ int ObTransformSimplifyExpr::convert_nvl_predicate(ObDMLStmt *stmt, bool &trans_ int ObTransformSimplifyExpr::inner_convert_nvl_predicate(ObDMLStmt *stmt, ObRawExpr *&expr, + ObIArray &ignore_exprs, bool &trans_happened) { int ret = OB_SUCCESS; @@ -1552,7 +1578,9 @@ int ObTransformSimplifyExpr::inner_convert_nvl_predicate(ObDMLStmt *stmt, sibling_expr = child_0; } if (OB_SUCC(ret) && is_nvl_cmp_const){ - if (OB_FAIL(do_convert_nvl_predicate(stmt, + if (ObOptimizerUtil::find_item(ignore_exprs, expr)) { + // nvl pred is rollup expr, do nothing + } else if (OB_FAIL(do_convert_nvl_predicate(stmt, expr, nvl_expr, sibling_expr, @@ -1603,11 +1631,10 @@ int ObTransformSimplifyExpr::do_convert_nvl_predicate(ObDMLStmt *stmt, if (OB_ISNULL(exp1) || OB_ISNULL(exp2)){ ret = OB_ERR_UNEXPECTED; LOG_WARN("get unexpected null", K(exp1), K(exp2)); - } else if (nvl_expr->get_collation_level() != exp2->get_collation_level() && - OB_FAIL(ObTransformUtils::add_cast_for_replace(*ctx_->expr_factory_, - nvl_expr, - exp2, - ctx_->session_info_))) { + } else if (OB_FAIL(ObTransformUtils::add_cast_for_replace_if_need(*ctx_->expr_factory_, + nvl_expr, + exp2, + ctx_->session_info_))) { LOG_WARN("failed to add cast for replace", K(ret)); } else if (OB_FAIL(ObRawExprUtils::create_double_op_expr(*(ctx_->expr_factory_), ctx_->session_info_, @@ -1629,7 +1656,12 @@ int ObTransformSimplifyExpr::do_convert_nvl_predicate(ObDMLStmt *stmt, // IF exp2 ~ exp3 ≡ FALSE, NVL(exp1, exp2) ~ exp3 -> exp1 is not null and exp1 ~ exp3 // IF exp2 ~ exp3 ≡ TRUE, NVL(exp1, exp2) ~ exp3 -> exp1 is null or exp1 ~ exp3 ObRawExpr *exp1_cmp_exp3 = NULL; - if (OB_FAIL(ObRawExprUtils::create_double_op_expr(*(ctx_->expr_factory_), + if (OB_FAIL(ObTransformUtils::add_cast_for_replace_if_need(*ctx_->expr_factory_, + nvl_expr, + exp1, + ctx_->session_info_))) { + LOG_WARN("failed to add cast for replace", K(ret)); + } else if (OB_FAIL(ObRawExprUtils::create_double_op_expr(*(ctx_->expr_factory_), ctx_->session_info_, parent_expr->get_expr_type(), exp1_cmp_exp3, diff --git a/src/sql/rewrite/ob_transform_simplify_expr.h b/src/sql/rewrite/ob_transform_simplify_expr.h index fbd9db1af6..7bcff018e7 100644 --- a/src/sql/rewrite/ob_transform_simplify_expr.h +++ b/src/sql/rewrite/ob_transform_simplify_expr.h @@ -88,6 +88,7 @@ private: int inner_remove_dummy_nvl(ObDMLStmt *stmt, ObRawExpr *&expr, ObNotNullContext ¬_null_ctx, + ObIArray &ignore_exprs, bool &trans_happened); int do_remove_dummy_nvl(ObDMLStmt *stmt, ObRawExpr *&expr, @@ -97,6 +98,7 @@ private: int convert_nvl_predicate(ObDMLStmt *stmt, bool &trans_happened); int inner_convert_nvl_predicate(ObDMLStmt *stmt, ObRawExpr *&expr, + ObIArray &ignore_exprs, bool &trans_happened); int do_convert_nvl_predicate(ObDMLStmt *stmt, ObRawExpr *&parent_expr, diff --git a/src/sql/rewrite/ob_transform_utils.cpp b/src/sql/rewrite/ob_transform_utils.cpp index 182de2cb52..2f0c66f6e9 100644 --- a/src/sql/rewrite/ob_transform_utils.cpp +++ b/src/sql/rewrite/ob_transform_utils.cpp @@ -4331,6 +4331,33 @@ int ObTransformUtils::add_cast_for_replace(ObRawExprFactory &expr_factory, return ret; } +int ObTransformUtils::add_cast_for_replace_if_need(ObRawExprFactory &expr_factory, + const ObRawExpr *from_expr, + ObRawExpr *&to_expr, + ObSQLSessionInfo *session_info) +{ + int ret = OB_SUCCESS; + if (OB_ISNULL(from_expr) || OB_ISNULL(to_expr)) { + ret = OB_ERR_UNEXPECTED; + LOG_WARN("get unexpected null", KP(from_expr), KP(to_expr), K(ret)); + } else { + const ObExprResType &src_type = from_expr->get_result_type(); + const ObExprResType &dst_type = to_expr->get_result_type(); + 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()); + 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()); + } + if (need_cast && OB_FAIL(add_cast_for_replace(expr_factory, from_expr, to_expr, session_info))) { + LOG_WARN("failed to add cast for _replace", K(ret)); + } + } + return ret; +} + int ObTransformUtils::UniqueCheckInfo::assign(const UniqueCheckInfo &other) { int ret = OB_SUCCESS; diff --git a/src/sql/rewrite/ob_transform_utils.h b/src/sql/rewrite/ob_transform_utils.h index 8bc9417caa..74fadbc0b6 100644 --- a/src/sql/rewrite/ob_transform_utils.h +++ b/src/sql/rewrite/ob_transform_utils.h @@ -887,6 +887,11 @@ public: ObRawExpr *&to_expr, ObSQLSessionInfo *session_info); + static int add_cast_for_replace_if_need(ObRawExprFactory &expr_factory, + const ObRawExpr *from_expr, + ObRawExpr *&to_expr, + ObSQLSessionInfo *session_info); + static int extract_table_exprs(const ObDMLStmt &stmt, const ObIArray &source_exprs, const TableItem &target, 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 35edad5c59..52afa212b3 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c1, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c1, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c2, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c2, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c3, BIGINT(4, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c3, BIGINT(4, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c4, BIGINT UNSIGNED(3, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c4, BIGINT UNSIGNED(3, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c5, BIGINT(6, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c5, BIGINT(6, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c6, BIGINT UNSIGNED(5, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c6, BIGINT UNSIGNED(5, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c7, BIGINT(9, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c7, BIGINT(9, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c8, BIGINT UNSIGNED(8, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c8, BIGINT UNSIGNED(8, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c9, BIGINT(11, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c9, BIGINT(11, 0)), BIGINT(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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(t1.c10, BIGINT UNSIGNED(10, 0))]), filter(nil), rowset=256 + 0 - output([cast(cast(t1.c10, BIGINT UNSIGNED(10, 0)), BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c11]), filter(nil), rowset=256 + 0 - output([cast(t1.c11, BIGINT(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 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([t1.c12]), filter(nil), rowset=256 + 0 - output([cast(t1.c12, BIGINT UNSIGNED(0, 0))]), filter(nil), rowset=256 access([t1.c12]), partitions(p0) is_index_back=false, is_global_index=false, range_key([t1.__pk_increment]), range(MIN ; MAX)always true