apache / drill

Apache Drill is a distributed MPP query layer for self describing data
https://drill.apache.org/
Apache License 2.0
1.93k stars 980 forks source link

DRILL-8449: fix typo in width property in FreeMarker templates #2818

Closed rymarm closed 1 year ago

rymarm commented 1 year ago

DRILL-8449: Typo in FreeMarker templates

Description

CSS-based properties use a colon(:) to assign values. The result.ftl and options.ftl have the property width with an equal sign(=) instead of a colon(:).

This typo makes a query result table has an incorrect display.

Steps to reproduce:

  1. Execute example query: select full_name from cp.employee.jsonlimit 1;
  2. Push the "Column visibility" button, toggle "full_name" column visibility off, and turn it back on.

Documentation

None requerid

Testing

Visual test of UI

cgivre commented 1 year ago

Thanks @rymarm I'll merge once the CI passes.