Skip to content

Commit

Permalink
Updated samples to remove deprecated :*
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeRys committed Oct 13, 2016
1 parent 440e36a commit b4b8022
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// Define paths
DECLARE @ADL_DIR string = "/Samples/Data/AmbulanceDemo/{date:YYYY}/{date:MM}/";

DECLARE @ADL_FILESET_FILENAME string = @ADL_DIR + "{filename:*}.{ext:*}";
DECLARE @ADL_FILESET_FILENAME string = @ADL_DIR + "{filename}.{ext}";

@data = EXTRACT data string
, filename string // virtual file set column
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ AS BEGIN
DECLARE @INPUT_FILE_PFX string = "vehicle";
DECLARE @ADL_DIR string = "/Samples/Data/AmbulanceDemo/";
DECLARE @ADL_DATA string = @ADL_DIR + @INPUT_FILE_PFX;
DECLARE @ADL_FILESET string = @ADL_DATA + "{vid:*}_{date:MM}{date:dd}{date:yyyy}.{*}";
DECLARE @ADL_FILESET string = @ADL_DATA + "{vid}_{date:MM}{date:dd}{date:yyyy}.{*}";

@data = EXTRACT vehicle_id int
, entry_id long
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ DECLARE @date3 DateTime = DateTime.Parse("2014-09-16");
DECLARE @date4 DateTime = DateTime.Parse("2014-09-17");

DECLARE @ADL_DIR string = "/Samples/Data/AmbulanceData/";
DECLARE @ADL_FILESET string = @ADL_DIR + "vehicle{vid:*}_{date:MM}{date:dd}{date:yyyy}.{*}";
DECLARE @ADL_FILESET string = @ADL_DIR + "vehicle{vid}_{date:MM}{date:dd}{date:yyyy}.{*}";

@data = EXTRACT vehicle_id int
, entry_id long
Expand Down

0 comments on commit b4b8022

Please sign in to comment.