Description
I want to include and filter Microsoft SQL Server SQL-files. SQL Server has extended properties which are declared as (extended property "Version" on a database):
exec DB.sys.sp_addextendedproperty @name='Version' , @value='${project.version}' go
However, if I filter the file which contains this call the expression ${project.version} is not been replaced. I get it working only when adding a second "@"
exec DB.sys.sp_addextendedproperty @name='Version' , @value='@${project.version}' go
This evaluates to
exec DB.sys.sp_addextendedproperty @name='Version' , @value='@2.03.002' go
However the "@" is not really wanted.
Thank you.
PS: Please rename attached "test.txt" to "test.sql". Got an server error while trying to upload "test.sql".
Attachments
Attachments
Issue Links
- depends upon
-
MSHARED-199 Filtering doesn't work if 2 delimiters are used on the same line, the first one being left open
- Closed
-
MASSEMBLY-686 Update version of maven-filtering to 1.2
- Closed