mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
Fixed the sequence property is_cycled
Начиная с 10 версии это свойство ошибочно всегда определялось как false.
This commit is contained in:
parent
075347b1c3
commit
cf7314facb
1 changed files with 1 additions and 1 deletions
|
|
@ -126,7 +126,7 @@ void pgSequence::UpdateValues()
|
|||
wxT(" seqmin AS \"min_value\",\n")
|
||||
wxT(" seqmax AS \"max_value\",\n")
|
||||
wxT(" seqincrement AS \"increment_by\",\n")
|
||||
wxT(" CASE WHEN seqcycle THEN 'yes' ELSE 'no' END AS \"is_cycled\",\n")
|
||||
wxT(" CASE WHEN seqcycle THEN 't' ELSE 'f' END AS \"is_cycled\",\n")
|
||||
wxT(" seqcache AS \"cache_value\",\n")
|
||||
wxT(" last_value, is_called")
|
||||
wxT(" FROM pg_catalog.pg_sequence,")+GetQuotedFullIdentifier()+wxT(" s")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue