Skip to content

Commit ec90ced

Browse files
committed
Change C++ SDK namespace from V3 to Dev (#15478)
1 parent 78e8100 commit ec90ced

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+162
-89
lines changed

include/ydb-cpp-sdk/client/draft/ydb_replication.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ class TReplicationDescription {
163163
};
164164

165165
class TDescribeReplicationResult: public NScheme::TDescribePathResult {
166-
friend class NYdb::V3::TProtoAccessor;
166+
friend class NYdb::TProtoAccessor;
167167
const Ydb::Replication::DescribeReplicationResult& GetProto() const;
168168

169169
public:
@@ -188,4 +188,4 @@ class TReplicationClient {
188188
std::shared_ptr<TImpl> Impl_;
189189
};
190190

191-
} // namespace NYdb::V3::NReplication
191+
} // namespace NYdb::NReplication

include/ydb-cpp-sdk/client/draft/ydb_view.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class TViewDescription {
3131
};
3232

3333
class TDescribeViewResult : public NScheme::TDescribePathResult {
34-
friend class NYdb::V3::TProtoAccessor;
34+
friend class NYdb::TProtoAccessor;
3535
const Ydb::View::DescribeViewResult& GetProto() const;
3636

3737
public:
@@ -55,4 +55,4 @@ class TViewClient {
5555
std::shared_ptr<TImpl> Impl_;
5656
};
5757

58-
} // namespace NYdb::V3::NView
58+
} // namespace NYdb::NView

include/ydb-cpp-sdk/client/monitoring/monitoring.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ struct TSelfCheckSettings : public TOperationRequestSettings<TSelfCheckSettings>
3333
};
3434

3535
class TSelfCheckResult : public TStatus {
36-
friend class NYdb::V3::TProtoAccessor;
36+
friend class NYdb::TProtoAccessor;
3737
public:
3838
TSelfCheckResult(TStatus&& status, Ydb::Monitoring::SelfCheckResult&& result);
3939
private:

include/ydb-cpp-sdk/client/params/params.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ class TParams {
4343
friend class NExperimental::TStreamQueryClient;
4444
friend class NQuery::TExecQueryImpl;
4545
friend class NQuery::TQueryClient;
46-
friend class NYdb::V3::TProtoAccessor;
46+
friend class NYdb::TProtoAccessor;
4747
public:
4848
bool Empty() const;
4949

include/ydb-cpp-sdk/client/query/client.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,4 +267,4 @@ class TExecuteQueryResult : public TStatus {
267267
std::optional<TTransaction> Transaction_;
268268
};
269269

270-
} // namespace NYdb::V3::NQuery
270+
} // namespace NYdb::NQuery

include/ydb-cpp-sdk/client/query/query.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,4 @@ class TFetchScriptResultsResult : public TStatus {
185185
using TAsyncFetchScriptResultsResult = NThreading::TFuture<TFetchScriptResultsResult>;
186186
using TAsyncExecuteQueryResult = NThreading::TFuture<TExecuteQueryResult>;
187187

188-
} // namespace NYdb::V3::NQuery
188+
} // namespace NYdb::NQuery

include/ydb-cpp-sdk/client/query/stats.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ namespace NYdb::inline V3 {
1717
namespace NYdb::inline V3::NQuery {
1818

1919
class TExecStats {
20-
friend class NYdb::V3::TProtoAccessor;
20+
friend class NYdb::TProtoAccessor;
2121

2222
public:
2323
TExecStats() = default;
@@ -42,4 +42,4 @@ class TExecStats {
4242
std::shared_ptr<TImpl> Impl_;
4343
};
4444

45-
} // namespace NYdb::V3::NQuery
45+
} // namespace NYdb::NQuery

include/ydb-cpp-sdk/client/query/tx.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,4 @@ struct TTxControl {
116116
: TxSettings_(txSettings) {}
117117
};
118118

119-
} // namespace NYdb::V3::NQuery
119+
} // namespace NYdb::NQuery

include/ydb-cpp-sdk/client/rate_limiter/rate_limiter.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,4 +320,4 @@ class TRateLimiterClient {
320320
std::shared_ptr<TImpl> Impl_;
321321
};
322322

323-
} // namespace NYdb::V3::NRateLimiter
323+
} // namespace NYdb::NRateLimiter

include/ydb-cpp-sdk/client/result/result.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ bool operator!=(const TColumn& col1, const TColumn& col2);
3232
//! Collection of rows, represents result of query or part of the result in case of stream operations
3333
class TResultSet {
3434
friend class TResultSetParser;
35-
friend class NYdb::V3::TProtoAccessor;
35+
friend class NYdb::TProtoAccessor;
3636
public:
3737
TResultSet(const Ydb::ResultSet& proto);
3838
TResultSet(Ydb::ResultSet&& proto);

0 commit comments

Comments
 (0)