키보드 네비게이션
↑W 이전 미실행
↓S 다음 미실행
←A 이전 수정
→D 다음 수정
PgUpQ 이전함수
PgDnE 다음함수
HomeC-A 시작
EndC-E 끝
Modified Lines Coverage: 0/0 lines (0.0%)
| Line | Hits | Source | Commit |
| 686 |
- |
window_last_value(PG_FUNCTION_ARGS) |
- |
| 687 |
- |
{ |
- |
| 688 |
- |
WindowObject winobj = PG_WINDOW_OBJECT(); |
- |
| 689 |
- |
Datum result; |
- |
| 690 |
- |
bool isnull; |
- |
| 691 |
- |
|
- |
| 692 |
- |
WinCheckAndInitializeNullTreatment(winobj, true, fcinfo); |
- |
| 693 |
- |
result = WinGetFuncArgInFrame(winobj, 0, |
- |
| 694 |
- |
0, WINDOW_SEEK_TAIL, false, |
2abe7c8Row pattern recognition patch (executor). |
| 695 |
- |
&isnull, NULL); |
- |
| 696 |
- |
if (isnull) |
- |
| 697 |
- |
PG_RETURN_NULL(); |
- |
| 698 |
- |
|
- |
| 699 |
- |
PG_RETURN_DATUM(result); |
- |
| 700 |
- |
} |
- |
Modified Lines Coverage: 2/2 lines (100.0%)
| Line | Hits | Source | Commit |
| 742 |
4524 |
window_prev(PG_FUNCTION_ARGS) |
2abe7c8Row pattern recognition patch (executor). |
| 743 |
- |
{ |
2abe7c8Row pattern recognition patch (executor). |
| 744 |
4524 |
PG_RETURN_DATUM(PG_GETARG_DATUM(0)); |
2abe7c8Row pattern recognition patch (executor). |
| 745 |
- |
} |
2abe7c8Row pattern recognition patch (executor). |
Modified Lines Coverage: 2/2 lines (100.0%)
| Line | Hits | Source | Commit |
| 753 |
48 |
window_next(PG_FUNCTION_ARGS) |
2abe7c8Row pattern recognition patch (executor). |
| 754 |
- |
{ |
2abe7c8Row pattern recognition patch (executor). |
| 755 |
48 |
PG_RETURN_DATUM(PG_GETARG_DATUM(0)); |
2abe7c8Row pattern recognition patch (executor). |
| 756 |
- |
} |
2abe7c8Row pattern recognition patch (executor). |