@@ -920,20 +920,20 @@ Y_UNIT_TEST_SUITE(ResourcePoolClassifiersDdl) {
920
920
UNIT_ASSERT_C (resultSet.TryNextRow (), " Unexpected row count" );
921
921
922
922
auto name = resultSet.ColumnParser (" Name" ).GetOptionalUtf8 ();
923
- UNIT_ASSERT_VALUES_EQUAL (name, " a_first_classifier" );
923
+ UNIT_ASSERT_VALUES_EQUAL (* name, " a_first_classifier" );
924
924
auto rank = resultSet.ColumnParser (" Rank" ).GetOptionalInt64 ();
925
- UNIT_ASSERT_VALUES_EQUAL (rank, 1 );
925
+ UNIT_ASSERT_VALUES_EQUAL (* rank, 1 );
926
926
auto config = resultSet.ColumnParser (" Config" ).GetOptionalJsonDocument ();
927
- UNIT_ASSERT_VALUES_EQUAL (config, R"( {"member_name":"staff@builtin","resource_pool":"my_pool"})" );
927
+ UNIT_ASSERT_VALUES_EQUAL (* config, R"( {"member_name":"staff@builtin","resource_pool":"my_pool"})" );
928
928
929
929
UNIT_ASSERT_C (resultSet.TryNextRow (), " Unexpected row count" );
930
930
931
931
name = resultSet.ColumnParser (" Name" ).GetOptionalUtf8 ();
932
- UNIT_ASSERT_VALUES_EQUAL (name, " b_second_classifier" );
932
+ UNIT_ASSERT_VALUES_EQUAL (* name, " b_second_classifier" );
933
933
rank = resultSet.ColumnParser (" Rank" ).GetOptionalInt64 ();
934
- UNIT_ASSERT_VALUES_EQUAL (rank, 2 );
934
+ UNIT_ASSERT_VALUES_EQUAL (* rank, 2 );
935
935
config = resultSet.ColumnParser (" Config" ).GetOptionalJsonDocument ();
936
- UNIT_ASSERT_VALUES_EQUAL (config, R"( {"member_name":"boss@builtin","resource_pool":"default"})" );
936
+ UNIT_ASSERT_VALUES_EQUAL (* config, R"( {"member_name":"boss@builtin","resource_pool":"default"})" );
937
937
938
938
UNIT_ASSERT_C (!resultSet.TryNextRow (), " Unexpected row count" );
939
939
}
@@ -948,20 +948,20 @@ Y_UNIT_TEST_SUITE(ResourcePoolClassifiersDdl) {
948
948
UNIT_ASSERT_C (resultSet.TryNextRow (), " Unexpected row count" );
949
949
950
950
auto name = resultSet.ColumnParser (" Name" ).GetOptionalUtf8 ();
951
- UNIT_ASSERT_VALUES_EQUAL (name, " a_first_classifier_shared" );
951
+ UNIT_ASSERT_VALUES_EQUAL (* name, " a_first_classifier_shared" );
952
952
auto rank = resultSet.ColumnParser (" Rank" ).GetOptionalInt64 ();
953
- UNIT_ASSERT_VALUES_EQUAL (rank, 1 );
953
+ UNIT_ASSERT_VALUES_EQUAL (* rank, 1 );
954
954
auto config = resultSet.ColumnParser (" Config" ).GetOptionalJsonDocument ();
955
- UNIT_ASSERT_VALUES_EQUAL (config, R"( {"member_name":"staff@builtin","resource_pool":"my_pool"})" );
955
+ UNIT_ASSERT_VALUES_EQUAL (* config, R"( {"member_name":"staff@builtin","resource_pool":"my_pool"})" );
956
956
957
957
UNIT_ASSERT_C (resultSet.TryNextRow (), " Unexpected row count" );
958
958
959
959
name = resultSet.ColumnParser (" Name" ).GetOptionalUtf8 ();
960
- UNIT_ASSERT_VALUES_EQUAL (name, " b_second_classifier_shared" );
960
+ UNIT_ASSERT_VALUES_EQUAL (* name, " b_second_classifier_shared" );
961
961
rank = resultSet.ColumnParser (" Rank" ).GetOptionalInt64 ();
962
- UNIT_ASSERT_VALUES_EQUAL (rank, 2 );
962
+ UNIT_ASSERT_VALUES_EQUAL (* rank, 2 );
963
963
config = resultSet.ColumnParser (" Config" ).GetOptionalJsonDocument ();
964
- UNIT_ASSERT_VALUES_EQUAL (config, R"( {"member_name":"boss@builtin","resource_pool":"default"})" );
964
+ UNIT_ASSERT_VALUES_EQUAL (* config, R"( {"member_name":"boss@builtin","resource_pool":"default"})" );
965
965
966
966
UNIT_ASSERT_C (!resultSet.TryNextRow (), " Unexpected row count" );
967
967
}
@@ -1012,29 +1012,29 @@ Y_UNIT_TEST_SUITE(ResourcePoolClassifiersDdl) {
1012
1012
UNIT_ASSERT_C (resultSet.TryNextRow (), " Unexpected row count" );
1013
1013
1014
1014
auto name = resultSet.ColumnParser (" Name" ).GetOptionalUtf8 ();
1015
- UNIT_ASSERT_VALUES_EQUAL (name, " a" );
1015
+ UNIT_ASSERT_VALUES_EQUAL (* name, " a" );
1016
1016
auto rank = resultSet.ColumnParser (" Rank" ).GetOptionalInt64 ();
1017
- UNIT_ASSERT_VALUES_EQUAL (rank, 1 );
1017
+ UNIT_ASSERT_VALUES_EQUAL (* rank, 1 );
1018
1018
auto config = resultSet.ColumnParser (" Config" ).GetOptionalJsonDocument ();
1019
- UNIT_ASSERT_VALUES_EQUAL (config, R"( {"member_name":"staff@builtin","resource_pool":"my_pool"})" );
1019
+ UNIT_ASSERT_VALUES_EQUAL (* config, R"( {"member_name":"staff@builtin","resource_pool":"my_pool"})" );
1020
1020
1021
1021
UNIT_ASSERT_C (resultSet.TryNextRow (), " Unexpected row count" );
1022
1022
1023
1023
name = resultSet.ColumnParser (" Name" ).GetOptionalUtf8 ();
1024
- UNIT_ASSERT_VALUES_EQUAL (name, " b" );
1024
+ UNIT_ASSERT_VALUES_EQUAL (* name, " b" );
1025
1025
rank = resultSet.ColumnParser (" Rank" ).GetOptionalInt64 ();
1026
- UNIT_ASSERT_VALUES_EQUAL (rank, 2 );
1026
+ UNIT_ASSERT_VALUES_EQUAL (* rank, 2 );
1027
1027
config = resultSet.ColumnParser (" Config" ).GetOptionalJsonDocument ();
1028
- UNIT_ASSERT_VALUES_EQUAL (config, R"( {"member_name":"boss@builtin","resource_pool":"default"})" );
1028
+ UNIT_ASSERT_VALUES_EQUAL (* config, R"( {"member_name":"boss@builtin","resource_pool":"default"})" );
1029
1029
1030
1030
UNIT_ASSERT_C (resultSet.TryNextRow (), " Unexpected row count" );
1031
1031
1032
1032
name = resultSet.ColumnParser (" Name" ).GetOptionalUtf8 ();
1033
- UNIT_ASSERT_VALUES_EQUAL (name, " c" );
1033
+ UNIT_ASSERT_VALUES_EQUAL (* name, " c" );
1034
1034
rank = resultSet.ColumnParser (" Rank" ).GetOptionalInt64 ();
1035
- UNIT_ASSERT_VALUES_EQUAL (rank, 3 );
1035
+ UNIT_ASSERT_VALUES_EQUAL (* rank, 3 );
1036
1036
config = resultSet.ColumnParser (" Config" ).GetOptionalJsonDocument ();
1037
- UNIT_ASSERT_VALUES_EQUAL (config, R"( {"member_name":"super_boss@builtin","resource_pool":"default"})" );
1037
+ UNIT_ASSERT_VALUES_EQUAL (* config, R"( {"member_name":"super_boss@builtin","resource_pool":"default"})" );
1038
1038
1039
1039
UNIT_ASSERT_C (!resultSet.TryNextRow (), " Unexpected row count" );
1040
1040
}
@@ -1049,30 +1049,30 @@ Y_UNIT_TEST_SUITE(ResourcePoolClassifiersDdl) {
1049
1049
UNIT_ASSERT_C (resultSet.TryNextRow (), " Unexpected row count" );
1050
1050
1051
1051
auto name = resultSet.ColumnParser (" Name" ).GetOptionalUtf8 ();
1052
- UNIT_ASSERT_VALUES_EQUAL (name, " c" );
1052
+ UNIT_ASSERT_VALUES_EQUAL (* name, " c" );
1053
1053
auto rank = resultSet.ColumnParser (" Rank" ).GetOptionalInt64 ();
1054
- UNIT_ASSERT_VALUES_EQUAL (rank, 3 );
1054
+ UNIT_ASSERT_VALUES_EQUAL (* rank, 3 );
1055
1055
auto config = resultSet.ColumnParser (" Config" ).GetOptionalJsonDocument ();
1056
- UNIT_ASSERT_VALUES_EQUAL (config, R"( {"member_name":"super_boss@builtin","resource_pool":"default"})" );
1056
+ UNIT_ASSERT_VALUES_EQUAL (* config, R"( {"member_name":"super_boss@builtin","resource_pool":"default"})" );
1057
1057
1058
1058
UNIT_ASSERT_C (resultSet.TryNextRow (), " Unexpected row count" );
1059
1059
1060
1060
name = resultSet.ColumnParser (" Name" ).GetOptionalUtf8 ();
1061
- UNIT_ASSERT_VALUES_EQUAL (name, " b" );
1061
+ UNIT_ASSERT_VALUES_EQUAL (* name, " b" );
1062
1062
rank = resultSet.ColumnParser (" Rank" ).GetOptionalInt64 ();
1063
- UNIT_ASSERT_VALUES_EQUAL (rank, 2 );
1063
+ UNIT_ASSERT_VALUES_EQUAL (* rank, 2 );
1064
1064
config = resultSet.ColumnParser (" Config" ).GetOptionalJsonDocument ();
1065
- UNIT_ASSERT_VALUES_EQUAL (config, R"( {"member_name":"boss@builtin","resource_pool":"default"})" );
1065
+ UNIT_ASSERT_VALUES_EQUAL (* config, R"( {"member_name":"boss@builtin","resource_pool":"default"})" );
1066
1066
1067
1067
1068
1068
UNIT_ASSERT_C (resultSet.TryNextRow (), " Unexpected row count" );
1069
1069
1070
1070
name = resultSet.ColumnParser (" Name" ).GetOptionalUtf8 ();
1071
- UNIT_ASSERT_VALUES_EQUAL (name, " a" );
1071
+ UNIT_ASSERT_VALUES_EQUAL (* name, " a" );
1072
1072
rank = resultSet.ColumnParser (" Rank" ).GetOptionalInt64 ();
1073
- UNIT_ASSERT_VALUES_EQUAL (rank, 1 );
1073
+ UNIT_ASSERT_VALUES_EQUAL (* rank, 1 );
1074
1074
config = resultSet.ColumnParser (" Config" ).GetOptionalJsonDocument ();
1075
- UNIT_ASSERT_VALUES_EQUAL (config, R"( {"member_name":"staff@builtin","resource_pool":"my_pool"})" );
1075
+ UNIT_ASSERT_VALUES_EQUAL (* config, R"( {"member_name":"staff@builtin","resource_pool":"my_pool"})" );
1076
1076
1077
1077
UNIT_ASSERT_C (!resultSet.TryNextRow (), " Unexpected row count" );
1078
1078
}
@@ -1087,11 +1087,11 @@ Y_UNIT_TEST_SUITE(ResourcePoolClassifiersDdl) {
1087
1087
UNIT_ASSERT_C (resultSet.TryNextRow (), " Unexpected row count" );
1088
1088
1089
1089
auto name = resultSet.ColumnParser (" Name" ).GetOptionalUtf8 ();
1090
- UNIT_ASSERT_VALUES_EQUAL (name, " a" );
1090
+ UNIT_ASSERT_VALUES_EQUAL (* name, " a" );
1091
1091
auto rank = resultSet.ColumnParser (" Rank" ).GetOptionalInt64 ();
1092
- UNIT_ASSERT_VALUES_EQUAL (rank, 1 );
1092
+ UNIT_ASSERT_VALUES_EQUAL (* rank, 1 );
1093
1093
auto config = resultSet.ColumnParser (" Config" ).GetOptionalJsonDocument ();
1094
- UNIT_ASSERT_VALUES_EQUAL (config, R"( {"member_name":"staff@builtin","resource_pool":"my_pool"})" );
1094
+ UNIT_ASSERT_VALUES_EQUAL (* config, R"( {"member_name":"staff@builtin","resource_pool":"my_pool"})" );
1095
1095
1096
1096
UNIT_ASSERT_C (!resultSet.TryNextRow (), " Unexpected row count" );
1097
1097
}
@@ -1106,11 +1106,11 @@ Y_UNIT_TEST_SUITE(ResourcePoolClassifiersDdl) {
1106
1106
UNIT_ASSERT_C (resultSet.TryNextRow (), " Unexpected row count" );
1107
1107
1108
1108
auto name = resultSet.ColumnParser (" Name" ).GetOptionalUtf8 ();
1109
- UNIT_ASSERT_VALUES_EQUAL (name, " b" );
1109
+ UNIT_ASSERT_VALUES_EQUAL (* name, " b" );
1110
1110
auto rank = resultSet.ColumnParser (" Rank" ).GetOptionalInt64 ();
1111
- UNIT_ASSERT_VALUES_EQUAL (rank, 2 );
1111
+ UNIT_ASSERT_VALUES_EQUAL (* rank, 2 );
1112
1112
auto config = resultSet.ColumnParser (" Config" ).GetOptionalJsonDocument ();
1113
- UNIT_ASSERT_VALUES_EQUAL (config, R"( {"member_name":"boss@builtin","resource_pool":"default"})" );
1113
+ UNIT_ASSERT_VALUES_EQUAL (* config, R"( {"member_name":"boss@builtin","resource_pool":"default"})" );
1114
1114
1115
1115
UNIT_ASSERT_C (!resultSet.TryNextRow (), " Unexpected row count" );
1116
1116
}
@@ -1125,11 +1125,11 @@ Y_UNIT_TEST_SUITE(ResourcePoolClassifiersDdl) {
1125
1125
UNIT_ASSERT_C (resultSet.TryNextRow (), " Unexpected row count" );
1126
1126
1127
1127
auto name = resultSet.ColumnParser (" Name" ).GetOptionalUtf8 ();
1128
- UNIT_ASSERT_VALUES_EQUAL (name, " c" );
1128
+ UNIT_ASSERT_VALUES_EQUAL (* name, " c" );
1129
1129
auto rank = resultSet.ColumnParser (" Rank" ).GetOptionalInt64 ();
1130
- UNIT_ASSERT_VALUES_EQUAL (rank, 3 );
1130
+ UNIT_ASSERT_VALUES_EQUAL (* rank, 3 );
1131
1131
auto config = resultSet.ColumnParser (" Config" ).GetOptionalJsonDocument ();
1132
- UNIT_ASSERT_VALUES_EQUAL (config, R"( {"member_name":"super_boss@builtin","resource_pool":"default"})" );
1132
+ UNIT_ASSERT_VALUES_EQUAL (* config, R"( {"member_name":"super_boss@builtin","resource_pool":"default"})" );
1133
1133
1134
1134
UNIT_ASSERT_C (!resultSet.TryNextRow (), " Unexpected row count" );
1135
1135
}
0 commit comments