[jira] [Created] (IGNITE-5623) DDL needs to support DEFAULT operator

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

[jira] [Created] (IGNITE-5623) DDL needs to support DEFAULT operator

Anton Vinogradov (Jira)
Denis Magda created IGNITE-5623:
-----------------------------------

             Summary: DDL needs to support DEFAULT operator
                 Key: IGNITE-5623
                 URL: https://issues.apache.org/jira/browse/IGNITE-5623
             Project: Ignite
          Issue Type: Task
            Reporter: Denis Magda
            Assignee: Alexander Paschenko


There should be a way to set a default value for a column/field if the one is not specified during an insert operation. In general, we need to support {{<field> DEFAULT <value>}} in a way it's show below:

{code}
CREATE TABLE Persons (
  ID int,
  FirstName varchar(255),
  Age int,
  City varchar(255) DEFAULT 'Sandnes'
);
{code}



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)