You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@empire-db.apache.org by "Ivan Nemeth (JIRA)" <em...@incubator.apache.org> on 2017/01/20 12:09:26 UTC

[jira] [Created] (EMPIREDB-253) Add UNION ALL support to DBCommand

Ivan Nemeth created EMPIREDB-253:
------------------------------------

             Summary: Add UNION ALL support to DBCommand
                 Key: EMPIREDB-253
                 URL: https://issues.apache.org/jira/browse/EMPIREDB-253
             Project: Empire-DB
          Issue Type: Improvement
          Components: Core
            Reporter: Ivan Nemeth
            Priority: Minor


Currently only UNION is implemented, UNION ALL can be implemented with the same pattern.

public DBCommandExpr unionAll(DBCommandExpr other)
    {   // give driver a chance to subclass DBCombinedCmd
    	DBDatabaseDriver driver = getDatabase().getDriver();
    	return driver.createCombinedCommand(this, "UNION ALL", other);
    }




--
This message was sent by Atlassian JIRA
(v6.3.4#6332)