Project

General

Profile

update2.p

Igor Skornyakov, 11/06/2015 11:28 AM

Download (530 Bytes)

 
1
/*
2
	This test checks interaction between schema-defined help, explicit help and NO-HELP frame option
3
*/
4
define temp-table tst
5
        FIELD num as int initial 0 help "num help"
6
.
7

    
8
create tst.
9

    
10
message "expected help: 'num help'".
11
update tst.num with frame f1.
12

    
13
message "expected help: no help".
14
update tst.num with frame f2 no-help.
15

    
16
message "expected help: 'explicit help'".
17
update tst.num help "explicit help" with frame f3.
18

    
19
message "expected help: 'explicit help'".
20
update tst.num help "explicit help" with frame f4 no-help.
21