Skip to content

fix issue #1

Cait Himes requested to merge issue1 into master

This closes issue #1 (closed). The fix was to replace the " characters with '. For example, let's set the task label to NAME for table test. The old SQL statement would be UPDATE ATLAS SET TASK_LABEL="NAME" WHERE NAME="test" and this would set TASK_LABEL to test. The new SQL statement is UPDATE ATLAS SET TASK_LABEL='NAME' WHERE NAME='test' and this sets the task label to NAME as expected.

Merge request reports