exasol/s3-document-files-virtual-schema

Default value of `useSSL` in extension is type string instead of boolean

Opened this issue · 0 comments

Situation

While the data type is set correctly in the extension description, the default value isn't.

image

{ id: "useSsl", name: "Use SSL", type: "boolean", required: false, default: "true" },

The corresponding unit test expects the wrong type to in my eyes:

{ name: "boolean", paramValues: [{ name: "useSsl", value: "true" }], expected: `{"useSsl":"true"}` },

Acceptance Criteria

  • Default value for useSSL is true instead of "true"
  • Unit test expects the correct type.