diff options
author | hcpp <hcpp@ydb.tech> | 2023-06-26 13:56:55 +0300 |
---|---|---|
committer | hcpp <hcpp@ydb.tech> | 2023-06-26 13:56:55 +0300 |
commit | 925a7c884c3ab79db1246b6af276c9d5d605562e (patch) | |
tree | f99b646140b34e3f5961de7ae63c9dc8f85bb568 /library/cpp/cppparser/parser.cpp | |
parent | 8bc751712e4349daeab76fa7739355261d7e759b (diff) | |
download | ydb-925a7c884c3ab79db1246b6af276c9d5d605562e.tar.gz |
table path prefix has been fixed
При чтении из external data source c указанием TablePathPrefix:
```
PRAGMA TablePathPrefix("/Root");
SELECT * FROM `s3_tpc`.`*` WITH ...
```
Эта конструкция разворачивалась в:
```
PRAGMA TablePathPrefix("/Root");
SELECT * FROM `s3_tpc`.`/Root/*` WITH ...
```
В этом ревью это поправлено и теперь она разворачивается в:
```
PRAGMA TablePathPrefix("/Root");
SELECT * FROM `/Root/s3_tpc`.`*` WITH ...
```
Diffstat (limited to 'library/cpp/cppparser/parser.cpp')
0 files changed, 0 insertions, 0 deletions