From 46e4e92246fe6347541de9074d9b6df9efade04a Mon Sep 17 00:00:00 2001 From: gimick Date: Sat, 17 Jul 2010 18:56:23 +0100 Subject: [PATCH] reapply 585fd2feb2 - Update graph and session queries to identify ring games accidentally reverted at 45210f0668, sorry, didn't spot it before push --- pyfpdb/SQL.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyfpdb/SQL.py b/pyfpdb/SQL.py index 26d5dc6b..e2a72bf5 100644 --- a/pyfpdb/SQL.py +++ b/pyfpdb/SQL.py @@ -2826,7 +2826,7 @@ class Sql: AND h.startTime < '' - AND hp.tourneysPlayersId IS NULL + AND gt.type is 'ring' GROUP BY h.startTime, hp.handId, hp.sawShowdown, hp.totalProfit ORDER BY h.startTime""" @@ -2844,7 +2844,7 @@ class Sql: INNER JOIN Players p on (p.Id = hp.playerId) WHERE hp.playerId in AND date_format(h.startTime, '%Y-%m-%d') - AND hp.tourneysPlayersId IS NULL + AND gt.type is 'ring' ORDER by time""" elif db_server == 'postgresql': self.query['sessionStats'] = """ @@ -2856,7 +2856,7 @@ class Sql: INNER JOIN Players p on (p.Id = hp.playerId) WHERE hp.playerId in AND h.startTime - AND hp.tourneysPlayersId IS NULL + AND gt.type is 'ring' ORDER by time""" elif db_server == 'sqlite': self.query['sessionStats'] = """ @@ -2868,7 +2868,7 @@ class Sql: INNER JOIN Players p on (p.Id = hp.playerId) WHERE hp.playerId in AND h.startTime - AND hp.tourneysPlayersId IS NULL + AND gt.type is 'ring' ORDER by time"""