You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by al...@apache.org on 2021/11/26 11:21:57 UTC

[ignite] branch sql-calcite updated: IGNITE-15565 Fix test_insert_type.test - Fixes #9594.

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

alexpl pushed a commit to branch sql-calcite
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/sql-calcite by this push:
     new 8937e26  IGNITE-15565 Fix test_insert_type.test - Fixes #9594.
8937e26 is described below

commit 8937e26464f5da1ef8ce13c4447743905c9be051
Author: Aleksey Plekhanov <pl...@gmail.com>
AuthorDate: Fri Nov 26 14:20:05 2021 +0300

    IGNITE-15565 Fix test_insert_type.test - Fixes #9594.
    
    Signed-off-by: Aleksey Plekhanov <pl...@gmail.com>
---
 .../insert/{test_insert_type.test_ignore => test_insert_type.test}   | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/modules/calcite/src/test/sql/insert/test_insert_type.test_ignore b/modules/calcite/src/test/sql/insert/test_insert_type.test
similarity index 85%
rename from modules/calcite/src/test/sql/insert/test_insert_type.test_ignore
rename to modules/calcite/src/test/sql/insert/test_insert_type.test
index 4f62804..00da5a6 100644
--- a/modules/calcite/src/test/sql/insert/test_insert_type.test_ignore
+++ b/modules/calcite/src/test/sql/insert/test_insert_type.test
@@ -1,7 +1,6 @@
 # name: test/sql/insert/test_insert_type.test
 # description: Test insert into from wrong type
 # group: [insert]
-# Ignore https://issues.apache.org/jira/browse/IGNITE-15565
 
 statement ok
 CREATE TABLE strings(a VARCHAR)
@@ -16,11 +15,11 @@ statement ok
 INSERT INTO strings SELECT * FROM integers
 
 query T
-SELECT * FROM strings
+SELECT * FROM strings ORDER BY 1
 ----
+NULL
 3
 4
-NULL
 
 statement ok
 UPDATE strings SET a=13 WHERE a=3