The SQL compiler within the Input Tool places a space between operators causing a SQL syntax error.
Eg.
SELECT * FROM [DataSource] WHERE [Dimension] != 'abc'
Becomes
SELECT * FROM [DataSource] WHERE [Dimension] ! = 'abc'
The compiler should not add a space in this instance as it violates the syntax rules and triggers an error.