github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/tests/manual_testing/node_reuse/param_ref/dashboard.sp (about)

     1  
     2  dashboard "param_ref" {
     3  
     4    table {
     5      base = table.t1
     6  
     7    }
     8  }
     9  
    10  table "t1"{
    11  
    12    with "w1" {
    13      sql = "select 'foo'"
    14    }
    15  
    16    sql = "select $1 as c1"
    17    param "p1" {
    18      default = with.w1.rows[0]
    19    }
    20  }