def make_suite(cursor, suite):
    tables = suite_tables(suite)
    map(cursor.create_table, tables)
    cursor.execute(grant_public([x.name for x in tables]))
Beispiel #2
0
 def _make_suite_tables(self):
     tables = suite_tables(self.suite)
     map(self.cursor.create_table, tables)
     self.cursor.execute(grant_public([x.name for x in tables]))
 def _make_suite_tables(self):
     tables = suite_tables(self.suite)
     map(self.cursor.create_table, tables)
     self.cursor.execute(grant_public([x.name for x in tables]))
Beispiel #4
0
def make_suite(cursor, suite):
    tables = suite_tables(suite)
    map(cursor.create_table, tables)
    cursor.execute(grant_public([x.name for x in tables]))