Skip to content

Commit 3e5d638

Browse files
authored
Merge pull request #441 from tableau/dev-tdvt
Merge dev-tdvt into master
2 parents f614aaf + 01c96c4 commit 3e5d638

File tree

4 files changed

+33
-2
lines changed

4 files changed

+33
-2
lines changed

tdvt/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## Unreleased
7+
## [2.1.6] - 2020-01-13
8+
- Add string.contains.regex test to test escaping regex special characters in the Contains function
89

910
## [2.1.5] - 2020-01-08
1011
- Update test names and setup file locations for CastCalcsTest, StaplesTest, and BadPasswordTest
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<results>
2+
<test name='CONTAINS(str1, &quot;A(&quot;)'>
3+
<table>
4+
<schema>
5+
<column>[cast_calcs.postgres91].[TEMP(Test)(1234567890)(0)]</column>
6+
</schema>
7+
<tuple>
8+
<value>%null%</value>
9+
</tuple>
10+
<tuple>
11+
<value>false</value>
12+
</tuple>
13+
</table>
14+
</test>
15+
<test name='CONTAINS(str1, &quot;A\(&quot;)'>
16+
<table>
17+
<schema>
18+
<column>[cast_calcs.postgres91].[TEMP(Test)(1380546255)(0)]</column>
19+
</schema>
20+
<tuple>
21+
<value>%null%</value>
22+
</tuple>
23+
<tuple>
24+
<value>false</value>
25+
</tuple>
26+
</table>
27+
</test>
28+
</results>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
CONTAINS(str2, "A(")
2+
CONTAINS(str2, "A\(")

tdvt/tdvt/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '2.1.5'
1+
__version__ = '2.1.6'

0 commit comments

Comments
 (0)