Skip to content

Commit

Permalink
Comment update
Browse files Browse the repository at this point in the history
  • Loading branch information
dcamper committed Dec 27, 2023
1 parent 62e6f0c commit cd56cfd
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ecl/regress/filetypeplugindataset.ecl
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ NamesLayout := RECORD
INTEGER2 age := 25;
END;

//-----------------------------------------------------------
// All of the following represent referencing legacy/built-in
// file types and their options with a new syntax
//-----------------------------------------------------------
namesTableFlat_1 := DATASET(DYNAMIC('x'), NamesLayout, TYPE(FLAT), __COMPRESSED__, __GROUPED__);
OUTPUT(namesTableFlat_1, ALL);

Expand All @@ -44,3 +48,7 @@ OUTPUT(namesTableJSON_1, ALL);

namesTableJSON_2 := DATASET(DYNAMIC('x'), NamesLayout, TYPE(JSON : '/', NOROOT));
OUTPUT(namesTableJSON_2, ALL);

//-----------------------------------------------------------
// What follows is testing pluggable file types
//-----------------------------------------------------------

0 comments on commit cd56cfd

Please sign in to comment.