Skip to content

Commit

Permalink
Remove unnecessary #
Browse files Browse the repository at this point in the history
ColdFusion 2018 throws an error when the # are used in this expression.  Removing them solves the issue.
  • Loading branch information
seancoyne committed Nov 20, 2019
1 parent 6578458 commit 55868f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/dbgateways/MySQLGateway.cfc
Expand Up @@ -675,11 +675,11 @@
OR (arguments.expected.type neq "longchar" and arguments.expected.default neq arguments.actual.default)
OR arguments.expected.type neq arguments.actual.type
OR arguments.expected.precision neq arguments.actual.precision
OR #arguments.expected.GENERATEDALWAYS?:''# neq #arguments.actual.GENERATEDALWAYS?:''#
OR #arguments.expected.VIRTUALTYPE?:''# neq #arguments.actual.VIRTUALTYPE?:''# />
OR arguments.expected.GENERATEDALWAYS?:'' neq arguments.actual.GENERATEDALWAYS?:''
OR arguments.expected.VIRTUALTYPE?:'' neq arguments.actual.VIRTUALTYPE?:'' />

<cfreturn altered />
</cffunction>


</cfcomponent>
</cfcomponent>

0 comments on commit 55868f2

Please sign in to comment.