diff options
| author | robot-piglet <[email protected]> | 2026-07-24 12:38:22 +0300 |
|---|---|---|
| committer | robot-piglet <[email protected]> | 2026-07-24 13:46:37 +0300 |
| commit | 975cee38ea13ce473d9ee4c8a764d9be51d6f78e (patch) | |
| tree | bc8f8aac4800d4378a52399b21a99e3fa8c42112 | |
| parent | 4bb8b0576dfe1cd85fd17afeaef319d73d3f9784 (diff) | |
Intermediate changes
commit_hash:c6d6cae76698798d837871b1712e42a66e6da45d
| -rw-r--r-- | yql/essentials/docs/en/syntax/export_import.md | 3 | ||||
| -rw-r--r-- | yql/essentials/docs/ru/syntax/export_import.md | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/yql/essentials/docs/en/syntax/export_import.md b/yql/essentials/docs/en/syntax/export_import.md index 0af803466e7..53b9a7b0b0f 100644 --- a/yql/essentials/docs/en/syntax/export_import.md +++ b/yql/essentials/docs/en/syntax/export_import.md @@ -4,6 +4,8 @@ A mechanism for putting part of the query into a separate attached file. To use * [PRAGMA Library](pragma/file.md#library) — marks the attached file as available for import. +* Explicitly attached files with paths starting with `yql_libs/` are available for import without the `PRAGMA Library`. + ## EXPORT `EXPORT $my_symbol1, $my_symbol2, ...;` lists the names of named expressions in the library that are available for import. @@ -59,4 +61,3 @@ FROM ( SELECT 3 AS x ) ``` - diff --git a/yql/essentials/docs/ru/syntax/export_import.md b/yql/essentials/docs/ru/syntax/export_import.md index b25eb67d7a8..154363be5eb 100644 --- a/yql/essentials/docs/ru/syntax/export_import.md +++ b/yql/essentials/docs/ru/syntax/export_import.md @@ -4,6 +4,8 @@ * [PRAGMA Library](pragma/file.md#library) — помечает приложенный файл как доступный для импорта. +* Приложенные явно файлы, пути до которых начинаются с `yql_libs/`, доступны для импорта без `PRAGMA Library`. + ## EXPORT В `EXPORT $my_symbol1, $my_symbol2, ...;` перечисляется список именованных выражений в библиотеке, доступных для импорта. |
