Skip to content

Commit feec7af

Browse files
authored
Merge pull request #11465 from vitstn/mergelibs-yql-fix2
Yql fixes
2 parents 80c3f75 + 791b8fb commit feec7af

File tree

7 files changed

+25
-15
lines changed

7 files changed

+25
-15
lines changed

build/conf/project_specific/yql_udf.conf

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -55,26 +55,26 @@ module YQL_UDF_YDB_TEST: PY3TEST_BIN {
5555

5656
PEERDIR(ydb/library/yql/tests/common/udf_test)
5757

58-
DEPENDS(ydb/library/yql/tools/astdiff)
58+
DEPENDS(yql/essentials/tools/astdiff)
5959
DEPENDS(ydb/library/yql/tools/yqlrun)
60-
DEPENDS(ydb/library/yql/tools/udf_resolver)
60+
DEPENDS(yql/essentials/tools/udf_resolver)
6161
DATA(arcadia/yql/essentials/mount)
6262
DATA(arcadia/ydb/library/yql/cfg/udf_test)
6363
}
6464

6565
module YQL_UDF_TEST_CONTRIB: PY3TEST_BIN {
6666
SET_APPEND(_MAKEFILE_INCLUDE_LIKE_DEPS canondata/result.json)
6767

68-
PEERDIR(contrib/ydb/library/yql/tests/common/udf_test)
68+
PEERDIR(ydb/library/yql/tests/common/udf_test)
6969

7070
DEPENDS(yql/essentials/tools/astdiff)
71-
DEPENDS(contrib/ydb/library/yql/tools/yqlrun)
71+
DEPENDS(ydb/library/yql/tools/yqlrun)
7272
DEPENDS(yql/essentials/tools/udf_resolver)
7373
DATA(arcadia/yql/essentials/mount)
74-
DATA(arcadia/contrib/ydb/library/yql/cfg/udf_test)
74+
DATA(arcadia/ydb/library/yql/cfg/udf_test)
7575
ENV(YQL_ASTDIFF_PATH="yql/essentials/tools/astdiff/astdiff")
76-
ENV(YQL_CONFIG_DIR="contrib/ydb/library/yql/cfg/udf_test")
77-
ENV(YQL_YQLRUN_PATH="contrib/ydb/library/yql/tools/yqlrun/yqlrun")
76+
ENV(YQL_CONFIG_DIR="ydb/library/yql/cfg/udf_test")
77+
ENV(YQL_YQLRUN_PATH="ydb/library/yql/tools/yqlrun/yqlrun")
7878
ENV(YQL_SQL2YQL_PATH="yql/essentials/tools/sql2yql/sql2yql")
7979
ENV(YQL_UDFRESOLVER_PATH="yql/essentials/tools/udf_resolver/udf_resolver")
8080
}

ydb/core/kqp/provider/ut/ya.make

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ SRCS(
88

99
PEERDIR(
1010
ydb/core/kqp/ut/common
11-
ydb/library/yql/ast
11+
yql/essentials/ast
1212
yql/essentials/sql/pg_dummy
13-
ydb/library/yql/sql/v1
13+
yql/essentials/sql/v1
1414
library/cpp/testing/gmock_in_unittest
1515
)
1616

ydb/core/kqp/provider/yql_kikimr_provider_ut.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#include <ydb/core/kqp/provider/yql_kikimr_provider_impl.h>
2-
#include <ydb/library/yql/ast/yql_expr.h>
3-
#include <ydb/library/yql/sql/v1/source.h>
4-
#include <ydb/library/yql/sql/v1/context.h>
2+
#include <yql/essentials/ast/yql_expr.h>
3+
#include <yql/essentials/sql/v1/source.h>
4+
#include <yql/essentials/sql/v1/context.h>
55

66
#include <library/cpp/testing/unittest/registar.h>
77

ydb/core/testlib/basics/pg/ya.make

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ LIBRARY()
22

33
PEERDIR(
44
ydb/core/testlib/basics
5-
ydb/library/yql/sql/pg
6-
ydb/library/yql/parser/pg_wrapper
5+
yql/essentials/sql/pg
6+
yql/essentials/parser/pg_wrapper
77
)
88

99
END()

ydb/core/tx/replication/service/ut_json_change_record/ya.make

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ TIMEOUT(60)
88

99
PEERDIR(
1010
ydb/core/testlib/pg
11-
ydb/library/yql/public/udf/service/exception_policy
11+
yql/essentials/public/udf/service/exception_policy
1212
library/cpp/testing/unittest
1313
)
1414

ydb/library/yql/providers/yt/gateway/native/ut/ya.make

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
IF (NOT OPENSOURCE)
2+
13
UNITTEST()
24

35
SRCS(
@@ -21,3 +23,6 @@ PEERDIR(
2123
YQL_LAST_ABI_VERSION()
2224

2325
END()
26+
27+
ENDIF()
28+

ydb/library/yql/tests/postgresql/ya.make

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
IF (NOT OPENSOURCE)
2+
13
PY3TEST()
24

35
IF(ORIGINAL)
@@ -42,3 +44,6 @@ DEPENDS(
4244
)
4345

4446
END()
47+
48+
ENDIF()
49+

0 commit comments

Comments
 (0)