Fix grapher so that only cash limits show up

This commit is contained in:
Worros 2010-07-12 18:19:01 +10:00
parent 8d5e339973
commit 627c044b6f
2 changed files with 9 additions and 4 deletions

View File

@ -624,7 +624,7 @@ class RingFilters(Filters.Filters):
vbox.pack_start(vbox1, False, False, 0)
self.boxes['limits'] = vbox1
self.cursor.execute(self.sql.query['getLimits3'])
self.cursor.execute(self.sql.query['getCashLimits'])
# selects limitType, bigBlind
result = self.db.cursor.fetchall()
found = {'nl':False, 'fl':False, 'pl':False, 'ring':False, 'tour':False}

View File

@ -1986,13 +1986,18 @@ class Sql:
ORDER by type, limitType DESC, bigBlind DESC"""
self.query['getLimits3'] = """select DISTINCT type
, gt.limitType
, case type
, case type
when 'ring' then bigBlind
else buyin
end as bb_or_buyin
- else buyin
- end as bb_or_buyin
from Gametypes gt
cross join TourneyTypes tt
order by type, limitType DESC, bb_or_buyin DESC"""
self.query['getCashLimits'] = """select DISTINCT type
, limitType
, bigBlind as bb_or_buyin
from Gametypes gt
order by type, limitType DESC, bb_or_buyin DESC"""
if db_server == 'mysql':
self.query['playerDetailedStats'] = """