Skip to content

Commit

Permalink
Merge pull request #17 from j-stew/null-handling
Browse files Browse the repository at this point in the history
  • Loading branch information
KKcorps committed May 15, 2024
2 parents 1f4ee6d + 1caddcb commit cbaebb0
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion plugins/pinotjdbc/connectionBuilder.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* specific language governing permissions and limitations under the License.
*/
(function dsbuilder(attr) {
const urlBuilder = "jdbc:pinot://" + attr[connectionHelper.attributeServer] + ":" + attr[connectionHelper.attributePort] + "?enableNullHandling=true";
const urlBuilder = "jdbc:pinot://" + attr[connectionHelper.attributeServer] + ":" + attr[connectionHelper.attributePort];

return [urlBuilder];
})
2 changes: 1 addition & 1 deletion plugins/pinotjdbc/connectionFields.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,6 @@
</boolean-options>
</field>

<field name="v-additional-properties" label="Additional Properties" value-type="textbox" category="advanced" placeholder="Optional - Enter additional properties as key=value pairs on separate lines" optional="true" />
<field name="v-additional-properties" label="Additional Properties" value-type="textbox" category="advanced" placeholder="Optional - Enter additional properties as key=value pairs on separate lines" default-value="enableNullHandling=true" optional="true" />

</connection-fields>
2 changes: 1 addition & 1 deletion plugins/pinotjdbc/manifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
specific language governing permissions and limitations under the License.
-->
<connector-plugin class='pinot' superclass='jdbc' plugin-version='1.0.0' name='Apache Pinot' version='18.1' min-version-tableau='2021.1'>
<connector-plugin class='pinot' superclass='jdbc' plugin-version='1.0.1' name='Apache Pinot' version='18.1' min-version-tableau='2021.1'>
<vendor-information>
<company name="StarTree"/>
<support-link url="https://github.com/apache/pinot/issues"/>
Expand Down

0 comments on commit cbaebb0

Please sign in to comment.