- Notifications
You must be signed in to change notification settings - Fork5
Commit9550e83
committed
Transform ALTER TABLE/SET TYPE/USING expr during parse analysis
This lets later stages have access to the transformed expression; inparticular it allows DDL-deparsing code during event triggers to passthe transformed expression to ruleutils.c, so that the complete commandcan be deparsed.This shuffles the timing of the transform calls a bit: previously,nothing was transformed during parse analysis, and only theRELKIND_RELATION case was being handled during execution. After thispatch, all expressions are transformed during parse analysis (includingthose for relkinds other than RELATION), and the error for otherrelation kinds is thrown only during execution. So we do more work thanbefore to reject some bogus cases. That seems acceptable.1 parent4ff695b commit9550e83
2 files changed
+44
-31
lines changedLines changed: 7 additions & 28 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
7776 | 7776 |
| |
7777 | 7777 |
| |
7778 | 7778 |
| |
7779 |
| - | |
| 7779 | + | |
7780 | 7780 |
| |
7781 | 7781 |
| |
7782 | 7782 |
| |
| |||
7835 | 7835 |
| |
7836 | 7836 |
| |
7837 | 7837 |
| |
7838 |
| - | |
7839 |
| - | |
7840 |
| - | |
7841 |
| - | |
7842 |
| - | |
| 7838 | + | |
| 7839 | + | |
| 7840 | + | |
| 7841 | + | |
| 7842 | + | |
7843 | 7843 |
| |
7844 |
| - | |
7845 |
| - | |
7846 |
| - | |
7847 |
| - | |
7848 |
| - | |
7849 |
| - | |
7850 |
| - | |
7851 |
| - | |
7852 |
| - | |
7853 |
| - | |
7854 |
| - | |
7855 |
| - | |
7856 |
| - | |
7857 |
| - | |
7858 |
| - | |
7859 |
| - | |
7860 |
| - | |
7861 |
| - | |
7862 |
| - | |
7863 |
| - | |
7864 |
| - | |
7865 |
| - | |
| 7844 | + | |
7866 | 7845 |
| |
7867 | 7846 |
| |
7868 | 7847 |
| |
|
Lines changed: 37 additions & 3 deletions
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
2372 | 2372 |
| |
2373 | 2373 |
| |
2374 | 2374 |
| |
| 2375 | + | |
2375 | 2376 |
| |
2376 | 2377 |
| |
2377 | 2378 |
| |
| |||
2382 | 2383 |
| |
2383 | 2384 |
| |
2384 | 2385 |
| |
2385 |
| - | |
| 2386 | + | |
2386 | 2387 |
| |
2387 | 2388 |
| |
| 2389 | + | |
| 2390 | + | |
| 2391 | + | |
| 2392 | + | |
| 2393 | + | |
| 2394 | + | |
2388 | 2395 |
| |
| 2396 | + | |
2389 | 2397 |
| |
2390 | 2398 |
| |
2391 | 2399 |
| |
| |||
2413 | 2421 |
| |
2414 | 2422 |
| |
2415 | 2423 |
| |
2416 |
| - | |
2417 |
| - | |
| 2424 | + | |
| 2425 | + | |
2418 | 2426 |
| |
2419 | 2427 |
| |
2420 | 2428 |
| |
| |||
2446 | 2454 |
| |
2447 | 2455 |
| |
2448 | 2456 |
| |
| 2457 | + | |
2449 | 2458 |
| |
2450 | 2459 |
| |
2451 | 2460 |
| |
| |||
2472 | 2481 |
| |
2473 | 2482 |
| |
2474 | 2483 |
| |
| 2484 | + | |
| 2485 | + | |
| 2486 | + | |
| 2487 | + | |
| 2488 | + | |
| 2489 | + | |
| 2490 | + | |
| 2491 | + | |
| 2492 | + | |
| 2493 | + | |
| 2494 | + | |
| 2495 | + | |
| 2496 | + | |
| 2497 | + | |
| 2498 | + | |
| 2499 | + | |
| 2500 | + | |
| 2501 | + | |
| 2502 | + | |
| 2503 | + | |
| 2504 | + | |
| 2505 | + | |
| 2506 | + | |
| 2507 | + | |
| 2508 | + | |
2475 | 2509 |
| |
2476 | 2510 |
| |
2477 | 2511 |
| |
|
0 commit comments
Comments
(0)