From 5f5db92a323d9ada657e86e4e65167934dd740a4 Mon Sep 17 00:00:00 2001 From: PauliusKu Date: Wed, 15 Jan 2025 17:11:54 +0200 Subject: [PATCH] fixed wrong test case --- .../functionalTests/for/3first-by/input.p | 32 ++++--------------- 1 file changed, 6 insertions(+), 26 deletions(-) diff --git a/resources/functionalTests/for/3first-by/input.p b/resources/functionalTests/for/3first-by/input.p index 8e81cf72..06702dee 100644 --- a/resources/functionalTests/for/3first-by/input.p +++ b/resources/functionalTests/for/3first-by/input.p @@ -1,27 +1,7 @@ -/********************************************************************* -* Copyright (C) 2000 by Progress Software Corporation. All rights * -* reserved. Prior versions of this work may contain portions * -* contributed by participants of Possenet. * -* * -*********************************************************************/ -/*---------------------------------------------------------------------------- +/* formatterSettingsOverride */ +/* { "AblFormatter.forFormatting": true}*/ -File: dbname.i - -Description: - Include file for _chkfld.p and _mapfld.p which gets the appropriate - db-name value for local and foreign databases. - -Author: Nancy E.Horn - -Date Created: Mar. 1997 ----------------------------------------------------------------------------- */ -FUNCTION get-dbname RETURNS CHARACTER (dbrecid AS RECID): - FIND FIRST DICTDB._db NO-LOCK WHERE RECID(DICTDB._db) eq dbrecid NO-ERROR. - IF AVAILABLE(DICTDB._db) AND (DICTDB._db._db-name ne ?) THEN - RETURN DICTDB._db._db-name. - ELSE - RETURN LDBNAME("DICTDB"). - END FUNCTION. - -/* End Function Definitions */ +FOR FIRST Customer NO-LOCK + BY Customer.CreditLimit: + DISPLAY Customer. + END. \ No newline at end of file