Skip to content

Commit

Permalink
fixed wrong test case
Browse files Browse the repository at this point in the history
  • Loading branch information
PauliusKu committed Jan 15, 2025
1 parent cd7b177 commit 5f5db92
Showing 1 changed file with 6 additions and 26 deletions.
32 changes: 6 additions & 26 deletions resources/functionalTests/for/3first-by/input.p
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit 5f5db92

Please sign in to comment.