-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
gmickus
committed
Oct 2, 2024
1 parent
6c035cd
commit 533262d
Showing
10 changed files
with
182 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.temptableFormatting": true, | ||
"abl.completion.upperCase": true}*/ | ||
|
||
DEFINE TEMP-TABLE IndexDetails | ||
FIELD tblname AS CHARACTER | ||
FIELD idxname AS CHARACTER | ||
FIELD tdesc AS CHARACTER | ||
FIELD lactive AS LOGICAL | ||
FIELD lprimary AS LOGICAL | ||
FIELD lunique AS LOGICAL | ||
FIELD lwordindex AS LOGICAL | ||
FIELD labbrev AS LOGICAL. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.temptableFormatting": true, | ||
"abl.completion.upperCase": true}*/ | ||
|
||
DEFINE TEMP-TABLE IndexDetails | ||
FIELD tblname AS CHARACTER | ||
FIELD idxname AS CHARACTER | ||
FIELD tdesc AS CHARACTER | ||
FIELD lactive AS LOGICAL | ||
FIELD lprimary AS LOGICAL | ||
FIELD lunique AS LOGICAL | ||
FIELD lwordindex AS LOGICAL | ||
FIELD labbrev AS LOGICAL. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.temptableFormatting": true, | ||
"abl.completion.upperCase": true}*/ | ||
|
||
DEFINE TEMP-TABLE saSys NO-UNDO RCODE-INFORMATION | ||
FIELD dType AS CHARACTER LABEL "Domain Type" FORMAT "x(25)" | ||
FIELD dDescrip AS CHARACTER LABEL "Description" FORMAT "x(65)" | ||
FIELD dDetails AS CHARACTER LABEL "Comments" FORMAT "x(200)" | ||
FIELD dAuthEnabled AS LOGICAL LABEL "Enable Authentication" | ||
FIELD dChecksum AS LOGICAL LABEL "Checksum" | ||
FIELD dCallback AS CHARACTER LABEL "Callback" FORMAT "x(100)". | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.temptableFormatting": true, | ||
"abl.completion.upperCase": true}*/ | ||
|
||
DEFINE TEMP-TABLE saSys NO-UNDO RCODE-INFORMATION | ||
FIELD dType AS CHARACTER LABEL "Domain Type" FORMAT "x(25)" | ||
FIELD dDescrip AS CHARACTER LABEL "Description" FORMAT "x(65)" | ||
FIELD dDetails AS CHARACTER LABEL "Comments" FORMAT "x(200)" | ||
FIELD dAuthEnabled AS LOGICAL LABEL "Enable Authentication" | ||
FIELD dChecksum AS LOGICAL LABEL "Checksum" | ||
FIELD dCallback AS CHARACTER LABEL "Callback" FORMAT "x(100)". | ||
|
25 changes: 25 additions & 0 deletions
25
resources/functionalTests/temptable/7-fields-two-tables/input.p
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.temptableFormatting": true, | ||
"abl.completion.upperCase": true}*/ | ||
|
||
DEFINE TEMP-TABLE tDataSource | ||
FIELD TargetProc AS HANDLE | ||
FIELD DataSource AS HANDLE | ||
FIELD ObjectName AS CHAR | ||
FIELD DocumentPath AS CHAR /* Consumer only */ | ||
FIELD Commit AS LOG | ||
INDEX DataSource AS UNIQUE TargetProc DataSource | ||
INDEX ObjectName ObjectName TargetProc | ||
INDEX DocumentPath DocumentPath TargetProc | ||
INDEX Commit TargetProc Commit. | ||
|
||
/** Producer temp-tables **/ | ||
/* Register all datasource/methods that update nodes with out parameters */ | ||
DEFINE TEMP-TABLE tMethodNode | ||
FIELD TargetProc AS HANDLE | ||
FIELD DataSource AS HANDLE | ||
FIELD Method AS CHAR | ||
FIELD MethodNode AS DEC | ||
FIELD NumParam AS INT | ||
INDEX Method AS UNIQUE TargetProc DataSource Method | ||
INDEX Node TargetProc MethodNode. |
25 changes: 25 additions & 0 deletions
25
resources/functionalTests/temptable/7-fields-two-tables/target.p
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* formatterSettingsOverride */ | ||
/* { "AblFormatter.temptableFormatting": true, | ||
"abl.completion.upperCase": true}*/ | ||
|
||
DEFINE TEMP-TABLE tDataSource | ||
FIELD TargetProc AS HANDLE | ||
FIELD DataSource AS HANDLE | ||
FIELD ObjectName AS CHAR | ||
FIELD DocumentPath AS CHAR /* Consumer only */ | ||
FIELD Commit AS LOG | ||
INDEX DataSource AS UNIQUE TargetProc DataSource | ||
INDEX ObjectName ObjectName TargetProc | ||
INDEX DocumentPath DocumentPath TargetProc | ||
INDEX Commit TargetProc Commit. | ||
|
||
/** Producer temp-tables **/ | ||
/* Register all datasource/methods that update nodes with out parameters */ | ||
DEFINE TEMP-TABLE tMethodNode | ||
FIELD TargetProc AS HANDLE | ||
FIELD DataSource AS HANDLE | ||
FIELD Method AS CHAR | ||
FIELD MethodNode AS DEC | ||
FIELD NumParam AS INT | ||
INDEX Method AS UNIQUE TargetProc DataSource Method | ||
INDEX Node TargetProc MethodNode. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters