-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpg_attribute.view.lookml
91 lines (67 loc) · 1.6 KB
/
pg_attribute.view.lookml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
- view: pg_attribute
sql_table_name: pg_catalog.pg_attribute
fields:
- dimension: attalign
sql: ${TABLE}.attalign
- dimension: attbyval
type: yesno
sql: ${TABLE}.attbyval
- dimension: attcacheoff
type: int
sql: ${TABLE}.attcacheoff
- dimension: attencodingtype
type: number
sql: ${TABLE}.attencodingtype
- dimension: attencrypttype
type: number
sql: ${TABLE}.attencrypttype
- dimension: atthasdef
type: yesno
sql: ${TABLE}.atthasdef
- dimension: attinhcount
type: int
sql: ${TABLE}.attinhcount
- dimension: attisdistkey
type: yesno
sql: ${TABLE}.attisdistkey
- dimension: attisdropped
type: yesno
sql: ${TABLE}.attisdropped
- dimension: attislocal
type: yesno
sql: ${TABLE}.attislocal
- dimension: attispreloaded
type: yesno
sql: ${TABLE}.attispreloaded
- dimension: attlen
type: number
sql: ${TABLE}.attlen
- dimension: attname
sql: ${TABLE}.attname
- dimension: attndims
type: int
sql: ${TABLE}.attndims
- dimension: attnotnull
type: yesno
sql: ${TABLE}.attnotnull
- dimension: attnum
type: number
sql: ${TABLE}.attnum
- dimension: attrelid
sql: ${TABLE}.attrelid
- dimension: attsortkeyord
type: int
sql: ${TABLE}.attsortkeyord
- dimension: attstattarget
type: int
sql: ${TABLE}.attstattarget
- dimension: attstorage
sql: ${TABLE}.attstorage
- dimension: atttypid
sql: ${TABLE}.atttypid
- dimension: atttypmod
type: int
sql: ${TABLE}.atttypmod
- measure: count
type: count
drill_fields: [attname]