Commit 43c42ab
Snowflake: parse ALTER STAGE (SET / RENAME TO) (#9)
* Snowflake: parse ALTER STAGE (SET / RENAME TO)
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
* Fix pre-existing CI failures on the snowflake branch lineage
These checks were already red on the base branch (lav-379-2-for-over-cursor),
inherited from the cursor/scripting/ACCOUNT commits — unrelated to ALTER STAGE,
but required for green CI on this PR:
- codestyle: run cargo fmt --all across the crate
- lint: collapse a match-in-match (parser scripting list), replace a forbidden
unreachable! in DESCRIBE object-type parsing with a parse error, and collapse
nested match arms in the warehouse/account tests
- docs: drop unresolved intra-doc link brackets in scripting-list doc comments
- compile-no-std: gate 'use alloc::vec' behind not(feature = std) in spans.rs
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
---------
Co-authored-by: Wojciech Padlo <wojciech.padlo@localstack.cloud>
Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>1 parent b7529a2 commit 43c42ab
5 files changed
Lines changed: 421 additions & 147 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
4766 | 4766 | | |
4767 | 4767 | | |
4768 | 4768 | | |
| 4769 | + | |
| 4770 | + | |
| 4771 | + | |
| 4772 | + | |
| 4773 | + | |
| 4774 | + | |
| 4775 | + | |
| 4776 | + | |
| 4777 | + | |
| 4778 | + | |
| 4779 | + | |
| 4780 | + | |
4769 | 4781 | | |
4770 | 4782 | | |
4771 | 4783 | | |
| |||
6839 | 6851 | | |
6840 | 6852 | | |
6841 | 6853 | | |
| 6854 | + | |
| 6855 | + | |
| 6856 | + | |
| 6857 | + | |
| 6858 | + | |
| 6859 | + | |
| 6860 | + | |
| 6861 | + | |
| 6862 | + | |
| 6863 | + | |
| 6864 | + | |
6842 | 6865 | | |
6843 | 6866 | | |
6844 | 6867 | | |
| |||
7001 | 7024 | | |
7002 | 7025 | | |
7003 | 7026 | | |
7004 | | - | |
7005 | | - | |
7006 | | - | |
7007 | | - | |
7008 | | - | |
| 7027 | + | |
7009 | 7028 | | |
7010 | 7029 | | |
7011 | | - | |
7012 | | - | |
7013 | | - | |
7014 | | - | |
7015 | | - | |
| 7030 | + | |
7016 | 7031 | | |
7017 | 7032 | | |
7018 | 7033 | | |
| |||
7140 | 7155 | | |
7141 | 7156 | | |
7142 | 7157 | | |
7143 | | - | |
7144 | | - | |
7145 | | - | |
7146 | | - | |
7147 | | - | |
| 7158 | + | |
7148 | 7159 | | |
7149 | 7160 | | |
7150 | 7161 | | |
7151 | 7162 | | |
7152 | | - | |
7153 | | - | |
7154 | | - | |
7155 | | - | |
7156 | | - | |
| 7163 | + | |
7157 | 7164 | | |
7158 | 7165 | | |
7159 | 7166 | | |
| |||
12138 | 12145 | | |
12139 | 12146 | | |
12140 | 12147 | | |
| 12148 | + | |
| 12149 | + | |
| 12150 | + | |
| 12151 | + | |
| 12152 | + | |
| 12153 | + | |
| 12154 | + | |
| 12155 | + | |
| 12156 | + | |
| 12157 | + | |
| 12158 | + | |
| 12159 | + | |
| 12160 | + | |
| 12161 | + | |
| 12162 | + | |
| 12163 | + | |
| 12164 | + | |
| 12165 | + | |
| 12166 | + | |
| 12167 | + | |
| 12168 | + | |
| 12169 | + | |
| 12170 | + | |
| 12171 | + | |
| 12172 | + | |
| 12173 | + | |
| 12174 | + | |
| 12175 | + | |
| 12176 | + | |
| 12177 | + | |
| 12178 | + | |
| 12179 | + | |
| 12180 | + | |
| 12181 | + | |
| 12182 | + | |
| 12183 | + | |
| 12184 | + | |
| 12185 | + | |
| 12186 | + | |
| 12187 | + | |
| 12188 | + | |
| 12189 | + | |
| 12190 | + | |
| 12191 | + | |
| 12192 | + | |
| 12193 | + | |
| 12194 | + | |
| 12195 | + | |
| 12196 | + | |
| 12197 | + | |
| 12198 | + | |
| 12199 | + | |
| 12200 | + | |
| 12201 | + | |
| 12202 | + | |
12141 | 12203 | | |
12142 | 12204 | | |
12143 | 12205 | | |
| |||
12388 | 12450 | | |
12389 | 12451 | | |
12390 | 12452 | | |
12391 | | - | |
12392 | | - | |
12393 | | - | |
12394 | | - | |
12395 | | - | |
| 12453 | + | |
12396 | 12454 | | |
12397 | 12455 | | |
12398 | 12456 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
| 26 | + | |
| 27 | + | |
26 | 28 | | |
27 | 29 | | |
28 | 30 | | |
| |||
35 | 37 | | |
36 | 38 | | |
37 | 39 | | |
38 | | - | |
39 | | - | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | | - | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | | - | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
| 40 | + | |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
| 50 | + | |
| 51 | + | |
| 52 | + | |
52 | 53 | | |
53 | 54 | | |
54 | 55 | | |
| |||
462 | 463 | | |
463 | 464 | | |
464 | 465 | | |
| 466 | + | |
465 | 467 | | |
466 | 468 | | |
467 | 469 | | |
| |||
831 | 833 | | |
832 | 834 | | |
833 | 835 | | |
834 | | - | |
835 | | - | |
836 | | - | |
837 | | - | |
| 836 | + | |
838 | 837 | | |
839 | 838 | | |
840 | 839 | | |
| |||
0 commit comments