Skip to content

Commit f767b5b

Browse files
authored
Merge pull request #402 from tableau/stripathi
Remove INITSTMT from connectionBuilder.js so that InitialSQL does not…
2 parents 29b5228 + fafb5df commit f767b5b

3 files changed

Lines changed: 9 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
# Tableau Connector SDK Changelog
22

33
## Unreleased
4+
5+
### Added
6+
### Changed
7+
### Removed
8+
9+
## 2019-12-11
410
### Added
511
- New SQLite Extract-Only Sample
612
- Removed unnecessary attribute from samples
713
### Changed
814
### Removed
15+
- Removed INITSTMT from MySQL ODBC sample so that intialSQL does not run twice.
916

1017
## 2019-03-29
11-
1218
### Added
1319
- Brought in changes from internal repository.
1420
- New ISO Date test cases.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This project consists of documentation, example files, the Tableau Datasource Ve
66

77
| Tool | Latest Version |
88
|--------------------------------------------------|--------------------|
9-
| Connector Packager SDK (Beta) for Tableau 2019.3 | 10-02-2019 |
9+
| Connector Packager SDK (Beta) for Tableau 2019.3 | 12-11-2019 |
1010
| TDVT | 2.1.2 (12-05-2019) |
1111
| Connector Packager | 0.0.1 (10-03-2019) |
1212

samples/plugins/mysql_odbc/connectionBuilder.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
params["UID"] = attr[connectionHelper.attributeUsername];
88
params["PWD"] = attr[connectionHelper.attributePassword];
99
params["DATABASE"] = attr[connectionHelper.attributeDatabase];
10-
params["INITSTMT"] = attr[connectionHelper.attributeInitialSQL];
11-
10+
1211
params["OPTION"] = "1048576"
1312

1413
var formattedParams = [];

0 commit comments

Comments
 (0)