We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e70f0c9 commit da712c7Copy full SHA for da712c7
integration-tests/src/test/java/com/datastax/oss/driver/mapper/UpdateIT.java
@@ -68,7 +68,9 @@ public static void setup() {
68
session.execute(
69
SimpleStatement.builder(query).setExecutionProfile(SESSION_RULE.slowProfile()).build());
70
}
71
- session.execute("CREATE TABLE only_p_k(id uuid PRIMARY KEY)");
+ session.execute(
72
+ SimpleStatement.newInstance("CREATE TABLE only_p_k(id uuid PRIMARY KEY)")
73
+ .setExecutionProfile(SESSION_RULE.slowProfile()));
74
75
inventoryMapper = new UpdateIT_InventoryMapperBuilder(session).build();
76
dao = inventoryMapper.productDao(SESSION_RULE.keyspace());
0 commit comments