Lines Matching refs:table
24 """Defines the big table client that connects to the big table.
33 _table_name: A string that represents the big table.
34 _table_instance: An instance of the Table that represents the big table.
37 def __init__(self, table, project_id):
43 self._table_name = table
56 self._table_instance = self._client_instance.table(self._table_name)
65 """Creates a table in which read/write operations are performed.
68 AbortionError: Error occurred when creating table is not successful.
69 This could be due to creating a table with a duplicate name.
72 # Create a table
73 logging.debug('Creating the table %s', self._table_name)
80 """Writes new rows to the given table.
84 written to a new row in the table. Each message is writte to a
91 logging.debug('Writing to the table : %s, column : %s', self._table_name,
103 """Removes and returns the first row from the table.
122 """Performs delete operation for a given table."""
124 # Delete the table
125 logging.debug('Deleting the table : %s', self._table_name)