From 57722bf8f17f43da20c802ba7cbcd2df02788732 Mon Sep 17 00:00:00 2001 From: gmickus Date: Fri, 13 Sep 2024 09:48:33 +0300 Subject: [PATCH] Update tests --- resources/functionalTests/temptable/4-like/input.p | 10 ---------- resources/functionalTests/temptable/4-like/target.p | 8 -------- .../functionalTests/temptable/5-serializable/input.p | 2 +- .../functionalTests/temptable/5-serializable/target.p | 4 ++-- 4 files changed, 3 insertions(+), 21 deletions(-) delete mode 100644 resources/functionalTests/temptable/4-like/input.p delete mode 100644 resources/functionalTests/temptable/4-like/target.p diff --git a/resources/functionalTests/temptable/4-like/input.p b/resources/functionalTests/temptable/4-like/input.p deleted file mode 100644 index b071135..0000000 --- a/resources/functionalTests/temptable/4-like/input.p +++ /dev/null @@ -1,10 +0,0 @@ -/* formatterSettingsOverride */ -/* { "AblFormatter.temptableFormatting": true, - "abl.completion.upperCase": true}*/ - -DEFINE TEMP-TABLE temp-item -FIELD cat-page -LIKE Item.CatPage -FIELD inventory LIKE Item.Price LABEL "Inventory Value" -INDEX cat-page -IS PRIMARY cat-page ASCENDING. \ No newline at end of file diff --git a/resources/functionalTests/temptable/4-like/target.p b/resources/functionalTests/temptable/4-like/target.p deleted file mode 100644 index e5eb856..0000000 --- a/resources/functionalTests/temptable/4-like/target.p +++ /dev/null @@ -1,8 +0,0 @@ -/* formatterSettingsOverride */ -/* { "AblFormatter.temptableFormatting": true, - "abl.completion.upperCase": true}*/ - -DEFINE TEMP-TABLE temp-item - FIELD cat-page LIKE Item.CatPage - FIELD inventory LIKE Item.Price LABEL "Inventory Value" - INDEX cat-page IS PRIMARY cat-page ASCENDING. \ No newline at end of file diff --git a/resources/functionalTests/temptable/5-serializable/input.p b/resources/functionalTests/temptable/5-serializable/input.p index c920849..dbb9c5c 100644 --- a/resources/functionalTests/temptable/5-serializable/input.p +++ b/resources/functionalTests/temptable/5-serializable/input.p @@ -2,5 +2,5 @@ /* { "AblFormatter.temptableFormatting": true, "abl.completion.upperCase": true}*/ -DEFINE SERIALIZABLE TEMP-TABLE ttCustomer NO-UNDO REFERENCE-ONLY LIKE Customer INX CustNum I PRIMARY UNIQUE ustNum +DEFINE SERIALIZABLE TEMP-TABLE ttCustomer NO-UNDO REFERENCE-ONLY LIKE Customer INDEX CustNum I PRIMARY UNIQUE ustNum INDEX CustNum IS PRIMARY UNIQUE CustNum. \ No newline at end of file diff --git a/resources/functionalTests/temptable/5-serializable/target.p b/resources/functionalTests/temptable/5-serializable/target.p index a55ffcc..91b12fe 100644 --- a/resources/functionalTests/temptable/5-serializable/target.p +++ b/resources/functionalTests/temptable/5-serializable/target.p @@ -2,6 +2,6 @@ /* { "AblFormatter.temptableFormatting": true, "abl.completion.upperCase": true}*/ -DEFINE SERIALIZABLE TEMP-TABLE ttCustomer NO-UNDO REFERENCE-ONLY - LIKE Customer. INX CustNum I PRIMARY UNIQUE ustNum +DEFINE SERIALIZABLE TEMP-TABLE ttCustomer NO-UNDO REFERENCE-ONLY LIKE Customer + INDEX CustNum I PRIMARY UNIQUE ustNum INDEX CustNum IS PRIMARY UNIQUE CustNum. \ No newline at end of file