From cd56cfddf64be353773e1921b2dd24985d07bf2f Mon Sep 17 00:00:00 2001 From: "Dan S. Camper" Date: Mon, 4 Dec 2023 14:53:16 -0600 Subject: [PATCH] Comment update --- ecl/regress/filetypeplugindataset.ecl | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ecl/regress/filetypeplugindataset.ecl b/ecl/regress/filetypeplugindataset.ecl index d991c51a9d0..1b0744b44ee 100644 --- a/ecl/regress/filetypeplugindataset.ecl +++ b/ecl/regress/filetypeplugindataset.ecl @@ -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); @@ -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 +//-----------------------------------------------------------