@vuu-ui/vuu-data-remote 0.8.18-debug → 0.8.19-debug

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/esm/index.js CHANGED
@@ -2868,20 +2868,6 @@ var groupRowsByViewport = (rows) => {
2868
2868
  }
2869
2869
  return result;
2870
2870
  };
2871
- var getColumnByName = (schema, name) => {
2872
- if (name === void 0) {
2873
- return void 0;
2874
- } else {
2875
- const column = schema.columns.find((col) => col.name === name);
2876
- if (column) {
2877
- return column;
2878
- } else {
2879
- throw Error(
2880
- `getColumnByName no column '${name}' in schema for ${schema.table.table}`
2881
- );
2882
- }
2883
- }
2884
- };
2885
2871
  var createSchemaFromTableMetadata = ({
2886
2872
  columns,
2887
2873
  dataTypes,
@@ -3498,7 +3484,6 @@ export {
3498
3484
  connectToServer,
3499
3485
  connectionId,
3500
3486
  createSchemaFromTableMetadata,
3501
- getColumnByName,
3502
3487
  getFirstAndLastRows,
3503
3488
  getServerAPI,
3504
3489
  groupRowsByViewport,