mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Added unlogged option while creating a sequence. #6376
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 122 KiB |
@@ -52,10 +52,12 @@ Use the fields in the *Definition* tab to define the sequence:
|
||||
to be preallocated and stored in memory for faster access. The minimum value
|
||||
is 1 (only one value can be generated at a time, i.e., no cache), and this is
|
||||
also the default.
|
||||
* Move the *Cycled* switch to the *Yes* position to allow the sequence to wrap
|
||||
* Move the switch next to *Cycled* towards the *right position* to allow the sequence to wrap
|
||||
around when the MAXVALUE or the MINVALUE has been reached by an ascending or
|
||||
descending sequence respectively. If the limit is reached, the next number
|
||||
generated will be the MINVALUE or MAXVALUE, respectively. The default is *No*.
|
||||
* Move the switch next to *Unlogged?* towards the *right position* to make the sequence Unlogged.
|
||||
The default is *No*. This option is available only on PostgreSQL 15 and above.
|
||||
* The *OWNED BY* option causes the sequence to be associated with a specific
|
||||
table column, such that if that column (or its whole table) is dropped, the
|
||||
sequence will be automatically dropped as well. The specified table must have
|
||||
|
||||
Reference in New Issue
Block a user