Package org.hibernate.dialect.sequence
Class PostgreSQLSequenceSupport
java.lang.Object
org.hibernate.dialect.sequence.PostgreSQLSequenceSupport
- All Implemented Interfaces:
SequenceSupport
Sequence support for
PostgreSQLDialect
.-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetDropSequenceString
(String sequenceName) Typically dialects which support sequences can drop a sequence with a single command.getSelectSequenceNextValString
(String sequenceName) Generate the select expression fragment that will retrieve the next value of a sequence as part of another (typically DML) statement.getSelectSequencePreviousValString
(String sequenceName) Generate the select expression fragment that will retrieve the previous value of a sequence as part of another (typically DML) statement.boolean
Do we need to explicitly specifyminvalue
ormaxvalue
when the initial value doesn't have the same sign as the increment?Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.hibernate.dialect.sequence.SequenceSupport
getCreateSequenceString, getCreateSequenceString, getCreateSequenceStrings, getCreateSequenceStrings, getDropSequenceStrings, getFromDual, getSequenceNextValString, getSequenceNextValString, getSequencePreviousValString, startingValue, supportsPooledSequences, supportsSequences
-
Field Details
-
INSTANCE
-
-
Constructor Details
-
PostgreSQLSequenceSupport
public PostgreSQLSequenceSupport()
-
-
Method Details
-
getSelectSequenceNextValString
Description copied from interface:SequenceSupport
Generate the select expression fragment that will retrieve the next value of a sequence as part of another (typically DML) statement.This differs from
SequenceSupport.getSequenceNextValString(String)
in that it must return an expression usable within another statement.- Specified by:
getSelectSequenceNextValString
in interfaceSequenceSupport
- Parameters:
sequenceName
- the name of the sequence- Returns:
- The "next value" fragment.
-
getSelectSequencePreviousValString
Description copied from interface:SequenceSupport
Generate the select expression fragment that will retrieve the previous value of a sequence as part of another (typically DML) statement.This differs from
SequenceSupport.getSequencePreviousValString(String)
in that it must return an expression usable within another statement.- Specified by:
getSelectSequencePreviousValString
in interfaceSequenceSupport
- Parameters:
sequenceName
- the name of the sequence- Returns:
- The "previous value" fragment.
- Throws:
MappingException
- If sequences are not supported.
-
sometimesNeedsStartingValue
public boolean sometimesNeedsStartingValue()Description copied from interface:SequenceSupport
Do we need to explicitly specifyminvalue
ormaxvalue
when the initial value doesn't have the same sign as the increment?- Specified by:
sometimesNeedsStartingValue
in interfaceSequenceSupport
-
getDropSequenceString
Description copied from interface:SequenceSupport
Typically dialects which support sequences can drop a sequence with a single command. This is convenience form ofSequenceSupport.getDropSequenceStrings(java.lang.String)
to help facilitate that.Dialects which support sequences and can drop a sequence in a single command need *only* override this method. Dialects which support sequences but require multiple commands to drop a sequence should instead override
SequenceSupport.getDropSequenceStrings(java.lang.String)
.- Specified by:
getDropSequenceString
in interfaceSequenceSupport
- Parameters:
sequenceName
- The name of the sequence- Returns:
- The sequence drop commands
-