Skip to content
Merged
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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/samples/cubeml/orders.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ cubes:
sql: '{CUBE}.item_id'
title: Item ID
type: number
- name: order_status
- description: Order Status - The status of the order, making the description longer just to test correct parsing, adding some extra characters to make sure it is parsed correctly like ( a,b ) [ d, e].
name: order_status
sql: '{CUBE}."STATUS"'
type: string
- name: is_cancelled
Expand Down
1 change: 1 addition & 0 deletions tests/samples/lkml/views/orders.view.lkml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ view: orders {
dimension: order_status {
type: string
sql: ${TABLE}."STATUS" ;;
description: "Order Status - The status of the order, making the description longer just to test correct parsing, adding some extra characters to make sure it is parsed correctly like ( a,b ) [ d, e]."
}

dimension: is_cancelled {
Expand Down