"Alter sequence restart with" does not change the initial value
---------------------------------------------------------------

                 Key: CORE-5133
                 URL: http://tracker.firebirdsql.org/browse/CORE-5133
             Project: Firebird Core
          Issue Type: Bug
    Affects Versions: 3.0 RC2
         Environment: WI-V3.0.0.32342 Firebird 3.0 Release Candidate 2
            Reporter: Simonov Denis


SQL> create sequence s1 start with 100 increment 2;
SQL> show sequences;
Generator S1, current value: 100, initial value: 100, increment: 2
SQL> alter sequence s1 restart with 5 increment 3;
SQL> show sequences;
Generator S1, current value: 5, initial value: 100, increment: 3

initial value should not be changed only if the statement

alter sequence s1 restart;

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: 
http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

------------------------------------------------------------------------------
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to