[2/3] git commit: merge from 1.1

2012-11-21 Thread xedin
merge from 1.1


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/e1ac6e9f
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/e1ac6e9f
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/e1ac6e9f

Branch: refs/heads/cassandra-1.2
Commit: e1ac6e9ff02634e265c275c966f2fbb6ebb579fe
Parents: 92f3339 e128ab0
Author: Pavel Yaskevich xe...@apache.org
Authored: Wed Nov 21 15:48:26 2012 -0800
Committer: Pavel Yaskevich xe...@apache.org
Committed: Wed Nov 21 15:48:26 2012 -0800

--
 src/java/org/apache/cassandra/db/RowMutation.java |   54 
 1 files changed, 0 insertions(+), 54 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cassandra/blob/e1ac6e9f/src/java/org/apache/cassandra/db/RowMutation.java
--



[2/3] git commit: merge from 1.1

2012-09-04 Thread xedin
merge from 1.1


Project: http://git-wip-us.apache.org/repos/asf/cassandra/repo
Commit: http://git-wip-us.apache.org/repos/asf/cassandra/commit/d90eaf5b
Tree: http://git-wip-us.apache.org/repos/asf/cassandra/tree/d90eaf5b
Diff: http://git-wip-us.apache.org/repos/asf/cassandra/diff/d90eaf5b

Branch: refs/heads/trunk
Commit: d90eaf5b05a98ad090746424dcd507a915c55ca9
Parents: 6b29ab7 846b140
Author: Pavel Yaskevich xe...@apache.org
Authored: Wed Sep 5 00:17:00 2012 +0300
Committer: Pavel Yaskevich xe...@apache.org
Committed: Wed Sep 5 00:17:00 2012 +0300

--
 CHANGES.txt   |1 +
 src/java/org/apache/cassandra/db/DefsTable.java   |   77 +++-
 src/java/org/apache/cassandra/db/SystemTable.java |1 +
 3 files changed, 78 insertions(+), 1 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/cassandra/blob/d90eaf5b/CHANGES.txt
--

http://git-wip-us.apache.org/repos/asf/cassandra/blob/d90eaf5b/src/java/org/apache/cassandra/db/DefsTable.java
--

http://git-wip-us.apache.org/repos/asf/cassandra/blob/d90eaf5b/src/java/org/apache/cassandra/db/SystemTable.java
--
diff --cc src/java/org/apache/cassandra/db/SystemTable.java
index 23d9269,3256b91..cd64d2c
--- a/src/java/org/apache/cassandra/db/SystemTable.java
+++ b/src/java/org/apache/cassandra/db/SystemTable.java
@@@ -86,62 -83,66 +86,63 @@@ public class SystemTabl
  
  public static void finishStartup() throws IOException
  {
+ DefsTable.fixSchemaNanoTimestamps();
  setupVersion();
 -purgeIncompatibleHints();
 +try
 +{
 +upgradeSystemData();
 +}
 +catch (ExecutionException e)
 +{
 +throw new RuntimeException(e);
 +}
 +catch (InterruptedException e)
 +{
 +throw new RuntimeException(e);
 +}
  }
  
 -private static void setupVersion() throws IOException
 +private static void setupVersion()
  {
 -RowMutation rm;
 -ColumnFamily cf;
 -
 -rm = new RowMutation(Table.SYSTEM_TABLE, 
ByteBufferUtil.bytes(build));
 -cf = ColumnFamily.create(Table.SYSTEM_TABLE, VERSION_CF);
 -cf.addColumn(new Column(ByteBufferUtil.bytes(version), 
ByteBufferUtil.bytes(FBUtilities.getReleaseVersionString()), 
FBUtilities.timestampMicros()));
 -rm.add(cf);
 -rm.apply();
 -
 -rm = new RowMutation(Table.SYSTEM_TABLE, ByteBufferUtil.bytes(cql));
 -cf = ColumnFamily.create(Table.SYSTEM_TABLE, VERSION_CF);
 -cf.addColumn(new Column(ByteBufferUtil.bytes(version), 
ByteBufferUtil.bytes(QueryProcessor.CQL_VERSION.toString()), 
FBUtilities.timestampMicros()));
 -rm.add(cf);
 -rm.apply();
 -
 -rm = new RowMutation(Table.SYSTEM_TABLE, 
ByteBufferUtil.bytes(thrift));
 -cf = ColumnFamily.create(Table.SYSTEM_TABLE, VERSION_CF);
 -cf.addColumn(new Column(ByteBufferUtil.bytes(version), 
ByteBufferUtil.bytes(Constants.VERSION), FBUtilities.timestampMicros()));
 -rm.add(cf);
 -rm.apply();
 +String req = INSERT INTO system.%s (key, release_version, 
cql_version, thrift_version) VALUES ('%s', '%s', '%s', '%s');
 +processInternal(String.format(req, LOCAL_CF,
 + LOCAL_KEY,
 + 
FBUtilities.getReleaseVersionString(),
 + 
QueryProcessor.CQL_VERSION.toString(),
 + Constants.VERSION));
  }
  
 -/** if hints become incompatible across versions of cassandra, that logic 
(and associated purging) is managed here. */
 -private static void purgeIncompatibleHints() throws IOException
 +/** if system data becomes incompatible across versions of cassandra, 
that logic (and associated purging) is managed here */
 +private static void upgradeSystemData() throws IOException, 
ExecutionException, InterruptedException
  {
 -ByteBuffer upgradeMarker = ByteBufferUtil.bytes(Pre-1.0 hints 
purged);
 -Table table = Table.open(Table.SYSTEM_TABLE);
 -QueryFilter filter = QueryFilter.getNamesFilter(decorate(COOKIE_KEY), 
new QueryPath(STATUS_CF), upgradeMarker);
 -ColumnFamily cf = 
table.getColumnFamilyStore(STATUS_CF).getColumnFamily(filter);
 -if (cf != null)
 +Table table = Table.open(Table.SYSTEM_KS);
 +ColumnFamilyStore oldStatusCfs = 
table.getColumnFamilyStore(OLD_STATUS_CF);
 +if (oldStatusCfs.getSSTables().size()  0)
  {
 -logger.debug(Pre-1.0 hints already purged);
 -