Add sqlcoders indexes to query file
This commit is contained in:
parent
bac92f7b6e
commit
f25e524c06
|
@ -573,6 +573,29 @@ class FpdbSQLQueries:
|
||||||
elif(self.dbname == 'SQLite'):
|
elif(self.dbname == 'SQLite'):
|
||||||
self.query['createHudCacheTable'] = """ """
|
self.query['createHudCacheTable'] = """ """
|
||||||
|
|
||||||
|
if(self.dbname == 'MySQL InnoDB'):
|
||||||
|
self.query['addTourneyIndex'] = """ALTER TABLE Tourneys ADD INDEX 'siteTourneyNo'('siteTourneyNo')"""
|
||||||
|
elif(self.dbname == 'PostgreSQL'):
|
||||||
|
# FIXME: This query has a different syntax
|
||||||
|
self.query['addTourneyIndex'] = """ALTER TABLE Tourneys ADD INDEX 'siteTourneyNo'('siteTourneyNo')"""
|
||||||
|
elif(self.dbname == 'SQLite'):
|
||||||
|
|
||||||
|
if(self.dbname == 'MySQL InnoDB'):
|
||||||
|
self.query['addHandsIndex'] = """ALTER TABLE Hands ADD INDEX 'siteHandNo'('siteHandNo')"""
|
||||||
|
elif(self.dbname == 'PostgreSQL'):
|
||||||
|
# FIXME: This query has a different syntax
|
||||||
|
self.query['addHandsIndex'] = """ALTER TABLE Hands ADD INDEX 'siteHandNo'('siteHandNo')"""
|
||||||
|
elif(self.dbname == 'SQLite'):
|
||||||
|
self.query['addHandsIndex'] = """ """
|
||||||
|
|
||||||
|
if(self.dbname == 'MySQL InnoDB'):
|
||||||
|
self.query['addPlayersIndex'] = """ALTER TABLE Players ADD INDEX 'name'('name')"""
|
||||||
|
elif(self.dbname == 'PostgreSQL'):
|
||||||
|
# FIXME: This query has a different syntax
|
||||||
|
self.query['addHandsIndex'] = """ALTER TABLE Hands ADD INDEX 'siteHandNo'('siteHandNo')"""
|
||||||
|
elif(self.dbname == 'SQLite'):
|
||||||
|
self.query['addHandsIndex'] = """ """
|
||||||
|
|
||||||
################################
|
################################
|
||||||
# Queries used in GuiGraphViewer
|
# Queries used in GuiGraphViewer
|
||||||
################################
|
################################
|
||||||
|
|
Loading…
Reference in New Issue
Block a user