Author: jbellis
Date: Tue Apr 19 13:32:54 2011
New Revision: 1095082
URL: http://svn.apache.org/viewvc?rev=1095082&view=rev
Log:
add SchemaDisagreementException import
patch by jbellis; tested by Cathy Daw for CASSANDRA-2501
Modified:
cassandra/branches/cassandra-0.8/drivers/py/cql/cursor.py
Modified: cassandra/branches/cassandra-0.8/drivers/py/cql/cursor.py
URL:
http://svn.apache.org/viewvc/cassandra/branches/cassandra-0.8/drivers/py/cql/cursor.py?rev=1095082&r1=1095081&r2=1095082&view=diff
==============================================================================
--- cassandra/branches/cassandra-0.8/drivers/py/cql/cursor.py (original)
+++ cassandra/branches/cassandra-0.8/drivers/py/cql/cursor.py Tue Apr 19
13:32:54 2011
@@ -22,8 +22,12 @@ import cql
from cql.marshal import prepare
from cql.decoders import SchemaDecoder
from cql.results import ResultSet
-from cql.cassandra.ttypes import (Compression, CqlResultType,
InvalidRequestException,
- TApplicationException)
+from cql.cassandra.ttypes import (
+ Compression,
+ CqlResultType,
+ InvalidRequestException,
+ TApplicationException,
+ SchemaDisagreementException)
class Cursor: