I noticed when building a project today that was making use of Source Orbit's supported extensions that .index is not recognized by IBMi Bob. The index files are like this:
DROP INDEX IF EXISTS EMP_IDX_1;
CREATE INDEX EMP_IDX_1
ON EMPLOYEE( DEPT DESC, MANAGER DESC )
RCDFMT EMPR;
LABEL ON INDEX EMP_IDX_1
IS 'Employee Index by Dept and Manager' ;
To get around the issue, I renamed the .index files to .view for the time being and it worked. I do not know if that is the correct approach, but it allowed the build to succeed. I just wanted to make mention of this, as a potential feature addition for Bob.
I noticed when building a project today that was making use of Source Orbit's supported extensions that .index is not recognized by IBMi Bob. The index files are like this:
To get around the issue, I renamed the .index files to .view for the time being and it worked. I do not know if that is the correct approach, but it allowed the build to succeed. I just wanted to make mention of this, as a potential feature addition for Bob.
Thanks!