Uploaded image for project: 'Phoenix'
  1. Phoenix
  2. PHOENIX-2206

Math function called with PK column ignores WHERE clause

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Fixed
    • 4.5.0
    • 4.6.0, 4.5.2
    • None

    Description

      A WHERE condition that uses a scalar function such as EXP is ignored and all rows are returned.

      create table test (id integer primary key) ;
      upsert into test values (1) ;
      upsert into test values (2) ;
      upsert into test values (3) ;
      upsert into test values (4) ;
      upsert into test values (5) ;
      select ID, exp(ID) from test where exp(ID) < 10 ;

      Result is:
      1 2.718281828459045
      2 7.38905609893065
      3 20.085536923187668
      4 54.598150033144236
      5 148.4131591025766

      Attachments

        1. PHOENIX-2206.patch
          4 kB
          James R. Taylor
        2. PHOENIX-2206_v2.patch
          4 kB
          James R. Taylor

        Activity

          People

            jamestaylor James R. Taylor
            ckran ckran
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: