You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by am...@apache.org on 2022/01/31 15:20:53 UTC

[ignite] branch ignite-16191 updated (461266d -> aabf92f)

This is an automated email from the ASF dual-hosted git repository.

amashenkov pushed a change to branch ignite-16191
in repository https://gitbox.apache.org/repos/asf/ignite.git.


 discard 461266d  Add test.
     new aabf92f  Add test.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (461266d)
            \
             N -- N -- N   refs/heads/ignite-16191 (aabf92f)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../src/test/java/org/apache/ignite/testsuites/ScriptTestSuite.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

[ignite] 01/01: Add test.

Posted by am...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

amashenkov pushed a commit to branch ignite-16191
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit aabf92f28697d6793ea91351b8d7a98d5fe6818c
Author: Andrew Mashenkov <an...@gmail.com>
AuthorDate: Mon Jan 31 17:10:28 2022 +0300

    Add test.
---
 .../src/test/sql/aggregate/aggregates/test_count_star.test   | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/modules/calcite/src/test/sql/aggregate/aggregates/test_count_star.test b/modules/calcite/src/test/sql/aggregate/aggregates/test_count_star.test
index ad530e8..53d1e08 100644
--- a/modules/calcite/src/test/sql/aggregate/aggregates/test_count_star.test
+++ b/modules/calcite/src/test/sql/aggregate/aggregates/test_count_star.test
@@ -13,3 +13,15 @@ SELECT i, COUNT(*) FROM integers GROUP BY i ORDER BY i
 ----
 2	1
 3	2
+
+statement ok
+INSERT INTO integers VALUES (3, null), (null, 4), (null, null);
+
+query IIIII
+SELECT COUNT(*), COUNT(i), COUNT(j), COUNT(COALESCE(i, j)), COUNT(null) FROM integers
+----
+6
+4
+4
+5
+0
\ No newline at end of file