Skip to content

Commit

Permalink
Bugfix: dragnet selection for index advanced compression high
Browse files Browse the repository at this point in the history
  • Loading branch information
rammpeter committed May 24, 2023
1 parent 355bfe0 commit 8e99928
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/helpers/dragnet/optimal_index_storage_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ def optimal_index_storage
) cs ON cs.Index_Owner = i.Owner AND cs.Index_Name = i.Index_Name
LEFT OUTER JOIN ash ON ash.Owner = i.Owner AND ash.Object_Name = i.Index_Name
WHERE i.Compression != 'ADVANCED HIGH'
AND NVL(ash.Seconds_In_Wait, 0) < ?
AND seg.MBytes > ?
AND NVL(ash.Seconds_In_Wait, 0) < ?
ORDER BY seg.MBytes DESC NULLS LAST
",
:parameter=>[
Expand Down
4 changes: 2 additions & 2 deletions config/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

module Panorama
# VERSION and RELEASE_DATE should have fix syntax and positions because they are parsed from other sites
VERSION = '2.17.03'
RELEASE_DATE = Date.parse('2023-05-22')
VERSION = '2.17.04'
RELEASE_DATE = Date.parse('2023-05-24')

RELEASE_DAY = "%02d" % RELEASE_DATE.day
RELEASE_MONTH = "%02d" % RELEASE_DATE.month
Expand Down

0 comments on commit 8e99928

Please sign in to comment.