@@ -278,7 +278,7 @@ CASSANDRA_INTEGRATION_TYPED_TEST_P(CassandraTypesTest, BasicNullList) {
278278
279279 // Bind the NULL collection and insert
280280 statement.bind <Integer>(0 , Integer (i));
281- statement.bind <test::driver::List<TypeParam>>(1 , value);
281+ statement.bind <test::driver::List<TypeParam> >(1 , value);
282282 this ->session_ .execute (statement);
283283
284284 // Validate the insert and result
@@ -287,7 +287,7 @@ CASSANDRA_INTEGRATION_TYPED_TEST_P(CassandraTypesTest, BasicNullList) {
287287 Result result = this ->session_ .execute (select_statement);
288288 ASSERT_EQ (1u , result.row_count ());
289289 test::driver::List<TypeParam> select_value =
290- result.first_row ().next ().as <test::driver::List<TypeParam>>();
290+ result.first_row ().next ().as <test::driver::List<TypeParam> >();
291291 ASSERT_EQ (value, select_value);
292292 ASSERT_TRUE (select_value.is_null ());
293293 }
@@ -322,7 +322,7 @@ CASSANDRA_INTEGRATION_TYPED_TEST_P(CassandraTypesTest, BasicNullMap) {
322322
323323 // Bind the NULL collection and insert
324324 statement.bind <Integer>(0 , Integer (i));
325- statement.bind <test::driver::Map<TypeParam, TypeParam>>(1 , value);
325+ statement.bind <test::driver::Map<TypeParam, TypeParam> >(1 , value);
326326 this ->session_ .execute (statement);
327327
328328 // Validate the insert and result
@@ -331,7 +331,7 @@ CASSANDRA_INTEGRATION_TYPED_TEST_P(CassandraTypesTest, BasicNullMap) {
331331 Result result = this ->session_ .execute (select_statement);
332332 ASSERT_EQ (1u , result.row_count ());
333333 test::driver::Map<TypeParam, TypeParam> select_value =
334- result.first_row ().next ().as <test::driver::Map<TypeParam, TypeParam>>();
334+ result.first_row ().next ().as <test::driver::Map<TypeParam, TypeParam> >();
335335 ASSERT_EQ (value, select_value);
336336 ASSERT_TRUE (select_value.is_null ());
337337 }
@@ -366,7 +366,7 @@ CASSANDRA_INTEGRATION_TYPED_TEST_P(CassandraTypesTest, BasicNullSet) {
366366
367367 // Bind the NULL collection and insert
368368 statement.bind <Integer>(0 , Integer (i));
369- statement.bind <test::driver::Set<TypeParam>>(1 , value);
369+ statement.bind <test::driver::Set<TypeParam> >(1 , value);
370370 this ->session_ .execute (statement);
371371
372372 // Validate the insert and result
@@ -375,7 +375,7 @@ CASSANDRA_INTEGRATION_TYPED_TEST_P(CassandraTypesTest, BasicNullSet) {
375375 Result result = this ->session_ .execute (select_statement);
376376 ASSERT_EQ (1u , result.row_count ());
377377 test::driver::Set<TypeParam> select_value =
378- result.first_row ().next ().as <test::driver::Set<TypeParam>>();
378+ result.first_row ().next ().as <test::driver::Set<TypeParam> >();
379379 ASSERT_EQ (value, select_value);
380380 ASSERT_TRUE (select_value.is_null ());
381381 }
@@ -411,23 +411,23 @@ CASSANDRA_INTEGRATION_TYPED_TEST_P(CassandraTypesTest, List) {
411411
412412 // Bind both the primary key and the value with the Cassandra type list and insert
413413 if (this ->is_key_allowed_ ) {
414- statement.bind <List<TypeParam>>(0 , list);
414+ statement.bind <List<TypeParam> >(0 , list);
415415 } else {
416416 statement.bind <Integer>(0 , Integer (i));
417417 }
418- statement.bind <List<TypeParam>>(1 , list);
418+ statement.bind <List<TypeParam> >(1 , list);
419419 this ->session_ .execute (statement);
420420
421421 // Validate the result
422422 Statement select_statement (this ->select_query_ , 1 );
423423 if (this ->is_key_allowed_ ) {
424- select_statement.bind <List<TypeParam>>(0 , list);
424+ select_statement.bind <List<TypeParam> >(0 , list);
425425 } else {
426426 select_statement.bind <Integer>(0 , Integer (i));
427427 }
428428 Result result = this ->session_ .execute (select_statement);
429429 ASSERT_EQ (1u , result.row_count ());
430- List<TypeParam> result_list (result.first_row ().next ().as <List<TypeParam>>());
430+ List<TypeParam> result_list (result.first_row ().next ().as <List<TypeParam> >());
431431 ASSERT_EQ (list.value (), result_list.value ());
432432 }
433433}
@@ -465,23 +465,23 @@ CASSANDRA_INTEGRATION_TYPED_TEST_P(CassandraTypesTest, Set) {
465465
466466 // Bind both the primary key and the value with the Cassandra type set and insert
467467 if (this ->is_key_allowed_ ) {
468- statement.bind <Set<TypeParam>>(0 , set);
468+ statement.bind <Set<TypeParam> >(0 , set);
469469 } else {
470470 statement.bind <Integer>(0 , Integer (i));
471471 }
472- statement.bind <Set<TypeParam>>(1 , set);
472+ statement.bind <Set<TypeParam> >(1 , set);
473473 this ->session_ .execute (statement);
474474
475475 // Validate the result
476476 Statement select_statement (this ->select_query_ , 1 );
477477 if (this ->is_key_allowed_ ) {
478- select_statement.bind <Set<TypeParam>>(0 , set);
478+ select_statement.bind <Set<TypeParam> >(0 , set);
479479 } else {
480480 select_statement.bind <Integer>(0 , Integer (i));
481481 }
482482 Result result = this ->session_ .execute (select_statement);
483483 ASSERT_EQ (1u , result.row_count ());
484- Set<TypeParam> result_set = result.first_row ().next ().as <Set<TypeParam>>();
484+ Set<TypeParam> result_set = result.first_row ().next ().as <Set<TypeParam> >();
485485 ASSERT_EQ (set.value (), result_set.value ());
486486 }
487487}
@@ -524,17 +524,17 @@ CASSANDRA_INTEGRATION_TYPED_TEST_P(CassandraTypesTest, Map) {
524524 Statement& statement = statements[i];
525525
526526 // Bind both the primary key and the value with the Cassandra type map and insert
527- statement.bind <Map<TypeParam, TypeParam>>(0 , map);
528- statement.bind <Map<TypeParam, TypeParam>>(1 , map);
527+ statement.bind <Map<TypeParam, TypeParam> >(0 , map);
528+ statement.bind <Map<TypeParam, TypeParam> >(1 , map);
529529 this ->session_ .execute (statement);
530530
531531 // Validate the result
532532 Statement select_statement (this ->select_query_ , 1 );
533- select_statement.bind <Map<TypeParam, TypeParam>>(0 , map);
533+ select_statement.bind <Map<TypeParam, TypeParam> >(0 , map);
534534 Result result = this ->session_ .execute (select_statement);
535535 ASSERT_EQ (1u , result.row_count ());
536536 Column column = result.first_row ().next ();
537- Map<TypeParam, TypeParam> result_map (column.as <Map<TypeParam, TypeParam>>());
537+ Map<TypeParam, TypeParam> result_map (column.as <Map<TypeParam, TypeParam> >());
538538 ASSERT_EQ (map_values, result_map.value ());
539539 }
540540 } else {
@@ -559,7 +559,7 @@ CASSANDRA_INTEGRATION_TYPED_TEST_P(CassandraTypesTest, Map) {
559559
560560 // Bind both the primary key and the value with the Cassandra type map and insert
561561 statement.bind <Integer>(0 , Integer (i));
562- statement.bind <Map<Integer, TypeParam>>(1 , map);
562+ statement.bind <Map<Integer, TypeParam> >(1 , map);
563563 this ->session_ .execute (statement);
564564
565565 // Validate the result
@@ -568,7 +568,7 @@ CASSANDRA_INTEGRATION_TYPED_TEST_P(CassandraTypesTest, Map) {
568568 Result result = this ->session_ .execute (select_statement);
569569 ASSERT_EQ (1u , result.row_count ());
570570 Column column = result.first_row ().next ();
571- Map<Integer, TypeParam> result_map (column.as <Map<Integer, TypeParam>>());
571+ Map<Integer, TypeParam> result_map (column.as <Map<Integer, TypeParam> >());
572572 ASSERT_EQ (map_values, result_map.value ());
573573 }
574574 }
0 commit comments