Bladeren bron

Merge pull request #2690 from ghalliday/fixintindex

Fix a few example files to avoid newly introduced error

Reviewed-By: Richard Chapman <rchapman@hpccsystems.com>
Richard Chapman 13 jaren geleden
bovenliggende
commit
3ab8091e08
3 gewijzigde bestanden met toevoegingen van 2 en 4 verwijderingen
  1. 0 1
      ecl/regress/fetch12.ecl
  2. 2 2
      ecl/regress/hthor_setup.ecl
  3. 0 1
      ecl/regress/sqsimple.ecl

+ 0 - 1
ecl/regress/fetch12.ecl

@@ -518,7 +518,6 @@ DG_IntegerRecord := RECORD
 END;
 
 DG_IntegerDataset := DATASET(DG_IntegerDatasetName, DG_IntegerRecord, thor);
-DG_IntegerIndex := INDEX(DG_IntegerDataset, { i6, nested }, { DG_IntegerDataset }, DG_IntegerIndexName);
 
 
 #line(0)

+ 2 - 2
ecl/regress/hthor_setup.ecl

@@ -533,8 +533,8 @@ DG_MemFile := DATASET(DG_MemFileName,DG_MemFileRec,FLAT);
 
 //record structures
 DG_NestedIntegerRecord := RECORD
-  INTEGER4 i4;
-  UNSIGNED3 u3;
+  big_endian unsigned INTEGER4 i4;
+  big_endian UNSIGNED3 u3;
 END;
 
 DG_IntegerRecord := RECORD

+ 0 - 1
ecl/regress/sqsimple.ecl

@@ -17,7 +17,6 @@
 ############################################################################## */
 
 #option ('childQueries', true);
-#option ('maxInlineDepth', 0);
 #option ('pickBestEngine', false);
 
 unsigned8 skipId := 4 : stored('skipId');