Skip to content

Oracle composite column syntax for ROLLUP & CUBE queries #1168

@tim-morillon

Description

@tim-morillon

The parser doesn't seem to support composite columns in Oracle Rollup/Cube queries.

Steps to reproduce the behavior:

  1. A query with composite columns stated in the rollup/cube clause will not parse, such as
    select sum(a) as amount, b, c from TEST_TABLE group by rollup ((a,b),c)
    Where as the plain version with composite colums parses fine
    select sum(a) as amount, b, c from TEST_TABLE group by rollup (a,b,c)

System

  • Oracle
  • Java 8
  • JSqlParser version 4.0

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions