summaryrefslogtreecommitdiffstats
path: root/yql/essentials/sql
Commit message (Collapse)AuthorAgeFilesLines
...
* YQL-19123 Move default argument in VisitOrDefaultavevad2024-12-111-6/+10
| | | | | Change order of arguments in VisitOrDefault commit_hash:60f1e45096fa62bca6c999fb14abf81754f51e1a
* fix validation after deleting semicolon in EVALUATE IF and EVALUATE FOR ↵zhvv1172024-12-112-1/+6
| | | | | | statements commit_hash:70fbc4792bdf7ec2454ace7656c77697c35aa105
* Disable pg ext warningsvvvv2024-12-111-1/+1
| | | | commit_hash:999bc4b82f70f18f47724fe965eb636f33e25820
* fix additional newline after commentzhvv1172024-12-102-1/+7
| | | | commit_hash:63dc64fc9bf73bb1dd98c368466227fe72c5391c
* Support MATCH_RECOGNIZE formattingzhvv1172024-12-102-7/+118
| | | | commit_hash:a51361a96bfccae4f317752367bad8f0dc155032
* remove redundant semicolons, always add semicolon after last statement in ↵zhvv1172024-12-102-14/+81
| | | | | | lambdas and actions commit_hash:d2b19f44d3c6f6e89f03c2c27e897d2b55e6174e
* Add NewLine after PushCurrentIndent and PopCurrentIndentzhvv1172024-12-092-76/+95
| | | | commit_hash:2ca6543f54f2475987f5ef7726011d9494ecba06
* YQL-19123 More SQL features for Variant typeavevad2024-12-091-0/+49
| | | | | More SQL features for Variant type commit_hash:51c15343e2d24190ec59085888dfa3fd008cafcc
* separate complex and multiline statements with a blank linezhvv1172024-12-062-8/+28
| | | | commit_hash:a5e96c76de71b92daf0469cf0e88dc79cd280d67
* add newlines after FROM, WHERE, HAVING, JOIN and before ;zhvv1172024-12-062-262/+319
| | | | commit_hash:e564a4641a37c4250f721db760602d72d36be159
* do not add newline before THEN in CASE expressionszhvv1172024-12-062-15/+3
| | | | commit_hash:8e33efa25915e1639b5b26eaf93bb1edd838a22b
* Enable FlexibleTypes by default. Deprecate DisableFlexibleTypesaneporada2024-12-052-1/+4
| | | | commit_hash:32b898cffdffa9c41e8e4093f35bf6db27ed2560
* do not add newline after FLATTEN BYzhvv1172024-12-052-4/+1
| | | | commit_hash:929f90e2a47ca3aafdf081a36c776ae1cebef3be
* change EVALUATE IF and EVALUATE FOR formattingzhvv1172024-12-042-56/+18
| | | | commit_hash:435092fd6b4de1e8a0df445829d40475c5c4a166
* New options for ASYNC REPLICATIONilnaz2024-12-035-26/+123
| | | | commit_hash:7ee0e4b59035ed5c8dedc69e00f95457eca65b88
* Enable CompactNamedExprs by default. Deprecate DisableCompactNamedExprsaneporada2024-11-272-1/+4
| | | | commit_hash:600b62ee71ee1c8295f5bae5410dcf5370a73654
* EmitUnionMerge - pragma to emit UnionMerge instead of UnionAllaneporada2024-11-276-5/+75
| | | | commit_hash:ba3439438c76ed616e4f1059d0ff83ebb4a16b9a
* YQL-formatter improvements (part 1)zhvv1172024-11-262-212/+188
| | | | | | | | | | | | | | | | | | | Список изменений: 1. Не делается перенос строки перед `WITH` с одним хинтом (например, перед `WITH TRUNCATE`). 2. Бинарные операторы ставятся в начале, а не конце строки. 3. Убрана лишняя пустая строка в конце файла. 4. Внутри выражений меняем `=` на `==` и `<>` на `!=`. 5. Улучшено форматирование комментариев. 6. Перечисление символов в `EXPORT` записывается в виде вертикально развёрнутого списка вместо одной длинной строки. 7. Убран отступ для блока `WITHOUT`. commit_hash:a407628a023fbd1b9eb98eb41ac92b1ca1593298
* Fixed usage of local/global as column names etcvvvv2024-11-264-26/+32
| | | | | init commit_hash:9d93e3a75a50972e6d21935a82825a019017f087
* YQL-19264 relaxed check for assume order byvvvv2024-11-266-2/+48
| | | | commit_hash:29ee6c53b63771357492cc2e4f7ceac15c5a86b1
* Fix YQL grammar for EXPLAIN QUERY PLANpnv12024-11-254-16/+32
| | | | | Original PR: <https://github.com/ydb-platform/ydb/pull/11235> commit_hash:5224b3c65606b1456f7b2f8fe10a4b04752a4d1e
* Support ALTER SEQUENCE commandshumkovnd2024-11-2112-14/+584
| | | | | <https://github.com/ydb-platform/ydb/issues/11763> commit_hash:5611cbe2f0e09543749e9866c5db8d427649e754
* ListSample/ListSampleN/ListShuffle implementationziganshinmr2024-11-211-0/+3
| | | | commit_hash:987b10b398caa89eee8b94b33f9ea1dc74197223
* Extend TTL syntax to support tiersyentsovsemyon2024-11-2110-25/+332
| | | | | RFC: **[nda.ya.ru/t/JsIT3hp679nYxn](https://nda.ya.ru/t/JsIT3hp679nYxn)** commit_hash:a0a4f65b24ee591cb76fd3cf253ffe24a01bfaf5
* Apply GH commitsudovichenko-r2024-11-129-93/+427
| | | | | | | | | | | | | Apply GH: Extract prefix and entries in backup-related sql (#10807) Apply GH: Fix syntax for Column Family (#10781) Apply GH: Case-insensitive mode for searching modules and functions (#10842) Apply GH: Fixed i/o for pg_proc (#10914) Apply GH: An option to render SQL transalation with Seq! (#11015) commit_hash:d2d2fcdef2bbd0434236aef325aa071c7e39c526
* Support alter sequence restart with in pgshumkovnd2024-11-122-2/+6
| | | | | <https://github.com/ydb-platform/ydb/issues/11475> commit_hash:4db52ba0a2da92d383d7269cdb2e13d5a552b30a
* Merge PR #10831, #11068, #11075, #11152aneporada2024-11-127-53/+180
| | | | | | | | | | | #11152 - Allow to choose normal or aggreation PG function #11075 - Handle invalid base #11068 - Allow more postgis functions #10831 - Views: if exists / if not exists for DDL commit_hash:0ebf35e45ac6de147c9000440ca25237db061d2e
* Merge PR #10741, #10799, #10732aneporada2024-11-121-2/+2
| | | | | | | | | \#10732 Fix a bug in YQL node creation for indexImplTable table settings \#10799support computation graph invalidation in purecalc \#10741Don't use Now() during replay for yt settings commit_hash:bc4c150ceb2ae05fc19eaa4804fb668730a89410
* Merge GH PR #9404aneporada2024-11-129-13/+229
| | | | commit_hash:d780798556aedbe2be898d69185380f2ecb95f9c
* Moved other yql/essentials libs YQL-19206vvvv2024-11-07108-0/+89445
| | | | | init commit_hash:7d4c435602078407bbf20dd3c32f9c90d2bbcbc0
* Moved yql/parser (w/o pg_wrapper) & yql/protos YQL-19206vvvv2024-11-033-0/+5164
init commit_hash:71603ddfc208bf4ab1691d886ac35f22c107e3ee