Uploaded image for project: 'Ignite'
  1. Ignite
  2. IGNITE-15866

Nested SELECT with WHERE clause failes with IgniteCheckedException

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 2.11
    • None
    • sql, thin client
    • None
    • Docs Required, Release Notes Required

    Description

      Steps to reproduce:

       

      CREATE TABLE TEST (COL1 int primary key, COL2 int, COL3 int);
      INSERT INTO TEST VALUES(1,2,3);
      
      --Working:
      SELECT * FROM (SELECT * FROM (SELECT * FROM TEST)) WHERE COL1 = 1;
      --Also working:
      SELECT * FROM (SELECT * FROM (SELECT * FROM TEST WHERE COL1 = 1));
      --Not Working:
      SELECT * FROM (SELECT * FROM (SELECT * FROM TEST) WHERE COL1 = 1);
      

       

      Attachments

        Activity

          People

            Unassigned Unassigned
            Timotheus.Preisinger Timotheus Preisinger
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

            Dates

              Created:
              Updated: