Version 1

    i did some changes in DDLFileMetadataRepository.java file to add support of multiple ddl files in one static vdb in teiid ,

    now multiple ddl can be add in vdb.xml like

    <metadata type="DDL-FILE">

         /ddl/CM_Def.ddl,/ddl/CM_Project.ddl,

         /ddl/CM_Field.ddl,/ddl/Rem.ddl

      </metadata>

     

     

    and DDL script files will be place in the DDL folder.

    Order of files is depend on sequence which is defined in vdb.xml

     

     

    I am splitting the path of files based on the comma delimiter, and then merging the all files in one temp file, and storing that temp file in temp folder,

    and then passing the stream of temp file for parsing,

    after parsing, temp file will be delete from temp folder