Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fetchTypeHandler - access to rowset meta data #1728

Open
sosoba opened this issue Mar 7, 2025 · 1 comment
Open

fetchTypeHandler - access to rowset meta data #1728

sosoba opened this issue Mar 7, 2025 · 1 comment

Comments

@sosoba
Copy link

sosoba commented Mar 7, 2025

  1. Describe your new request in detail

Currently fetchTypeHandler receives the metadata of a single column in its only parameter. One of the possibilities offered by this plugin is changing the name of a column (field in the result object). Ex.:

fetchTypeHandler: (columnMetaData) => {
  columnMetaData = columnMetaData.toLowerCase();
}

To perform this safely it would be useful to have knowledge of all the result columns. Ex.

fetchTypeHandler: (columnMetaData, rowsetMetaData) => {
  const newName = columnMetaData.toLowerCase();
  if (rowsetMetaData.every(({name}) => name !== newName)) {
    columnMetaData = newName;
  }
}

I would like to propose adding a second argument to handler.

  1. Give supporting information about tools and operating systems. Give relevant product version numbers
    6.8.0
@sharadraju
Copy link
Member

Thanks @sosoba for the suggestion. We will look into it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants