Skip to content

[auto-build] poc-transform-table -> master #350

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion _docs/master/api.html
Original file line number Diff line number Diff line change
Expand Up @@ -16909,7 +16909,7 @@
}
}, {
"in" : "query",
"name" : "payload_type",
"name" : "pyaload_type",
"required" : false,
"schema" : {
"type" : "string",
Expand Down
14 changes: 7 additions & 7 deletions _docs/master/dashboards/filters.md
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ You might want to require a filter value if:
To edit a filter's settings:

1. Click the **pencil** icon to enter dashboard editing mode.
2. Click the filter you want to edit.
2. Click the **gear** icon on the filter you want to edit.

From this filter editing view, you can wire up dashboard cards to the filter, or use the filter settings sidebar to:

Expand All @@ -226,14 +226,14 @@ From this filter editing view, you can wire up dashboard cards to the filter, or

### Rename filter

1. In dashboard edit mode, click the fiter you want to edit.
1. In dashboard edit mode, click your filter's **gear** icon.
2. Change the label text.

Renaming the filter only affects the filter's display; the label has no effect on which columns Metabase filters.

### Set filter input type

1. In dashboard edit mode, click the fiter you want to edit.
1. In dashboard edit mode, click your filter's **gear** icon.
2. From the filter settings sidebar, set **How should people filter on this column?**:

- [Dropdown list](#dropdown-list)
Expand Down Expand Up @@ -263,14 +263,14 @@ Useful for looking up partial matches (such as the ["contains" filter](#text-or-

### Set a default filter value

1. In dashboard edit mode, click the filter you want to edit.
1. In dashboard edit mode, click your filter's **gear** icon.
2. From the sidebar, choose a value from the **Default value** input field.

For example, you might want to set a default filter value like "Active", so that when people load your dashboard, they only see data for "Active" records (not "Inactive", "Cancelled", etc).

### Remove a filter

1. In dashboard edit mode, click the fiter you want to edit.
1. In dashboard edit mode, click your filter's **gear** icon.
2. From the sidebar, click **Remove**.

If you accidentally remove a filter, just click **Cancel** in the top-right to exit dashboard edit mode without saving your changes.
Expand All @@ -281,14 +281,14 @@ In dashboard edit mode, click on the grabber handle (six dots) on the left side

### Make a multi-select filter

1. In dashboard edit mode, click the fiter you want to edit.
1. In dashboard edit mode, click your filter's **gear** icon.
2. From the sidebar, find **People can pick** and select "Multiple values".

A multi-select filter with the widget type [Dropdown list](#dropdown-list) or [Search box](#search-box) will display a list of values with checkboxes.

### Change a filter's selectable values

1. In dashboard edit mode, click the fiter you want to edit.
1. In dashboard edit mode, click your filter's **gear** icon.
2. From the sidebar, find **How should users filter on this column?**.
3. Select "Dropdown list".\*
4. Click **Edit** (to the right of "Dropdown list") to specify where the values should come from:
Expand Down
4 changes: 3 additions & 1 deletion _docs/master/developers-guide/driver-changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,13 @@ layout: new-docs

- Added the driver multi-method `driver/set-database-used!` for drivers to set a database on the connection with statements like `USE DATABASE`.

- Added the driver features `:transforms/table`, `:transforms/view`, and `:transforms/matarialized-view` for drivers
that support transforms with table, view, and materialized view as target, respectively.

## Metabase 0.55.9

- Add multi-method `driver/do-with-resilient-connection` for executing functions in a context where closed connections may be automatically reopened


## Metabase 0.55.0

- Add the multi-method `->date` that allows the driver to control how to cast strings and temporal types to dates.
Expand Down
Loading