oops! missed out SQL.py from last release

This commit is contained in:
sqlcoder 2010-02-01 07:59:09 +00:00
parent e4c6419074
commit 9f3c5924b0

View File

@ -1848,6 +1848,15 @@ class Sql:
self.query['getLimits2'] = """SELECT DISTINCT type, limitType, bigBlind
from Gametypes
ORDER by type, limitType DESC, bigBlind DESC"""
self.query['getLimits3'] = """select DISTINCT type
, limittype
, case type
when 'ring' then bigblind
else buyin
end as bb_or_buyin
from gametypes gt
cross join tourneytypes tt
order by type, limitType DESC, bb_or_buyin DESC"""
if db_server == 'mysql':
self.query['playerDetailedStats'] = """