Skip to content

Commit

Permalink
moved pg_dummy's HexEncode to its proper namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
marsaly79 committed Jan 25, 2024
1 parent d3fc4ec commit 0b62916
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ydb/library/yql/sql/pg_dummy/pg_sql_dummy.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,10 @@ TString GetPostgresServerVersionStr() {
return "pg_sql_dummy";
}

} // namespace NKikimr::NPg

namespace NYql {

ui64 HexEncode(const char *src, size_t len, char *dst) {
Y_UNUSED(src);
Y_UNUSED(len);
Expand All @@ -504,4 +508,4 @@ ui64 HexEncode(const char *src, size_t len, char *dst) {
throw yexception() << "HexEncode in pg_dummy does nothing";
}

} // namespace NKikimr::NPg
} // NYql

0 comments on commit 0b62916

Please sign in to comment.