Package org.springframework.cassandra.core.keyspace

Examples of org.springframework.cassandra.core.keyspace.TableOption


    for (String key : expected.keySet()) {

      log.info(key + " -> " + expected.get(key));

      Object value = expected.get(key);
      TableOption tableOption = getTableOptionFor(key.toUpperCase());

      if (tableOption == null && key.equalsIgnoreCase(TableOption.COMPACT_STORAGE.getName())) {
        // TODO: figure out how to tell if COMPACT STORAGE was used
        continue;
      }

      assertOption(tableOption, key, value, getOptionFor(tableOption, tableOption.getType(), actual));
    }
  }
View Full Code Here

TOP

Related Classes of org.springframework.cassandra.core.keyspace.TableOption

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.