dwh 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.rubocop.yml +36 -0
- data/CHANGELOG.md +5 -0
- data/LICENSE +21 -0
- data/README.md +130 -0
- data/Rakefile +42 -0
- data/docs/DWH/Adapters/Adapter.html +3053 -0
- data/docs/DWH/Adapters/Athena.html +1704 -0
- data/docs/DWH/Adapters/Boolean.html +121 -0
- data/docs/DWH/Adapters/Druid.html +1626 -0
- data/docs/DWH/Adapters/DuckDb.html +2012 -0
- data/docs/DWH/Adapters/MySql.html +1704 -0
- data/docs/DWH/Adapters/OpenAuthorizable/ClassMethods.html +265 -0
- data/docs/DWH/Adapters/OpenAuthorizable.html +1102 -0
- data/docs/DWH/Adapters/Postgres.html +2000 -0
- data/docs/DWH/Adapters/Snowflake.html +1662 -0
- data/docs/DWH/Adapters/SqlServer.html +2084 -0
- data/docs/DWH/Adapters/Trino.html +1835 -0
- data/docs/DWH/Adapters.html +129 -0
- data/docs/DWH/AuthenticationError.html +142 -0
- data/docs/DWH/Behaviors.html +767 -0
- data/docs/DWH/Capabilities.html +748 -0
- data/docs/DWH/Column.html +1115 -0
- data/docs/DWH/ConfigError.html +143 -0
- data/docs/DWH/ConnectionError.html +143 -0
- data/docs/DWH/DWHError.html +138 -0
- data/docs/DWH/ExecutionError.html +143 -0
- data/docs/DWH/Factory.html +1133 -0
- data/docs/DWH/Functions/Arrays.html +505 -0
- data/docs/DWH/Functions/Dates.html +1644 -0
- data/docs/DWH/Functions/ExtractDatePart.html +804 -0
- data/docs/DWH/Functions/Nulls.html +377 -0
- data/docs/DWH/Functions.html +846 -0
- data/docs/DWH/Logger.html +258 -0
- data/docs/DWH/OAuthError.html +138 -0
- data/docs/DWH/Settings.html +658 -0
- data/docs/DWH/StreamingStats.html +804 -0
- data/docs/DWH/Table.html +1260 -0
- data/docs/DWH/TableStats.html +583 -0
- data/docs/DWH/TokenExpiredError.html +142 -0
- data/docs/DWH/UnsupportedCapability.html +135 -0
- data/docs/DWH.html +220 -0
- data/docs/_index.html +471 -0
- data/docs/class_list.html +54 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +503 -0
- data/docs/file.README.html +210 -0
- data/docs/file.adapters.html +514 -0
- data/docs/file.creating-adapters.html +497 -0
- data/docs/file.getting-started.html +288 -0
- data/docs/file.usage.html +446 -0
- data/docs/file_list.html +79 -0
- data/docs/frames.html +22 -0
- data/docs/guides/adapters.md +445 -0
- data/docs/guides/creating-adapters.md +430 -0
- data/docs/guides/getting-started.md +225 -0
- data/docs/guides/usage.md +378 -0
- data/docs/index.html +210 -0
- data/docs/js/app.js +344 -0
- data/docs/js/full_list.js +242 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +2038 -0
- data/docs/top-level-namespace.html +110 -0
- data/lib/dwh/adapters/athena.rb +359 -0
- data/lib/dwh/adapters/druid.rb +267 -0
- data/lib/dwh/adapters/duck_db.rb +235 -0
- data/lib/dwh/adapters/my_sql.rb +235 -0
- data/lib/dwh/adapters/open_authorizable.rb +215 -0
- data/lib/dwh/adapters/postgres.rb +250 -0
- data/lib/dwh/adapters/snowflake.rb +489 -0
- data/lib/dwh/adapters/sql_server.rb +257 -0
- data/lib/dwh/adapters/trino.rb +213 -0
- data/lib/dwh/adapters.rb +363 -0
- data/lib/dwh/behaviors.rb +67 -0
- data/lib/dwh/capabilities.rb +39 -0
- data/lib/dwh/column.rb +79 -0
- data/lib/dwh/errors.rb +29 -0
- data/lib/dwh/factory.rb +125 -0
- data/lib/dwh/functions/arrays.rb +42 -0
- data/lib/dwh/functions/dates.rb +162 -0
- data/lib/dwh/functions/extract_date_part.rb +70 -0
- data/lib/dwh/functions/nulls.rb +31 -0
- data/lib/dwh/functions.rb +86 -0
- data/lib/dwh/logger.rb +50 -0
- data/lib/dwh/settings/athena.yml +77 -0
- data/lib/dwh/settings/base.yml +81 -0
- data/lib/dwh/settings/databricks.yml +51 -0
- data/lib/dwh/settings/druid.yml +59 -0
- data/lib/dwh/settings/duckdb.yml +44 -0
- data/lib/dwh/settings/mysql.yml +67 -0
- data/lib/dwh/settings/postgres.yml +30 -0
- data/lib/dwh/settings/redshift.yml +52 -0
- data/lib/dwh/settings/snowflake.yml +45 -0
- data/lib/dwh/settings/sqlserver.yml +80 -0
- data/lib/dwh/settings/trino.yml +77 -0
- data/lib/dwh/settings.rb +79 -0
- data/lib/dwh/streaming_stats.rb +69 -0
- data/lib/dwh/table.rb +105 -0
- data/lib/dwh/table_stats.rb +51 -0
- data/lib/dwh/version.rb +5 -0
- data/lib/dwh.rb +54 -0
- data/sig/dwh.rbs +4 -0
- metadata +231 -0
@@ -0,0 +1,2038 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html >
|
3
|
+
<head>
|
4
|
+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
5
|
+
<meta charset="utf-8" />
|
6
|
+
|
7
|
+
<link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" />
|
8
|
+
|
9
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" />
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
14
|
+
|
15
|
+
<script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
|
16
|
+
|
17
|
+
|
18
|
+
<title>Method List</title>
|
19
|
+
<base id="base_target" target="_parent" />
|
20
|
+
</head>
|
21
|
+
<body>
|
22
|
+
<div id="content">
|
23
|
+
<div class="fixed_header">
|
24
|
+
<h1 id="full_list_header">Method List</h1>
|
25
|
+
<div id="full_list_nav">
|
26
|
+
|
27
|
+
<span><a target="_self" href="class_list.html">
|
28
|
+
Classes
|
29
|
+
</a></span>
|
30
|
+
|
31
|
+
<span><a target="_self" href="method_list.html">
|
32
|
+
Methods
|
33
|
+
</a></span>
|
34
|
+
|
35
|
+
<span><a target="_self" href="file_list.html">
|
36
|
+
Files
|
37
|
+
</a></span>
|
38
|
+
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div id="search">
|
42
|
+
<label for="search-class">Search:</label>
|
43
|
+
<input id="search-class" type="text" />
|
44
|
+
</div>
|
45
|
+
</div>
|
46
|
+
|
47
|
+
<ul id="full_list" class="method">
|
48
|
+
|
49
|
+
|
50
|
+
<li class="odd ">
|
51
|
+
<div class="item">
|
52
|
+
<span class='object_link'><a href="DWH/Table.html#<<-instance_method" title="DWH::Table#<< (method)">#<<</a></span>
|
53
|
+
<small>DWH::Table</small>
|
54
|
+
</div>
|
55
|
+
</li>
|
56
|
+
|
57
|
+
|
58
|
+
<li class="even ">
|
59
|
+
<div class="item">
|
60
|
+
<span class='object_link'><a href="DWH/StreamingStats.html#<<-instance_method" title="DWH::StreamingStats#<< (method)">#<<</a></span>
|
61
|
+
<small>DWH::StreamingStats</small>
|
62
|
+
</div>
|
63
|
+
</li>
|
64
|
+
|
65
|
+
|
66
|
+
<li class="odd ">
|
67
|
+
<div class="item">
|
68
|
+
<span class='object_link'><a href="DWH/Factory.html#adapter%3F-instance_method" title="DWH::Factory#adapter? (method)">#adapter?</a></span>
|
69
|
+
<small>DWH::Factory</small>
|
70
|
+
</div>
|
71
|
+
</li>
|
72
|
+
|
73
|
+
|
74
|
+
<li class="even ">
|
75
|
+
<div class="item">
|
76
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#adapter_name-instance_method" title="DWH::Adapters::Adapter#adapter_name (method)">#adapter_name</a></span>
|
77
|
+
<small>DWH::Adapters::Adapter</small>
|
78
|
+
</div>
|
79
|
+
</li>
|
80
|
+
|
81
|
+
|
82
|
+
<li class="odd ">
|
83
|
+
<div class="item">
|
84
|
+
<span class='object_link'><a href="DWH/Settings.html#adapter_name-instance_method" title="DWH::Settings#adapter_name (method)">#adapter_name</a></span>
|
85
|
+
<small>DWH::Settings</small>
|
86
|
+
</div>
|
87
|
+
</li>
|
88
|
+
|
89
|
+
|
90
|
+
<li class="even ">
|
91
|
+
<div class="item">
|
92
|
+
<span class='object_link'><a href="DWH/Settings.html#adapter_settings-instance_method" title="DWH::Settings#adapter_settings (method)">#adapter_settings</a></span>
|
93
|
+
<small>DWH::Settings</small>
|
94
|
+
</div>
|
95
|
+
</li>
|
96
|
+
|
97
|
+
|
98
|
+
<li class="odd ">
|
99
|
+
<div class="item">
|
100
|
+
<span class='object_link'><a href="DWH/Factory.html#adapters-instance_method" title="DWH::Factory#adapters (method)">#adapters</a></span>
|
101
|
+
<small>DWH::Factory</small>
|
102
|
+
</div>
|
103
|
+
</li>
|
104
|
+
|
105
|
+
|
106
|
+
<li class="even ">
|
107
|
+
<div class="item">
|
108
|
+
<span class='object_link'><a href="DWH/StreamingStats.html#add_row-instance_method" title="DWH::StreamingStats#add_row (method)">#add_row</a></span>
|
109
|
+
<small>DWH::StreamingStats</small>
|
110
|
+
</div>
|
111
|
+
</li>
|
112
|
+
|
113
|
+
|
114
|
+
<li class="odd ">
|
115
|
+
<div class="item">
|
116
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#adjust_week_start_day-instance_method" title="DWH::Functions::Dates#adjust_week_start_day (method)">#adjust_week_start_day</a></span>
|
117
|
+
<small>DWH::Functions::Dates</small>
|
118
|
+
</div>
|
119
|
+
</li>
|
120
|
+
|
121
|
+
|
122
|
+
<li class="even ">
|
123
|
+
<div class="item">
|
124
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#adjust_week_start_day%3F-instance_method" title="DWH::Functions::Dates#adjust_week_start_day? (method)">#adjust_week_start_day?</a></span>
|
125
|
+
<small>DWH::Functions::Dates</small>
|
126
|
+
</div>
|
127
|
+
</li>
|
128
|
+
|
129
|
+
|
130
|
+
<li class="odd ">
|
131
|
+
<div class="item">
|
132
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#alter_settings-instance_method" title="DWH::Adapters::Adapter#alter_settings (method)">#alter_settings</a></span>
|
133
|
+
<small>DWH::Adapters::Adapter</small>
|
134
|
+
</div>
|
135
|
+
</li>
|
136
|
+
|
137
|
+
|
138
|
+
<li class="even ">
|
139
|
+
<div class="item">
|
140
|
+
<span class='object_link'><a href="DWH/Behaviors.html#apply_advanced_filtering_on_array_projections%3F-instance_method" title="DWH::Behaviors#apply_advanced_filtering_on_array_projections? (method)">#apply_advanced_filtering_on_array_projections?</a></span>
|
141
|
+
<small>DWH::Behaviors</small>
|
142
|
+
</div>
|
143
|
+
</li>
|
144
|
+
|
145
|
+
|
146
|
+
<li class="odd ">
|
147
|
+
<div class="item">
|
148
|
+
<span class='object_link'><a href="DWH/Adapters/OpenAuthorizable.html#apply_oauth_tokens-instance_method" title="DWH::Adapters::OpenAuthorizable#apply_oauth_tokens (method)">#apply_oauth_tokens</a></span>
|
149
|
+
<small>DWH::Adapters::OpenAuthorizable</small>
|
150
|
+
</div>
|
151
|
+
</li>
|
152
|
+
|
153
|
+
|
154
|
+
<li class="even ">
|
155
|
+
<div class="item">
|
156
|
+
<span class='object_link'><a href="DWH/Functions/Arrays.html#array_exclude_list-instance_method" title="DWH::Functions::Arrays#array_exclude_list (method)">#array_exclude_list</a></span>
|
157
|
+
<small>DWH::Functions::Arrays</small>
|
158
|
+
</div>
|
159
|
+
</li>
|
160
|
+
|
161
|
+
|
162
|
+
<li class="odd ">
|
163
|
+
<div class="item">
|
164
|
+
<span class='object_link'><a href="DWH/Functions/Arrays.html#array_in_list-instance_method" title="DWH::Functions::Arrays#array_in_list (method)">#array_in_list</a></span>
|
165
|
+
<small>DWH::Functions::Arrays</small>
|
166
|
+
</div>
|
167
|
+
</li>
|
168
|
+
|
169
|
+
|
170
|
+
<li class="even ">
|
171
|
+
<div class="item">
|
172
|
+
<span class='object_link'><a href="DWH/Functions/Arrays.html#array_unnest_join-instance_method" title="DWH::Functions::Arrays#array_unnest_join (method)">#array_unnest_join</a></span>
|
173
|
+
<small>DWH::Functions::Arrays</small>
|
174
|
+
</div>
|
175
|
+
</li>
|
176
|
+
|
177
|
+
|
178
|
+
<li class="odd ">
|
179
|
+
<div class="item">
|
180
|
+
<span class='object_link'><a href="DWH/Adapters/OpenAuthorizable.html#authorization_url-instance_method" title="DWH::Adapters::OpenAuthorizable#authorization_url (method)">#authorization_url</a></span>
|
181
|
+
<small>DWH::Adapters::OpenAuthorizable</small>
|
182
|
+
</div>
|
183
|
+
</li>
|
184
|
+
|
185
|
+
|
186
|
+
<li class="even ">
|
187
|
+
<div class="item">
|
188
|
+
<span class='object_link'><a href="DWH/Functions.html#cast-instance_method" title="DWH::Functions#cast (method)">#cast</a></span>
|
189
|
+
<small>DWH::Functions</small>
|
190
|
+
</div>
|
191
|
+
</li>
|
192
|
+
|
193
|
+
|
194
|
+
<li class="odd ">
|
195
|
+
<div class="item">
|
196
|
+
<span class='object_link'><a href="DWH/Table.html#catalog-instance_method" title="DWH::Table#catalog (method)">#catalog</a></span>
|
197
|
+
<small>DWH::Table</small>
|
198
|
+
</div>
|
199
|
+
</li>
|
200
|
+
|
201
|
+
|
202
|
+
<li class="even ">
|
203
|
+
<div class="item">
|
204
|
+
<span class='object_link'><a href="DWH/Table.html#catalog_and_schema%3F-instance_method" title="DWH::Table#catalog_and_schema? (method)">#catalog_and_schema?</a></span>
|
205
|
+
<small>DWH::Table</small>
|
206
|
+
</div>
|
207
|
+
</li>
|
208
|
+
|
209
|
+
|
210
|
+
<li class="odd ">
|
211
|
+
<div class="item">
|
212
|
+
<span class='object_link'><a href="DWH/Table.html#catalog_or_schema%3F-instance_method" title="DWH::Table#catalog_or_schema? (method)">#catalog_or_schema?</a></span>
|
213
|
+
<small>DWH::Table</small>
|
214
|
+
</div>
|
215
|
+
</li>
|
216
|
+
|
217
|
+
|
218
|
+
<li class="even ">
|
219
|
+
<div class="item">
|
220
|
+
<span class='object_link'><a href="DWH/Adapters/SqlServer.html#change_current_database-instance_method" title="DWH::Adapters::SqlServer#change_current_database (method)">#change_current_database</a></span>
|
221
|
+
<small>DWH::Adapters::SqlServer</small>
|
222
|
+
</div>
|
223
|
+
</li>
|
224
|
+
|
225
|
+
|
226
|
+
<li class="odd ">
|
227
|
+
<div class="item">
|
228
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#close-instance_method" title="DWH::Adapters::Adapter#close (method)">#close</a></span>
|
229
|
+
<small>DWH::Adapters::Adapter</small>
|
230
|
+
</div>
|
231
|
+
</li>
|
232
|
+
|
233
|
+
|
234
|
+
<li class="even ">
|
235
|
+
<div class="item">
|
236
|
+
<span class='object_link'><a href="DWH/Adapters/DuckDb.html#close-instance_method" title="DWH::Adapters::DuckDb#close (method)">#close</a></span>
|
237
|
+
<small>DWH::Adapters::DuckDb</small>
|
238
|
+
</div>
|
239
|
+
</li>
|
240
|
+
|
241
|
+
|
242
|
+
<li class="odd ">
|
243
|
+
<div class="item">
|
244
|
+
<span class='object_link'><a href="DWH/Adapters/DuckDb.html#close_all-class_method" title="DWH::Adapters::DuckDb.close_all (method)">close_all</a></span>
|
245
|
+
<small>DWH::Adapters::DuckDb</small>
|
246
|
+
</div>
|
247
|
+
</li>
|
248
|
+
|
249
|
+
|
250
|
+
<li class="even ">
|
251
|
+
<div class="item">
|
252
|
+
<span class='object_link'><a href="DWH/Table.html#columns-instance_method" title="DWH::Table#columns (method)">#columns</a></span>
|
253
|
+
<small>DWH::Table</small>
|
254
|
+
</div>
|
255
|
+
</li>
|
256
|
+
|
257
|
+
|
258
|
+
<li class="odd ">
|
259
|
+
<div class="item">
|
260
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#config-class_method" title="DWH::Adapters::Adapter.config (method)">config</a></span>
|
261
|
+
<small>DWH::Adapters::Adapter</small>
|
262
|
+
</div>
|
263
|
+
</li>
|
264
|
+
|
265
|
+
|
266
|
+
<li class="even ">
|
267
|
+
<div class="item">
|
268
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#config-instance_method" title="DWH::Adapters::Adapter#config (method)">#config</a></span>
|
269
|
+
<small>DWH::Adapters::Adapter</small>
|
270
|
+
</div>
|
271
|
+
</li>
|
272
|
+
|
273
|
+
|
274
|
+
<li class="odd ">
|
275
|
+
<div class="item">
|
276
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#configuration-class_method" title="DWH::Adapters::Adapter.configuration (method)">configuration</a></span>
|
277
|
+
<small>DWH::Adapters::Adapter</small>
|
278
|
+
</div>
|
279
|
+
</li>
|
280
|
+
|
281
|
+
|
282
|
+
<li class="even ">
|
283
|
+
<div class="item">
|
284
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#connect!-instance_method" title="DWH::Adapters::Adapter#connect! (method)">#connect!</a></span>
|
285
|
+
<small>DWH::Adapters::Adapter</small>
|
286
|
+
</div>
|
287
|
+
</li>
|
288
|
+
|
289
|
+
|
290
|
+
<li class="odd ">
|
291
|
+
<div class="item">
|
292
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#connect%3F-instance_method" title="DWH::Adapters::Adapter#connect? (method)">#connect?</a></span>
|
293
|
+
<small>DWH::Adapters::Adapter</small>
|
294
|
+
</div>
|
295
|
+
</li>
|
296
|
+
|
297
|
+
|
298
|
+
<li class="even ">
|
299
|
+
<div class="item">
|
300
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#connection-instance_method" title="DWH::Adapters::Adapter#connection (method)">#connection</a></span>
|
301
|
+
<small>DWH::Adapters::Adapter</small>
|
302
|
+
</div>
|
303
|
+
</li>
|
304
|
+
|
305
|
+
|
306
|
+
<li class="odd ">
|
307
|
+
<div class="item">
|
308
|
+
<span class='object_link'><a href="DWH/Adapters/Druid.html#connection-instance_method" title="DWH::Adapters::Druid#connection (method)">#connection</a></span>
|
309
|
+
<small>DWH::Adapters::Druid</small>
|
310
|
+
</div>
|
311
|
+
</li>
|
312
|
+
|
313
|
+
|
314
|
+
<li class="even ">
|
315
|
+
<div class="item">
|
316
|
+
<span class='object_link'><a href="DWH/Adapters/Trino.html#connection-instance_method" title="DWH::Adapters::Trino#connection (method)">#connection</a></span>
|
317
|
+
<small>DWH::Adapters::Trino</small>
|
318
|
+
</div>
|
319
|
+
</li>
|
320
|
+
|
321
|
+
|
322
|
+
<li class="odd ">
|
323
|
+
<div class="item">
|
324
|
+
<span class='object_link'><a href="DWH/Adapters/Athena.html#connection-instance_method" title="DWH::Adapters::Athena#connection (method)">#connection</a></span>
|
325
|
+
<small>DWH::Adapters::Athena</small>
|
326
|
+
</div>
|
327
|
+
</li>
|
328
|
+
|
329
|
+
|
330
|
+
<li class="even ">
|
331
|
+
<div class="item">
|
332
|
+
<span class='object_link'><a href="DWH/Adapters/MySql.html#connection-instance_method" title="DWH::Adapters::MySql#connection (method)">#connection</a></span>
|
333
|
+
<small>DWH::Adapters::MySql</small>
|
334
|
+
</div>
|
335
|
+
</li>
|
336
|
+
|
337
|
+
|
338
|
+
<li class="odd ">
|
339
|
+
<div class="item">
|
340
|
+
<span class='object_link'><a href="DWH/Adapters/DuckDb.html#connection-instance_method" title="DWH::Adapters::DuckDb#connection (method)">#connection</a></span>
|
341
|
+
<small>DWH::Adapters::DuckDb</small>
|
342
|
+
</div>
|
343
|
+
</li>
|
344
|
+
|
345
|
+
|
346
|
+
<li class="even ">
|
347
|
+
<div class="item">
|
348
|
+
<span class='object_link'><a href="DWH/Adapters/Postgres.html#connection-instance_method" title="DWH::Adapters::Postgres#connection (method)">#connection</a></span>
|
349
|
+
<small>DWH::Adapters::Postgres</small>
|
350
|
+
</div>
|
351
|
+
</li>
|
352
|
+
|
353
|
+
|
354
|
+
<li class="odd ">
|
355
|
+
<div class="item">
|
356
|
+
<span class='object_link'><a href="DWH/Adapters/Snowflake.html#connection-instance_method" title="DWH::Adapters::Snowflake#connection (method)">#connection</a></span>
|
357
|
+
<small>DWH::Adapters::Snowflake</small>
|
358
|
+
</div>
|
359
|
+
</li>
|
360
|
+
|
361
|
+
|
362
|
+
<li class="even ">
|
363
|
+
<div class="item">
|
364
|
+
<span class='object_link'><a href="DWH/Adapters/SqlServer.html#connection-instance_method" title="DWH::Adapters::SqlServer#connection (method)">#connection</a></span>
|
365
|
+
<small>DWH::Adapters::SqlServer</small>
|
366
|
+
</div>
|
367
|
+
</li>
|
368
|
+
|
369
|
+
|
370
|
+
<li class="odd ">
|
371
|
+
<div class="item">
|
372
|
+
<span class='object_link'><a href="DWH/Factory.html#create-instance_method" title="DWH::Factory#create (method)">#create</a></span>
|
373
|
+
<small>DWH::Factory</small>
|
374
|
+
</div>
|
375
|
+
</li>
|
376
|
+
|
377
|
+
|
378
|
+
<li class="even ">
|
379
|
+
<div class="item">
|
380
|
+
<span class='object_link'><a href="DWH/Functions.html#cross_join-instance_method" title="DWH::Functions#cross_join (method)">#cross_join</a></span>
|
381
|
+
<small>DWH::Functions</small>
|
382
|
+
</div>
|
383
|
+
</li>
|
384
|
+
|
385
|
+
|
386
|
+
<li class="odd ">
|
387
|
+
<div class="item">
|
388
|
+
<span class='object_link'><a href="DWH/Behaviors.html#cross_universe_measure_filtering_strategy-instance_method" title="DWH::Behaviors#cross_universe_measure_filtering_strategy (method)">#cross_universe_measure_filtering_strategy</a></span>
|
389
|
+
<small>DWH::Behaviors</small>
|
390
|
+
</div>
|
391
|
+
</li>
|
392
|
+
|
393
|
+
|
394
|
+
<li class="even ">
|
395
|
+
<div class="item">
|
396
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#current_date-instance_method" title="DWH::Functions::Dates#current_date (method)">#current_date</a></span>
|
397
|
+
<small>DWH::Functions::Dates</small>
|
398
|
+
</div>
|
399
|
+
</li>
|
400
|
+
|
401
|
+
|
402
|
+
<li class="odd ">
|
403
|
+
<div class="item">
|
404
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#current_time-instance_method" title="DWH::Functions::Dates#current_time (method)">#current_time</a></span>
|
405
|
+
<small>DWH::Functions::Dates</small>
|
406
|
+
</div>
|
407
|
+
</li>
|
408
|
+
|
409
|
+
|
410
|
+
<li class="even ">
|
411
|
+
<div class="item">
|
412
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#current_timestamp-instance_method" title="DWH::Functions::Dates#current_timestamp (method)">#current_timestamp</a></span>
|
413
|
+
<small>DWH::Functions::Dates</small>
|
414
|
+
</div>
|
415
|
+
</li>
|
416
|
+
|
417
|
+
|
418
|
+
<li class="odd ">
|
419
|
+
<div class="item">
|
420
|
+
<span class='object_link'><a href="DWH/StreamingStats.html#data-instance_method" title="DWH::StreamingStats#data (method)">#data</a></span>
|
421
|
+
<small>DWH::StreamingStats</small>
|
422
|
+
</div>
|
423
|
+
</li>
|
424
|
+
|
425
|
+
|
426
|
+
<li class="even ">
|
427
|
+
<div class="item">
|
428
|
+
<span class='object_link'><a href="DWH/Column.html#data_type-instance_method" title="DWH::Column#data_type (method)">#data_type</a></span>
|
429
|
+
<small>DWH::Column</small>
|
430
|
+
</div>
|
431
|
+
</li>
|
432
|
+
|
433
|
+
|
434
|
+
<li class="odd ">
|
435
|
+
<div class="item">
|
436
|
+
<span class='object_link'><a href="DWH/Adapters/DuckDb.html#databases-class_method" title="DWH::Adapters::DuckDb.databases (method)">databases</a></span>
|
437
|
+
<small>DWH::Adapters::DuckDb</small>
|
438
|
+
</div>
|
439
|
+
</li>
|
440
|
+
|
441
|
+
|
442
|
+
<li class="even ">
|
443
|
+
<div class="item">
|
444
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#date_add-instance_method" title="DWH::Functions::Dates#date_add (method)">#date_add</a></span>
|
445
|
+
<small>DWH::Functions::Dates</small>
|
446
|
+
</div>
|
447
|
+
</li>
|
448
|
+
|
449
|
+
|
450
|
+
<li class="odd ">
|
451
|
+
<div class="item">
|
452
|
+
<span class='object_link'><a href="DWH/Adapters/Postgres.html#date_add-instance_method" title="DWH::Adapters::Postgres#date_add (method)">#date_add</a></span>
|
453
|
+
<small>DWH::Adapters::Postgres</small>
|
454
|
+
</div>
|
455
|
+
</li>
|
456
|
+
|
457
|
+
|
458
|
+
<li class="even ">
|
459
|
+
<div class="item">
|
460
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#date_data_type-instance_method" title="DWH::Functions::Dates#date_data_type (method)">#date_data_type</a></span>
|
461
|
+
<small>DWH::Functions::Dates</small>
|
462
|
+
</div>
|
463
|
+
</li>
|
464
|
+
|
465
|
+
|
466
|
+
<li class="odd ">
|
467
|
+
<div class="item">
|
468
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#date_diff-instance_method" title="DWH::Functions::Dates#date_diff (method)">#date_diff</a></span>
|
469
|
+
<small>DWH::Functions::Dates</small>
|
470
|
+
</div>
|
471
|
+
</li>
|
472
|
+
|
473
|
+
|
474
|
+
<li class="even ">
|
475
|
+
<div class="item">
|
476
|
+
<span class='object_link'><a href="DWH/TableStats.html#date_end-instance_method" title="DWH::TableStats#date_end (method)">#date_end</a></span>
|
477
|
+
<small>DWH::TableStats</small>
|
478
|
+
</div>
|
479
|
+
</li>
|
480
|
+
|
481
|
+
|
482
|
+
<li class="odd ">
|
483
|
+
<div class="item">
|
484
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#date_format-instance_method" title="DWH::Functions::Dates#date_format (method)">#date_format</a></span>
|
485
|
+
<small>DWH::Functions::Dates</small>
|
486
|
+
</div>
|
487
|
+
</li>
|
488
|
+
|
489
|
+
|
490
|
+
<li class="even ">
|
491
|
+
<div class="item">
|
492
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#date_format_sql-instance_method" title="DWH::Functions::Dates#date_format_sql (method)">#date_format_sql</a></span>
|
493
|
+
<small>DWH::Functions::Dates</small>
|
494
|
+
</div>
|
495
|
+
</li>
|
496
|
+
|
497
|
+
|
498
|
+
<li class="odd ">
|
499
|
+
<div class="item">
|
500
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#date_int%3F-instance_method" title="DWH::Functions::Dates#date_int? (method)">#date_int?</a></span>
|
501
|
+
<small>DWH::Functions::Dates</small>
|
502
|
+
</div>
|
503
|
+
</li>
|
504
|
+
|
505
|
+
|
506
|
+
<li class="even ">
|
507
|
+
<div class="item">
|
508
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#date_literal-instance_method" title="DWH::Functions::Dates#date_literal (method)">#date_literal</a></span>
|
509
|
+
<small>DWH::Functions::Dates</small>
|
510
|
+
</div>
|
511
|
+
</li>
|
512
|
+
|
513
|
+
|
514
|
+
<li class="odd ">
|
515
|
+
<div class="item">
|
516
|
+
<span class='object_link'><a href="DWH/TableStats.html#date_start-instance_method" title="DWH::TableStats#date_start (method)">#date_start</a></span>
|
517
|
+
<small>DWH::TableStats</small>
|
518
|
+
</div>
|
519
|
+
</li>
|
520
|
+
|
521
|
+
|
522
|
+
<li class="even ">
|
523
|
+
<div class="item">
|
524
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#date_time_format-instance_method" title="DWH::Functions::Dates#date_time_format (method)">#date_time_format</a></span>
|
525
|
+
<small>DWH::Functions::Dates</small>
|
526
|
+
</div>
|
527
|
+
</li>
|
528
|
+
|
529
|
+
|
530
|
+
<li class="odd ">
|
531
|
+
<div class="item">
|
532
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#date_time_literal-instance_method" title="DWH::Functions::Dates#date_time_literal (method)">#date_time_literal</a></span>
|
533
|
+
<small>DWH::Functions::Dates</small>
|
534
|
+
</div>
|
535
|
+
</li>
|
536
|
+
|
537
|
+
|
538
|
+
<li class="even ">
|
539
|
+
<div class="item">
|
540
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#date_time_tz_format-instance_method" title="DWH::Functions::Dates#date_time_tz_format (method)">#date_time_tz_format</a></span>
|
541
|
+
<small>DWH::Functions::Dates</small>
|
542
|
+
</div>
|
543
|
+
</li>
|
544
|
+
|
545
|
+
|
546
|
+
<li class="odd ">
|
547
|
+
<div class="item">
|
548
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#default_week_start_day-instance_method" title="DWH::Functions::Dates#default_week_start_day (method)">#default_week_start_day</a></span>
|
549
|
+
<small>DWH::Functions::Dates</small>
|
550
|
+
</div>
|
551
|
+
</li>
|
552
|
+
|
553
|
+
|
554
|
+
<li class="even ">
|
555
|
+
<div class="item">
|
556
|
+
<span class='object_link'><a href="DWH/Column.html#dim%3F-instance_method" title="DWH::Column#dim? (method)">#dim?</a></span>
|
557
|
+
<small>DWH::Column</small>
|
558
|
+
</div>
|
559
|
+
</li>
|
560
|
+
|
561
|
+
|
562
|
+
<li class="odd ">
|
563
|
+
<div class="item">
|
564
|
+
<span class='object_link'><a href="DWH/Adapters/Druid.html#drop_unused_segments-instance_method" title="DWH::Adapters::Druid#drop_unused_segments (method)">#drop_unused_segments</a></span>
|
565
|
+
<small>DWH::Adapters::Druid</small>
|
566
|
+
</div>
|
567
|
+
</li>
|
568
|
+
|
569
|
+
|
570
|
+
<li class="even ">
|
571
|
+
<div class="item">
|
572
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#execute-instance_method" title="DWH::Adapters::Adapter#execute (method)">#execute</a></span>
|
573
|
+
<small>DWH::Adapters::Adapter</small>
|
574
|
+
</div>
|
575
|
+
</li>
|
576
|
+
|
577
|
+
|
578
|
+
<li class="odd ">
|
579
|
+
<div class="item">
|
580
|
+
<span class='object_link'><a href="DWH/Adapters/Druid.html#execute-instance_method" title="DWH::Adapters::Druid#execute (method)">#execute</a></span>
|
581
|
+
<small>DWH::Adapters::Druid</small>
|
582
|
+
</div>
|
583
|
+
</li>
|
584
|
+
|
585
|
+
|
586
|
+
<li class="even ">
|
587
|
+
<div class="item">
|
588
|
+
<span class='object_link'><a href="DWH/Adapters/Trino.html#execute-instance_method" title="DWH::Adapters::Trino#execute (method)">#execute</a></span>
|
589
|
+
<small>DWH::Adapters::Trino</small>
|
590
|
+
</div>
|
591
|
+
</li>
|
592
|
+
|
593
|
+
|
594
|
+
<li class="odd ">
|
595
|
+
<div class="item">
|
596
|
+
<span class='object_link'><a href="DWH/Adapters/Athena.html#execute-instance_method" title="DWH::Adapters::Athena#execute (method)">#execute</a></span>
|
597
|
+
<small>DWH::Adapters::Athena</small>
|
598
|
+
</div>
|
599
|
+
</li>
|
600
|
+
|
601
|
+
|
602
|
+
<li class="even ">
|
603
|
+
<div class="item">
|
604
|
+
<span class='object_link'><a href="DWH/Adapters/MySql.html#execute-instance_method" title="DWH::Adapters::MySql#execute (method)">#execute</a></span>
|
605
|
+
<small>DWH::Adapters::MySql</small>
|
606
|
+
</div>
|
607
|
+
</li>
|
608
|
+
|
609
|
+
|
610
|
+
<li class="odd ">
|
611
|
+
<div class="item">
|
612
|
+
<span class='object_link'><a href="DWH/Adapters/DuckDb.html#execute-instance_method" title="DWH::Adapters::DuckDb#execute (method)">#execute</a></span>
|
613
|
+
<small>DWH::Adapters::DuckDb</small>
|
614
|
+
</div>
|
615
|
+
</li>
|
616
|
+
|
617
|
+
|
618
|
+
<li class="even ">
|
619
|
+
<div class="item">
|
620
|
+
<span class='object_link'><a href="DWH/Adapters/Postgres.html#execute-instance_method" title="DWH::Adapters::Postgres#execute (method)">#execute</a></span>
|
621
|
+
<small>DWH::Adapters::Postgres</small>
|
622
|
+
</div>
|
623
|
+
</li>
|
624
|
+
|
625
|
+
|
626
|
+
<li class="odd ">
|
627
|
+
<div class="item">
|
628
|
+
<span class='object_link'><a href="DWH/Adapters/Snowflake.html#execute-instance_method" title="DWH::Adapters::Snowflake#execute (method)">#execute</a></span>
|
629
|
+
<small>DWH::Adapters::Snowflake</small>
|
630
|
+
</div>
|
631
|
+
</li>
|
632
|
+
|
633
|
+
|
634
|
+
<li class="even ">
|
635
|
+
<div class="item">
|
636
|
+
<span class='object_link'><a href="DWH/Adapters/SqlServer.html#execute-instance_method" title="DWH::Adapters::SqlServer#execute (method)">#execute</a></span>
|
637
|
+
<small>DWH::Adapters::SqlServer</small>
|
638
|
+
</div>
|
639
|
+
</li>
|
640
|
+
|
641
|
+
|
642
|
+
<li class="odd ">
|
643
|
+
<div class="item">
|
644
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#execute_stream-instance_method" title="DWH::Adapters::Adapter#execute_stream (method)">#execute_stream</a></span>
|
645
|
+
<small>DWH::Adapters::Adapter</small>
|
646
|
+
</div>
|
647
|
+
</li>
|
648
|
+
|
649
|
+
|
650
|
+
<li class="even ">
|
651
|
+
<div class="item">
|
652
|
+
<span class='object_link'><a href="DWH/Adapters/Druid.html#execute_stream-instance_method" title="DWH::Adapters::Druid#execute_stream (method)">#execute_stream</a></span>
|
653
|
+
<small>DWH::Adapters::Druid</small>
|
654
|
+
</div>
|
655
|
+
</li>
|
656
|
+
|
657
|
+
|
658
|
+
<li class="odd ">
|
659
|
+
<div class="item">
|
660
|
+
<span class='object_link'><a href="DWH/Adapters/Trino.html#execute_stream-instance_method" title="DWH::Adapters::Trino#execute_stream (method)">#execute_stream</a></span>
|
661
|
+
<small>DWH::Adapters::Trino</small>
|
662
|
+
</div>
|
663
|
+
</li>
|
664
|
+
|
665
|
+
|
666
|
+
<li class="even ">
|
667
|
+
<div class="item">
|
668
|
+
<span class='object_link'><a href="DWH/Adapters/Athena.html#execute_stream-instance_method" title="DWH::Adapters::Athena#execute_stream (method)">#execute_stream</a></span>
|
669
|
+
<small>DWH::Adapters::Athena</small>
|
670
|
+
</div>
|
671
|
+
</li>
|
672
|
+
|
673
|
+
|
674
|
+
<li class="odd ">
|
675
|
+
<div class="item">
|
676
|
+
<span class='object_link'><a href="DWH/Adapters/MySql.html#execute_stream-instance_method" title="DWH::Adapters::MySql#execute_stream (method)">#execute_stream</a></span>
|
677
|
+
<small>DWH::Adapters::MySql</small>
|
678
|
+
</div>
|
679
|
+
</li>
|
680
|
+
|
681
|
+
|
682
|
+
<li class="even ">
|
683
|
+
<div class="item">
|
684
|
+
<span class='object_link'><a href="DWH/Adapters/DuckDb.html#execute_stream-instance_method" title="DWH::Adapters::DuckDb#execute_stream (method)">#execute_stream</a></span>
|
685
|
+
<small>DWH::Adapters::DuckDb</small>
|
686
|
+
</div>
|
687
|
+
</li>
|
688
|
+
|
689
|
+
|
690
|
+
<li class="odd ">
|
691
|
+
<div class="item">
|
692
|
+
<span class='object_link'><a href="DWH/Adapters/Postgres.html#execute_stream-instance_method" title="DWH::Adapters::Postgres#execute_stream (method)">#execute_stream</a></span>
|
693
|
+
<small>DWH::Adapters::Postgres</small>
|
694
|
+
</div>
|
695
|
+
</li>
|
696
|
+
|
697
|
+
|
698
|
+
<li class="even ">
|
699
|
+
<div class="item">
|
700
|
+
<span class='object_link'><a href="DWH/Adapters/Snowflake.html#execute_stream-instance_method" title="DWH::Adapters::Snowflake#execute_stream (method)">#execute_stream</a></span>
|
701
|
+
<small>DWH::Adapters::Snowflake</small>
|
702
|
+
</div>
|
703
|
+
</li>
|
704
|
+
|
705
|
+
|
706
|
+
<li class="odd ">
|
707
|
+
<div class="item">
|
708
|
+
<span class='object_link'><a href="DWH/Adapters/SqlServer.html#execute_stream-instance_method" title="DWH::Adapters::SqlServer#execute_stream (method)">#execute_stream</a></span>
|
709
|
+
<small>DWH::Adapters::SqlServer</small>
|
710
|
+
</div>
|
711
|
+
</li>
|
712
|
+
|
713
|
+
|
714
|
+
<li class="even ">
|
715
|
+
<div class="item">
|
716
|
+
<span class='object_link'><a href="DWH/Behaviors.html#extend_ending_date_to_last_hour_of_day%3F-instance_method" title="DWH::Behaviors#extend_ending_date_to_last_hour_of_day? (method)">#extend_ending_date_to_last_hour_of_day?</a></span>
|
717
|
+
<small>DWH::Behaviors</small>
|
718
|
+
</div>
|
719
|
+
</li>
|
720
|
+
|
721
|
+
|
722
|
+
<li class="odd ">
|
723
|
+
<div class="item">
|
724
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#extra_connection_params-instance_method" title="DWH::Adapters::Adapter#extra_connection_params (method)">#extra_connection_params</a></span>
|
725
|
+
<small>DWH::Adapters::Adapter</small>
|
726
|
+
</div>
|
727
|
+
</li>
|
728
|
+
|
729
|
+
|
730
|
+
<li class="even ">
|
731
|
+
<div class="item">
|
732
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#extra_query_params-instance_method" title="DWH::Adapters::Adapter#extra_query_params (method)">#extra_query_params</a></span>
|
733
|
+
<small>DWH::Adapters::Adapter</small>
|
734
|
+
</div>
|
735
|
+
</li>
|
736
|
+
|
737
|
+
|
738
|
+
<li class="odd ">
|
739
|
+
<div class="item">
|
740
|
+
<span class='object_link'><a href="DWH/Adapters/SqlServer.html#extract_day_name-instance_method" title="DWH::Adapters::SqlServer#extract_day_name (method)">#extract_day_name</a></span>
|
741
|
+
<small>DWH::Adapters::SqlServer</small>
|
742
|
+
</div>
|
743
|
+
</li>
|
744
|
+
|
745
|
+
|
746
|
+
<li class="even ">
|
747
|
+
<div class="item">
|
748
|
+
<span class='object_link'><a href="DWH/Functions/ExtractDatePart.html#extract_day_name-instance_method" title="DWH::Functions::ExtractDatePart#extract_day_name (method)">#extract_day_name</a></span>
|
749
|
+
<small>DWH::Functions::ExtractDatePart</small>
|
750
|
+
</div>
|
751
|
+
</li>
|
752
|
+
|
753
|
+
|
754
|
+
<li class="odd ">
|
755
|
+
<div class="item">
|
756
|
+
<span class='object_link'><a href="DWH/Functions/ExtractDatePart.html#extract_day_of_month-instance_method" title="DWH::Functions::ExtractDatePart#extract_day_of_month (method)">#extract_day_of_month</a></span>
|
757
|
+
<small>DWH::Functions::ExtractDatePart</small>
|
758
|
+
</div>
|
759
|
+
</li>
|
760
|
+
|
761
|
+
|
762
|
+
<li class="even ">
|
763
|
+
<div class="item">
|
764
|
+
<span class='object_link'><a href="DWH/Functions/ExtractDatePart.html#extract_day_of_week-instance_method" title="DWH::Functions::ExtractDatePart#extract_day_of_week (method)">#extract_day_of_week</a></span>
|
765
|
+
<small>DWH::Functions::ExtractDatePart</small>
|
766
|
+
</div>
|
767
|
+
</li>
|
768
|
+
|
769
|
+
|
770
|
+
<li class="odd ">
|
771
|
+
<div class="item">
|
772
|
+
<span class='object_link'><a href="DWH/Functions/ExtractDatePart.html#extract_day_of_year-instance_method" title="DWH::Functions::ExtractDatePart#extract_day_of_year (method)">#extract_day_of_year</a></span>
|
773
|
+
<small>DWH::Functions::ExtractDatePart</small>
|
774
|
+
</div>
|
775
|
+
</li>
|
776
|
+
|
777
|
+
|
778
|
+
<li class="even ">
|
779
|
+
<div class="item">
|
780
|
+
<span class='object_link'><a href="DWH/Functions/ExtractDatePart.html#extract_hour-instance_method" title="DWH::Functions::ExtractDatePart#extract_hour (method)">#extract_hour</a></span>
|
781
|
+
<small>DWH::Functions::ExtractDatePart</small>
|
782
|
+
</div>
|
783
|
+
</li>
|
784
|
+
|
785
|
+
|
786
|
+
<li class="odd ">
|
787
|
+
<div class="item">
|
788
|
+
<span class='object_link'><a href="DWH/Functions/ExtractDatePart.html#extract_minute-instance_method" title="DWH::Functions::ExtractDatePart#extract_minute (method)">#extract_minute</a></span>
|
789
|
+
<small>DWH::Functions::ExtractDatePart</small>
|
790
|
+
</div>
|
791
|
+
</li>
|
792
|
+
|
793
|
+
|
794
|
+
<li class="even ">
|
795
|
+
<div class="item">
|
796
|
+
<span class='object_link'><a href="DWH/Functions/ExtractDatePart.html#extract_month-instance_method" title="DWH::Functions::ExtractDatePart#extract_month (method)">#extract_month</a></span>
|
797
|
+
<small>DWH::Functions::ExtractDatePart</small>
|
798
|
+
</div>
|
799
|
+
</li>
|
800
|
+
|
801
|
+
|
802
|
+
<li class="odd ">
|
803
|
+
<div class="item">
|
804
|
+
<span class='object_link'><a href="DWH/Adapters/SqlServer.html#extract_month_name-instance_method" title="DWH::Adapters::SqlServer#extract_month_name (method)">#extract_month_name</a></span>
|
805
|
+
<small>DWH::Adapters::SqlServer</small>
|
806
|
+
</div>
|
807
|
+
</li>
|
808
|
+
|
809
|
+
|
810
|
+
<li class="even ">
|
811
|
+
<div class="item">
|
812
|
+
<span class='object_link'><a href="DWH/Functions/ExtractDatePart.html#extract_month_name-instance_method" title="DWH::Functions::ExtractDatePart#extract_month_name (method)">#extract_month_name</a></span>
|
813
|
+
<small>DWH::Functions::ExtractDatePart</small>
|
814
|
+
</div>
|
815
|
+
</li>
|
816
|
+
|
817
|
+
|
818
|
+
<li class="odd ">
|
819
|
+
<div class="item">
|
820
|
+
<span class='object_link'><a href="DWH/Functions/ExtractDatePart.html#extract_quarter-instance_method" title="DWH::Functions::ExtractDatePart#extract_quarter (method)">#extract_quarter</a></span>
|
821
|
+
<small>DWH::Functions::ExtractDatePart</small>
|
822
|
+
</div>
|
823
|
+
</li>
|
824
|
+
|
825
|
+
|
826
|
+
<li class="even ">
|
827
|
+
<div class="item">
|
828
|
+
<span class='object_link'><a href="DWH/Functions/ExtractDatePart.html#extract_week_of_year-instance_method" title="DWH::Functions::ExtractDatePart#extract_week_of_year (method)">#extract_week_of_year</a></span>
|
829
|
+
<small>DWH::Functions::ExtractDatePart</small>
|
830
|
+
</div>
|
831
|
+
</li>
|
832
|
+
|
833
|
+
|
834
|
+
<li class="odd ">
|
835
|
+
<div class="item">
|
836
|
+
<span class='object_link'><a href="DWH/Functions/ExtractDatePart.html#extract_year-instance_method" title="DWH::Functions::ExtractDatePart#extract_year (method)">#extract_year</a></span>
|
837
|
+
<small>DWH::Functions::ExtractDatePart</small>
|
838
|
+
</div>
|
839
|
+
</li>
|
840
|
+
|
841
|
+
|
842
|
+
<li class="even ">
|
843
|
+
<div class="item">
|
844
|
+
<span class='object_link'><a href="DWH/Functions/ExtractDatePart.html#extract_year_month-instance_method" title="DWH::Functions::ExtractDatePart#extract_year_month (method)">#extract_year_month</a></span>
|
845
|
+
<small>DWH::Functions::ExtractDatePart</small>
|
846
|
+
</div>
|
847
|
+
</li>
|
848
|
+
|
849
|
+
|
850
|
+
<li class="odd ">
|
851
|
+
<div class="item">
|
852
|
+
<span class='object_link'><a href="DWH/Behaviors.html#final_measure_filter%3F-instance_method" title="DWH::Behaviors#final_measure_filter? (method)">#final_measure_filter?</a></span>
|
853
|
+
<small>DWH::Behaviors</small>
|
854
|
+
</div>
|
855
|
+
</li>
|
856
|
+
|
857
|
+
|
858
|
+
<li class="even ">
|
859
|
+
<div class="item">
|
860
|
+
<span class='object_link'><a href="DWH/Behaviors.html#final_pass_measure_join_type-instance_method" title="DWH::Behaviors#final_pass_measure_join_type (method)">#final_pass_measure_join_type</a></span>
|
861
|
+
<small>DWH::Behaviors</small>
|
862
|
+
</div>
|
863
|
+
</li>
|
864
|
+
|
865
|
+
|
866
|
+
<li class="odd ">
|
867
|
+
<div class="item">
|
868
|
+
<span class='object_link'><a href="DWH/Table.html#find_column-instance_method" title="DWH::Table#find_column (method)">#find_column</a></span>
|
869
|
+
<small>DWH::Table</small>
|
870
|
+
</div>
|
871
|
+
</li>
|
872
|
+
|
873
|
+
|
874
|
+
<li class="even ">
|
875
|
+
<div class="item">
|
876
|
+
<span class='object_link'><a href="DWH/Table.html#from_hash_or_json-class_method" title="DWH::Table.from_hash_or_json (method)">from_hash_or_json</a></span>
|
877
|
+
<small>DWH::Table</small>
|
878
|
+
</div>
|
879
|
+
</li>
|
880
|
+
|
881
|
+
|
882
|
+
<li class="odd ">
|
883
|
+
<div class="item">
|
884
|
+
<span class='object_link'><a href="DWH/Table.html#fully_qualified_schema_name-instance_method" title="DWH::Table#fully_qualified_schema_name (method)">#fully_qualified_schema_name</a></span>
|
885
|
+
<small>DWH::Table</small>
|
886
|
+
</div>
|
887
|
+
</li>
|
888
|
+
|
889
|
+
|
890
|
+
<li class="even ">
|
891
|
+
<div class="item">
|
892
|
+
<span class='object_link'><a href="DWH/Table.html#fully_qualified_table_name-instance_method" title="DWH::Table#fully_qualified_table_name (method)">#fully_qualified_table_name</a></span>
|
893
|
+
<small>DWH::Table</small>
|
894
|
+
</div>
|
895
|
+
</li>
|
896
|
+
|
897
|
+
|
898
|
+
<li class="odd ">
|
899
|
+
<div class="item">
|
900
|
+
<span class='object_link'><a href="DWH/Adapters/OpenAuthorizable.html#generate_oauth_tokens-instance_method" title="DWH::Adapters::OpenAuthorizable#generate_oauth_tokens (method)">#generate_oauth_tokens</a></span>
|
901
|
+
<small>DWH::Adapters::OpenAuthorizable</small>
|
902
|
+
</div>
|
903
|
+
</li>
|
904
|
+
|
905
|
+
|
906
|
+
<li class="even ">
|
907
|
+
<div class="item">
|
908
|
+
<span class='object_link'><a href="DWH/Factory.html#get_adapter-instance_method" title="DWH::Factory#get_adapter (method)">#get_adapter</a></span>
|
909
|
+
<small>DWH::Factory</small>
|
910
|
+
</div>
|
911
|
+
</li>
|
912
|
+
|
913
|
+
|
914
|
+
<li class="odd ">
|
915
|
+
<div class="item">
|
916
|
+
<span class='object_link'><a href="DWH/Behaviors.html#greedy_apply_date_filters-instance_method" title="DWH::Behaviors#greedy_apply_date_filters (method)">#greedy_apply_date_filters</a></span>
|
917
|
+
<small>DWH::Behaviors</small>
|
918
|
+
</div>
|
919
|
+
</li>
|
920
|
+
|
921
|
+
|
922
|
+
<li class="even ">
|
923
|
+
<div class="item">
|
924
|
+
<span class='object_link'><a href="DWH/Functions.html#gsk-instance_method" title="DWH::Functions#gsk (method)">#gsk</a></span>
|
925
|
+
<small>DWH::Functions</small>
|
926
|
+
</div>
|
927
|
+
</li>
|
928
|
+
|
929
|
+
|
930
|
+
<li class="odd ">
|
931
|
+
<div class="item">
|
932
|
+
<span class='object_link'><a href="DWH/Functions/Nulls.html#if_null-instance_method" title="DWH::Functions::Nulls#if_null (method)">#if_null</a></span>
|
933
|
+
<small>DWH::Functions::Nulls</small>
|
934
|
+
</div>
|
935
|
+
</li>
|
936
|
+
|
937
|
+
|
938
|
+
<li class="even ">
|
939
|
+
<div class="item">
|
940
|
+
<span class='object_link'><a href="DWH/StreamingStats.html#in_memory_limit-instance_method" title="DWH::StreamingStats#in_memory_limit (method)">#in_memory_limit</a></span>
|
941
|
+
<small>DWH::StreamingStats</small>
|
942
|
+
</div>
|
943
|
+
</li>
|
944
|
+
|
945
|
+
|
946
|
+
<li class="odd ">
|
947
|
+
<div class="item">
|
948
|
+
<span class='object_link'><a href="DWH/Adapters/OpenAuthorizable.html#included-class_method" title="DWH::Adapters::OpenAuthorizable.included (method)">included</a></span>
|
949
|
+
<small>DWH::Adapters::OpenAuthorizable</small>
|
950
|
+
</div>
|
951
|
+
</li>
|
952
|
+
|
953
|
+
|
954
|
+
<li class="even ">
|
955
|
+
<div class="item">
|
956
|
+
<span class='object_link'><a href="DWH/Table.html#initialize-instance_method" title="DWH::Table#initialize (method)">#initialize</a></span>
|
957
|
+
<small>DWH::Table</small>
|
958
|
+
</div>
|
959
|
+
</li>
|
960
|
+
|
961
|
+
|
962
|
+
<li class="odd ">
|
963
|
+
<div class="item">
|
964
|
+
<span class='object_link'><a href="DWH/Column.html#initialize-instance_method" title="DWH::Column#initialize (method)">#initialize</a></span>
|
965
|
+
<small>DWH::Column</small>
|
966
|
+
</div>
|
967
|
+
</li>
|
968
|
+
|
969
|
+
|
970
|
+
<li class="even ">
|
971
|
+
<div class="item">
|
972
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#initialize-instance_method" title="DWH::Adapters::Adapter#initialize (method)">#initialize</a></span>
|
973
|
+
<small>DWH::Adapters::Adapter</small>
|
974
|
+
</div>
|
975
|
+
</li>
|
976
|
+
|
977
|
+
|
978
|
+
<li class="odd ">
|
979
|
+
<div class="item">
|
980
|
+
<span class='object_link'><a href="DWH/TableStats.html#initialize-instance_method" title="DWH::TableStats#initialize (method)">#initialize</a></span>
|
981
|
+
<small>DWH::TableStats</small>
|
982
|
+
</div>
|
983
|
+
</li>
|
984
|
+
|
985
|
+
|
986
|
+
<li class="even ">
|
987
|
+
<div class="item">
|
988
|
+
<span class='object_link'><a href="DWH/StreamingStats.html#initialize-instance_method" title="DWH::StreamingStats#initialize (method)">#initialize</a></span>
|
989
|
+
<small>DWH::StreamingStats</small>
|
990
|
+
</div>
|
991
|
+
</li>
|
992
|
+
|
993
|
+
|
994
|
+
<li class="odd ">
|
995
|
+
<div class="item">
|
996
|
+
<span class='object_link'><a href="DWH/Adapters/Snowflake.html#initialize-instance_method" title="DWH::Adapters::Snowflake#initialize (method)">#initialize</a></span>
|
997
|
+
<small>DWH::Adapters::Snowflake</small>
|
998
|
+
</div>
|
999
|
+
</li>
|
1000
|
+
|
1001
|
+
|
1002
|
+
<li class="even ">
|
1003
|
+
<div class="item">
|
1004
|
+
<span class='object_link'><a href="DWH/Behaviors.html#intermediate_measure_filter%3F-instance_method" title="DWH::Behaviors#intermediate_measure_filter? (method)">#intermediate_measure_filter?</a></span>
|
1005
|
+
<small>DWH::Behaviors</small>
|
1006
|
+
</div>
|
1007
|
+
</li>
|
1008
|
+
|
1009
|
+
|
1010
|
+
<li class="odd ">
|
1011
|
+
<div class="item">
|
1012
|
+
<span class='object_link'><a href="DWH/StreamingStats.html#limit_reached%3F-instance_method" title="DWH::StreamingStats#limit_reached? (method)">#limit_reached?</a></span>
|
1013
|
+
<small>DWH::StreamingStats</small>
|
1014
|
+
</div>
|
1015
|
+
</li>
|
1016
|
+
|
1017
|
+
|
1018
|
+
<li class="even ">
|
1019
|
+
<div class="item">
|
1020
|
+
<span class='object_link'><a href="DWH/Settings.html#load_settings-instance_method" title="DWH::Settings#load_settings (method)">#load_settings</a></span>
|
1021
|
+
<small>DWH::Settings</small>
|
1022
|
+
</div>
|
1023
|
+
</li>
|
1024
|
+
|
1025
|
+
|
1026
|
+
<li class="odd ">
|
1027
|
+
<div class="item">
|
1028
|
+
<span class='object_link'><a href="DWH/Logger.html#logger-instance_method" title="DWH::Logger#logger (method)">#logger</a></span>
|
1029
|
+
<small>DWH::Logger</small>
|
1030
|
+
</div>
|
1031
|
+
</li>
|
1032
|
+
|
1033
|
+
|
1034
|
+
<li class="even ">
|
1035
|
+
<div class="item">
|
1036
|
+
<span class='object_link'><a href="DWH/Logger.html#logger-class_method" title="DWH::Logger.logger (method)">logger</a></span>
|
1037
|
+
<small>DWH::Logger</small>
|
1038
|
+
</div>
|
1039
|
+
</li>
|
1040
|
+
|
1041
|
+
|
1042
|
+
<li class="odd ">
|
1043
|
+
<div class="item">
|
1044
|
+
<span class='object_link'><a href="DWH/Functions.html#lower_case-instance_method" title="DWH::Functions#lower_case (method)">#lower_case</a></span>
|
1045
|
+
<small>DWH::Functions</small>
|
1046
|
+
</div>
|
1047
|
+
</li>
|
1048
|
+
|
1049
|
+
|
1050
|
+
<li class="even ">
|
1051
|
+
<div class="item">
|
1052
|
+
<span class='object_link'><a href="DWH/Column.html#max_char_length-instance_method" title="DWH::Column#max_char_length (method)">#max_char_length</a></span>
|
1053
|
+
<small>DWH::Column</small>
|
1054
|
+
</div>
|
1055
|
+
</li>
|
1056
|
+
|
1057
|
+
|
1058
|
+
<li class="odd ">
|
1059
|
+
<div class="item">
|
1060
|
+
<span class='object_link'><a href="DWH/StreamingStats.html#max_row_size-instance_method" title="DWH::StreamingStats#max_row_size (method)">#max_row_size</a></span>
|
1061
|
+
<small>DWH::StreamingStats</small>
|
1062
|
+
</div>
|
1063
|
+
</li>
|
1064
|
+
|
1065
|
+
|
1066
|
+
<li class="even ">
|
1067
|
+
<div class="item">
|
1068
|
+
<span class='object_link'><a href="DWH/Column.html#measure%3F-instance_method" title="DWH::Column#measure? (method)">#measure?</a></span>
|
1069
|
+
<small>DWH::Column</small>
|
1070
|
+
</div>
|
1071
|
+
</li>
|
1072
|
+
|
1073
|
+
|
1074
|
+
<li class="odd ">
|
1075
|
+
<div class="item">
|
1076
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#metadata-instance_method" title="DWH::Adapters::Adapter#metadata (method)">#metadata</a></span>
|
1077
|
+
<small>DWH::Adapters::Adapter</small>
|
1078
|
+
</div>
|
1079
|
+
</li>
|
1080
|
+
|
1081
|
+
|
1082
|
+
<li class="even ">
|
1083
|
+
<div class="item">
|
1084
|
+
<span class='object_link'><a href="DWH/Adapters/Druid.html#metadata-instance_method" title="DWH::Adapters::Druid#metadata (method)">#metadata</a></span>
|
1085
|
+
<small>DWH::Adapters::Druid</small>
|
1086
|
+
</div>
|
1087
|
+
</li>
|
1088
|
+
|
1089
|
+
|
1090
|
+
<li class="odd ">
|
1091
|
+
<div class="item">
|
1092
|
+
<span class='object_link'><a href="DWH/Adapters/Trino.html#metadata-instance_method" title="DWH::Adapters::Trino#metadata (method)">#metadata</a></span>
|
1093
|
+
<small>DWH::Adapters::Trino</small>
|
1094
|
+
</div>
|
1095
|
+
</li>
|
1096
|
+
|
1097
|
+
|
1098
|
+
<li class="even ">
|
1099
|
+
<div class="item">
|
1100
|
+
<span class='object_link'><a href="DWH/Adapters/Athena.html#metadata-instance_method" title="DWH::Adapters::Athena#metadata (method)">#metadata</a></span>
|
1101
|
+
<small>DWH::Adapters::Athena</small>
|
1102
|
+
</div>
|
1103
|
+
</li>
|
1104
|
+
|
1105
|
+
|
1106
|
+
<li class="odd ">
|
1107
|
+
<div class="item">
|
1108
|
+
<span class='object_link'><a href="DWH/Adapters/MySql.html#metadata-instance_method" title="DWH::Adapters::MySql#metadata (method)">#metadata</a></span>
|
1109
|
+
<small>DWH::Adapters::MySql</small>
|
1110
|
+
</div>
|
1111
|
+
</li>
|
1112
|
+
|
1113
|
+
|
1114
|
+
<li class="even ">
|
1115
|
+
<div class="item">
|
1116
|
+
<span class='object_link'><a href="DWH/Adapters/DuckDb.html#metadata-instance_method" title="DWH::Adapters::DuckDb#metadata (method)">#metadata</a></span>
|
1117
|
+
<small>DWH::Adapters::DuckDb</small>
|
1118
|
+
</div>
|
1119
|
+
</li>
|
1120
|
+
|
1121
|
+
|
1122
|
+
<li class="odd ">
|
1123
|
+
<div class="item">
|
1124
|
+
<span class='object_link'><a href="DWH/Adapters/Postgres.html#metadata-instance_method" title="DWH::Adapters::Postgres#metadata (method)">#metadata</a></span>
|
1125
|
+
<small>DWH::Adapters::Postgres</small>
|
1126
|
+
</div>
|
1127
|
+
</li>
|
1128
|
+
|
1129
|
+
|
1130
|
+
<li class="even ">
|
1131
|
+
<div class="item">
|
1132
|
+
<span class='object_link'><a href="DWH/Adapters/Snowflake.html#metadata-instance_method" title="DWH::Adapters::Snowflake#metadata (method)">#metadata</a></span>
|
1133
|
+
<small>DWH::Adapters::Snowflake</small>
|
1134
|
+
</div>
|
1135
|
+
</li>
|
1136
|
+
|
1137
|
+
|
1138
|
+
<li class="odd ">
|
1139
|
+
<div class="item">
|
1140
|
+
<span class='object_link'><a href="DWH/Adapters/SqlServer.html#metadata-instance_method" title="DWH::Adapters::SqlServer#metadata (method)">#metadata</a></span>
|
1141
|
+
<small>DWH::Adapters::SqlServer</small>
|
1142
|
+
</div>
|
1143
|
+
</li>
|
1144
|
+
|
1145
|
+
|
1146
|
+
<li class="even ">
|
1147
|
+
<div class="item">
|
1148
|
+
<span class='object_link'><a href="DWH/Column.html#name-instance_method" title="DWH::Column#name (method)">#name</a></span>
|
1149
|
+
<small>DWH::Column</small>
|
1150
|
+
</div>
|
1151
|
+
</li>
|
1152
|
+
|
1153
|
+
|
1154
|
+
<li class="odd ">
|
1155
|
+
<div class="item">
|
1156
|
+
<span class='object_link'><a href="DWH/Column.html#namify-instance_method" title="DWH::Column#namify (method)">#namify</a></span>
|
1157
|
+
<small>DWH::Column</small>
|
1158
|
+
</div>
|
1159
|
+
</li>
|
1160
|
+
|
1161
|
+
|
1162
|
+
<li class="even ">
|
1163
|
+
<div class="item">
|
1164
|
+
<span class='object_link'><a href="DWH/Column.html#normalized_data_type-instance_method" title="DWH::Column#normalized_data_type (method)">#normalized_data_type</a></span>
|
1165
|
+
<small>DWH::Column</small>
|
1166
|
+
</div>
|
1167
|
+
</li>
|
1168
|
+
|
1169
|
+
|
1170
|
+
<li class="odd ">
|
1171
|
+
<div class="item">
|
1172
|
+
<span class='object_link'><a href="DWH/Functions/Nulls.html#null_if-instance_method" title="DWH::Functions::Nulls#null_if (method)">#null_if</a></span>
|
1173
|
+
<small>DWH::Functions::Nulls</small>
|
1174
|
+
</div>
|
1175
|
+
</li>
|
1176
|
+
|
1177
|
+
|
1178
|
+
<li class="even ">
|
1179
|
+
<div class="item">
|
1180
|
+
<span class='object_link'><a href="DWH/Functions/Nulls.html#null_if_zero-instance_method" title="DWH::Functions::Nulls#null_if_zero (method)">#null_if_zero</a></span>
|
1181
|
+
<small>DWH::Functions::Nulls</small>
|
1182
|
+
</div>
|
1183
|
+
</li>
|
1184
|
+
|
1185
|
+
|
1186
|
+
<li class="odd ">
|
1187
|
+
<div class="item">
|
1188
|
+
<span class='object_link'><a href="DWH/Adapters/OpenAuthorizable.html#oauth_access_token-instance_method" title="DWH::Adapters::OpenAuthorizable#oauth_access_token (method)">#oauth_access_token</a></span>
|
1189
|
+
<small>DWH::Adapters::OpenAuthorizable</small>
|
1190
|
+
</div>
|
1191
|
+
</li>
|
1192
|
+
|
1193
|
+
|
1194
|
+
<li class="even ">
|
1195
|
+
<div class="item">
|
1196
|
+
<span class='object_link'><a href="DWH/Adapters/OpenAuthorizable.html#oauth_authenticated%3F-instance_method" title="DWH::Adapters::OpenAuthorizable#oauth_authenticated? (method)">#oauth_authenticated?</a></span>
|
1197
|
+
<small>DWH::Adapters::OpenAuthorizable</small>
|
1198
|
+
</div>
|
1199
|
+
</li>
|
1200
|
+
|
1201
|
+
|
1202
|
+
<li class="odd ">
|
1203
|
+
<div class="item">
|
1204
|
+
<span class='object_link'><a href="DWH/Adapters/OpenAuthorizable/ClassMethods.html#oauth_settings-instance_method" title="DWH::Adapters::OpenAuthorizable::ClassMethods#oauth_settings (method)">#oauth_settings</a></span>
|
1205
|
+
<small>DWH::Adapters::OpenAuthorizable::ClassMethods</small>
|
1206
|
+
</div>
|
1207
|
+
</li>
|
1208
|
+
|
1209
|
+
|
1210
|
+
<li class="even ">
|
1211
|
+
<div class="item">
|
1212
|
+
<span class='object_link'><a href="DWH/Adapters/OpenAuthorizable.html#oauth_settings-instance_method" title="DWH::Adapters::OpenAuthorizable#oauth_settings (method)">#oauth_settings</a></span>
|
1213
|
+
<small>DWH::Adapters::OpenAuthorizable</small>
|
1214
|
+
</div>
|
1215
|
+
</li>
|
1216
|
+
|
1217
|
+
|
1218
|
+
<li class="odd ">
|
1219
|
+
<div class="item">
|
1220
|
+
<span class='object_link'><a href="DWH/Adapters/OpenAuthorizable.html#oauth_token_info-instance_method" title="DWH::Adapters::OpenAuthorizable#oauth_token_info (method)">#oauth_token_info</a></span>
|
1221
|
+
<small>DWH::Adapters::OpenAuthorizable</small>
|
1222
|
+
</div>
|
1223
|
+
</li>
|
1224
|
+
|
1225
|
+
|
1226
|
+
<li class="even ">
|
1227
|
+
<div class="item">
|
1228
|
+
<span class='object_link'><a href="DWH/Adapters/OpenAuthorizable.html#oauth_tokenization_url-instance_method" title="DWH::Adapters::OpenAuthorizable#oauth_tokenization_url (method)">#oauth_tokenization_url</a></span>
|
1229
|
+
<small>DWH::Adapters::OpenAuthorizable</small>
|
1230
|
+
</div>
|
1231
|
+
</li>
|
1232
|
+
|
1233
|
+
|
1234
|
+
<li class="odd ">
|
1235
|
+
<div class="item">
|
1236
|
+
<span class='object_link'><a href="DWH/Adapters/OpenAuthorizable/ClassMethods.html#oauth_with-instance_method" title="DWH::Adapters::OpenAuthorizable::ClassMethods#oauth_with (method)">#oauth_with</a></span>
|
1237
|
+
<small>DWH::Adapters::OpenAuthorizable::ClassMethods</small>
|
1238
|
+
</div>
|
1239
|
+
</li>
|
1240
|
+
|
1241
|
+
|
1242
|
+
<li class="even ">
|
1243
|
+
<div class="item">
|
1244
|
+
<span class='object_link'><a href="DWH/Adapters/DuckDb.html#open_databases-class_method" title="DWH::Adapters::DuckDb.open_databases (method)">open_databases</a></span>
|
1245
|
+
<small>DWH::Adapters::DuckDb</small>
|
1246
|
+
</div>
|
1247
|
+
</li>
|
1248
|
+
|
1249
|
+
|
1250
|
+
<li class="odd ">
|
1251
|
+
<div class="item">
|
1252
|
+
<span class='object_link'><a href="DWH/Table.html#physical_name-instance_method" title="DWH::Table#physical_name (method)">#physical_name</a></span>
|
1253
|
+
<small>DWH::Table</small>
|
1254
|
+
</div>
|
1255
|
+
</li>
|
1256
|
+
|
1257
|
+
|
1258
|
+
<li class="even ">
|
1259
|
+
<div class="item">
|
1260
|
+
<span class='object_link'><a href="DWH/Factory.html#pool-instance_method" title="DWH::Factory#pool (method)">#pool</a></span>
|
1261
|
+
<small>DWH::Factory</small>
|
1262
|
+
</div>
|
1263
|
+
</li>
|
1264
|
+
|
1265
|
+
|
1266
|
+
<li class="odd ">
|
1267
|
+
<div class="item">
|
1268
|
+
<span class='object_link'><a href="DWH/Factory.html#pools-instance_method" title="DWH::Factory#pools (method)">#pools</a></span>
|
1269
|
+
<small>DWH::Factory</small>
|
1270
|
+
</div>
|
1271
|
+
</li>
|
1272
|
+
|
1273
|
+
|
1274
|
+
<li class="even ">
|
1275
|
+
<div class="item">
|
1276
|
+
<span class='object_link'><a href="DWH/Column.html#precision-instance_method" title="DWH::Column#precision (method)">#precision</a></span>
|
1277
|
+
<small>DWH::Column</small>
|
1278
|
+
</div>
|
1279
|
+
</li>
|
1280
|
+
|
1281
|
+
|
1282
|
+
<li class="odd ">
|
1283
|
+
<div class="item">
|
1284
|
+
<span class='object_link'><a href="DWH/Functions.html#quote-instance_method" title="DWH::Functions#quote (method)">#quote</a></span>
|
1285
|
+
<small>DWH::Functions</small>
|
1286
|
+
</div>
|
1287
|
+
</li>
|
1288
|
+
|
1289
|
+
|
1290
|
+
<li class="even ">
|
1291
|
+
<div class="item">
|
1292
|
+
<span class='object_link'><a href="DWH/Adapters/OpenAuthorizable.html#refresh_access_token-instance_method" title="DWH::Adapters::OpenAuthorizable#refresh_access_token (method)">#refresh_access_token</a></span>
|
1293
|
+
<small>DWH::Adapters::OpenAuthorizable</small>
|
1294
|
+
</div>
|
1295
|
+
</li>
|
1296
|
+
|
1297
|
+
|
1298
|
+
<li class="odd ">
|
1299
|
+
<div class="item">
|
1300
|
+
<span class='object_link'><a href="DWH/Factory.html#register-instance_method" title="DWH::Factory#register (method)">#register</a></span>
|
1301
|
+
<small>DWH::Factory</small>
|
1302
|
+
</div>
|
1303
|
+
</li>
|
1304
|
+
|
1305
|
+
|
1306
|
+
<li class="even ">
|
1307
|
+
<div class="item">
|
1308
|
+
<span class='object_link'><a href="DWH/StreamingStats.html#reset-instance_method" title="DWH::StreamingStats#reset (method)">#reset</a></span>
|
1309
|
+
<small>DWH::StreamingStats</small>
|
1310
|
+
</div>
|
1311
|
+
</li>
|
1312
|
+
|
1313
|
+
|
1314
|
+
<li class="odd ">
|
1315
|
+
<div class="item">
|
1316
|
+
<span class='object_link'><a href="DWH/Adapters/SqlServer.html#reset_current_database-instance_method" title="DWH::Adapters::SqlServer#reset_current_database (method)">#reset_current_database</a></span>
|
1317
|
+
<small>DWH::Adapters::SqlServer</small>
|
1318
|
+
</div>
|
1319
|
+
</li>
|
1320
|
+
|
1321
|
+
|
1322
|
+
<li class="even ">
|
1323
|
+
<div class="item">
|
1324
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#reset_settings-instance_method" title="DWH::Adapters::Adapter#reset_settings (method)">#reset_settings</a></span>
|
1325
|
+
<small>DWH::Adapters::Adapter</small>
|
1326
|
+
</div>
|
1327
|
+
</li>
|
1328
|
+
|
1329
|
+
|
1330
|
+
<li class="odd ">
|
1331
|
+
<div class="item">
|
1332
|
+
<span class='object_link'><a href="DWH/TableStats.html#row_count-instance_method" title="DWH::TableStats#row_count (method)">#row_count</a></span>
|
1333
|
+
<small>DWH::TableStats</small>
|
1334
|
+
</div>
|
1335
|
+
</li>
|
1336
|
+
|
1337
|
+
|
1338
|
+
<li class="even ">
|
1339
|
+
<div class="item">
|
1340
|
+
<span class='object_link'><a href="DWH/Column.html#scale-instance_method" title="DWH::Column#scale (method)">#scale</a></span>
|
1341
|
+
<small>DWH::Column</small>
|
1342
|
+
</div>
|
1343
|
+
</li>
|
1344
|
+
|
1345
|
+
|
1346
|
+
<li class="odd ">
|
1347
|
+
<div class="item">
|
1348
|
+
<span class='object_link'><a href="DWH/Table.html#schema-instance_method" title="DWH::Table#schema (method)">#schema</a></span>
|
1349
|
+
<small>DWH::Table</small>
|
1350
|
+
</div>
|
1351
|
+
</li>
|
1352
|
+
|
1353
|
+
|
1354
|
+
<li class="even ">
|
1355
|
+
<div class="item">
|
1356
|
+
<span class='object_link'><a href="DWH/Adapters/Trino.html#schema%3F-instance_method" title="DWH::Adapters::Trino#schema? (method)">#schema?</a></span>
|
1357
|
+
<small>DWH::Adapters::Trino</small>
|
1358
|
+
</div>
|
1359
|
+
</li>
|
1360
|
+
|
1361
|
+
|
1362
|
+
<li class="odd ">
|
1363
|
+
<div class="item">
|
1364
|
+
<span class='object_link'><a href="DWH/Adapters/DuckDb.html#schema%3F-instance_method" title="DWH::Adapters::DuckDb#schema? (method)">#schema?</a></span>
|
1365
|
+
<small>DWH::Adapters::DuckDb</small>
|
1366
|
+
</div>
|
1367
|
+
</li>
|
1368
|
+
|
1369
|
+
|
1370
|
+
<li class="even ">
|
1371
|
+
<div class="item">
|
1372
|
+
<span class='object_link'><a href="DWH/Adapters/Postgres.html#schema%3F-instance_method" title="DWH::Adapters::Postgres#schema? (method)">#schema?</a></span>
|
1373
|
+
<small>DWH::Adapters::Postgres</small>
|
1374
|
+
</div>
|
1375
|
+
</li>
|
1376
|
+
|
1377
|
+
|
1378
|
+
<li class="odd ">
|
1379
|
+
<div class="item">
|
1380
|
+
<span class='object_link'><a href="DWH/Column.html#schema_type-instance_method" title="DWH::Column#schema_type (method)">#schema_type</a></span>
|
1381
|
+
<small>DWH::Column</small>
|
1382
|
+
</div>
|
1383
|
+
</li>
|
1384
|
+
|
1385
|
+
|
1386
|
+
<li class="even ">
|
1387
|
+
<div class="item">
|
1388
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#settings-instance_method" title="DWH::Adapters::Adapter#settings (method)">#settings</a></span>
|
1389
|
+
<small>DWH::Adapters::Adapter</small>
|
1390
|
+
</div>
|
1391
|
+
</li>
|
1392
|
+
|
1393
|
+
|
1394
|
+
<li class="odd ">
|
1395
|
+
<div class="item">
|
1396
|
+
<span class='object_link'><a href="DWH/Settings.html#settings_file-instance_method" title="DWH::Settings#settings_file (method)">#settings_file</a></span>
|
1397
|
+
<small>DWH::Settings</small>
|
1398
|
+
</div>
|
1399
|
+
</li>
|
1400
|
+
|
1401
|
+
|
1402
|
+
<li class="even ">
|
1403
|
+
<div class="item">
|
1404
|
+
<span class='object_link'><a href="DWH/Settings.html#settings_file_path-instance_method" title="DWH::Settings#settings_file_path (method)">#settings_file_path</a></span>
|
1405
|
+
<small>DWH::Settings</small>
|
1406
|
+
</div>
|
1407
|
+
</li>
|
1408
|
+
|
1409
|
+
|
1410
|
+
<li class="odd ">
|
1411
|
+
<div class="item">
|
1412
|
+
<span class='object_link'><a href="DWH/Factory.html#shutdown-instance_method" title="DWH::Factory#shutdown (method)">#shutdown</a></span>
|
1413
|
+
<small>DWH::Factory</small>
|
1414
|
+
</div>
|
1415
|
+
</li>
|
1416
|
+
|
1417
|
+
|
1418
|
+
<li class="even ">
|
1419
|
+
<div class="item">
|
1420
|
+
<span class='object_link'><a href="DWH/Table.html#size-instance_method" title="DWH::Table#size (method)">#size</a></span>
|
1421
|
+
<small>DWH::Table</small>
|
1422
|
+
</div>
|
1423
|
+
</li>
|
1424
|
+
|
1425
|
+
|
1426
|
+
<li class="odd ">
|
1427
|
+
<div class="item">
|
1428
|
+
<span class='object_link'><a href="DWH/Factory.html#start_reaper-instance_method" title="DWH::Factory#start_reaper (method)">#start_reaper</a></span>
|
1429
|
+
<small>DWH::Factory</small>
|
1430
|
+
</div>
|
1431
|
+
</li>
|
1432
|
+
|
1433
|
+
|
1434
|
+
<li class="even ">
|
1435
|
+
<div class="item">
|
1436
|
+
<span class='object_link'><a href="DWH/Table.html#stats-instance_method" title="DWH::Table#stats (method)">#stats</a></span>
|
1437
|
+
<small>DWH::Table</small>
|
1438
|
+
</div>
|
1439
|
+
</li>
|
1440
|
+
|
1441
|
+
|
1442
|
+
<li class="odd ">
|
1443
|
+
<div class="item">
|
1444
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#stats-instance_method" title="DWH::Adapters::Adapter#stats (method)">#stats</a></span>
|
1445
|
+
<small>DWH::Adapters::Adapter</small>
|
1446
|
+
</div>
|
1447
|
+
</li>
|
1448
|
+
|
1449
|
+
|
1450
|
+
<li class="even ">
|
1451
|
+
<div class="item">
|
1452
|
+
<span class='object_link'><a href="DWH/Adapters/Druid.html#stats-instance_method" title="DWH::Adapters::Druid#stats (method)">#stats</a></span>
|
1453
|
+
<small>DWH::Adapters::Druid</small>
|
1454
|
+
</div>
|
1455
|
+
</li>
|
1456
|
+
|
1457
|
+
|
1458
|
+
<li class="odd ">
|
1459
|
+
<div class="item">
|
1460
|
+
<span class='object_link'><a href="DWH/Adapters/Trino.html#stats-instance_method" title="DWH::Adapters::Trino#stats (method)">#stats</a></span>
|
1461
|
+
<small>DWH::Adapters::Trino</small>
|
1462
|
+
</div>
|
1463
|
+
</li>
|
1464
|
+
|
1465
|
+
|
1466
|
+
<li class="even ">
|
1467
|
+
<div class="item">
|
1468
|
+
<span class='object_link'><a href="DWH/Adapters/Athena.html#stats-instance_method" title="DWH::Adapters::Athena#stats (method)">#stats</a></span>
|
1469
|
+
<small>DWH::Adapters::Athena</small>
|
1470
|
+
</div>
|
1471
|
+
</li>
|
1472
|
+
|
1473
|
+
|
1474
|
+
<li class="odd ">
|
1475
|
+
<div class="item">
|
1476
|
+
<span class='object_link'><a href="DWH/Adapters/MySql.html#stats-instance_method" title="DWH::Adapters::MySql#stats (method)">#stats</a></span>
|
1477
|
+
<small>DWH::Adapters::MySql</small>
|
1478
|
+
</div>
|
1479
|
+
</li>
|
1480
|
+
|
1481
|
+
|
1482
|
+
<li class="even ">
|
1483
|
+
<div class="item">
|
1484
|
+
<span class='object_link'><a href="DWH/Adapters/DuckDb.html#stats-instance_method" title="DWH::Adapters::DuckDb#stats (method)">#stats</a></span>
|
1485
|
+
<small>DWH::Adapters::DuckDb</small>
|
1486
|
+
</div>
|
1487
|
+
</li>
|
1488
|
+
|
1489
|
+
|
1490
|
+
<li class="odd ">
|
1491
|
+
<div class="item">
|
1492
|
+
<span class='object_link'><a href="DWH/Adapters/Postgres.html#stats-instance_method" title="DWH::Adapters::Postgres#stats (method)">#stats</a></span>
|
1493
|
+
<small>DWH::Adapters::Postgres</small>
|
1494
|
+
</div>
|
1495
|
+
</li>
|
1496
|
+
|
1497
|
+
|
1498
|
+
<li class="even ">
|
1499
|
+
<div class="item">
|
1500
|
+
<span class='object_link'><a href="DWH/Adapters/Snowflake.html#stats-instance_method" title="DWH::Adapters::Snowflake#stats (method)">#stats</a></span>
|
1501
|
+
<small>DWH::Adapters::Snowflake</small>
|
1502
|
+
</div>
|
1503
|
+
</li>
|
1504
|
+
|
1505
|
+
|
1506
|
+
<li class="odd ">
|
1507
|
+
<div class="item">
|
1508
|
+
<span class='object_link'><a href="DWH/Adapters/SqlServer.html#stats-instance_method" title="DWH::Adapters::SqlServer#stats (method)">#stats</a></span>
|
1509
|
+
<small>DWH::Adapters::SqlServer</small>
|
1510
|
+
</div>
|
1511
|
+
</li>
|
1512
|
+
|
1513
|
+
|
1514
|
+
<li class="even ">
|
1515
|
+
<div class="item">
|
1516
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#stream-instance_method" title="DWH::Adapters::Adapter#stream (method)">#stream</a></span>
|
1517
|
+
<small>DWH::Adapters::Adapter</small>
|
1518
|
+
</div>
|
1519
|
+
</li>
|
1520
|
+
|
1521
|
+
|
1522
|
+
<li class="odd ">
|
1523
|
+
<div class="item">
|
1524
|
+
<span class='object_link'><a href="DWH/Adapters/Druid.html#stream-instance_method" title="DWH::Adapters::Druid#stream (method)">#stream</a></span>
|
1525
|
+
<small>DWH::Adapters::Druid</small>
|
1526
|
+
</div>
|
1527
|
+
</li>
|
1528
|
+
|
1529
|
+
|
1530
|
+
<li class="even ">
|
1531
|
+
<div class="item">
|
1532
|
+
<span class='object_link'><a href="DWH/Adapters/Trino.html#stream-instance_method" title="DWH::Adapters::Trino#stream (method)">#stream</a></span>
|
1533
|
+
<small>DWH::Adapters::Trino</small>
|
1534
|
+
</div>
|
1535
|
+
</li>
|
1536
|
+
|
1537
|
+
|
1538
|
+
<li class="odd ">
|
1539
|
+
<div class="item">
|
1540
|
+
<span class='object_link'><a href="DWH/Adapters/Athena.html#stream-instance_method" title="DWH::Adapters::Athena#stream (method)">#stream</a></span>
|
1541
|
+
<small>DWH::Adapters::Athena</small>
|
1542
|
+
</div>
|
1543
|
+
</li>
|
1544
|
+
|
1545
|
+
|
1546
|
+
<li class="even ">
|
1547
|
+
<div class="item">
|
1548
|
+
<span class='object_link'><a href="DWH/Adapters/MySql.html#stream-instance_method" title="DWH::Adapters::MySql#stream (method)">#stream</a></span>
|
1549
|
+
<small>DWH::Adapters::MySql</small>
|
1550
|
+
</div>
|
1551
|
+
</li>
|
1552
|
+
|
1553
|
+
|
1554
|
+
<li class="odd ">
|
1555
|
+
<div class="item">
|
1556
|
+
<span class='object_link'><a href="DWH/Adapters/DuckDb.html#stream-instance_method" title="DWH::Adapters::DuckDb#stream (method)">#stream</a></span>
|
1557
|
+
<small>DWH::Adapters::DuckDb</small>
|
1558
|
+
</div>
|
1559
|
+
</li>
|
1560
|
+
|
1561
|
+
|
1562
|
+
<li class="even ">
|
1563
|
+
<div class="item">
|
1564
|
+
<span class='object_link'><a href="DWH/Adapters/Postgres.html#stream-instance_method" title="DWH::Adapters::Postgres#stream (method)">#stream</a></span>
|
1565
|
+
<small>DWH::Adapters::Postgres</small>
|
1566
|
+
</div>
|
1567
|
+
</li>
|
1568
|
+
|
1569
|
+
|
1570
|
+
<li class="odd ">
|
1571
|
+
<div class="item">
|
1572
|
+
<span class='object_link'><a href="DWH/Adapters/Snowflake.html#stream-instance_method" title="DWH::Adapters::Snowflake#stream (method)">#stream</a></span>
|
1573
|
+
<small>DWH::Adapters::Snowflake</small>
|
1574
|
+
</div>
|
1575
|
+
</li>
|
1576
|
+
|
1577
|
+
|
1578
|
+
<li class="even ">
|
1579
|
+
<div class="item">
|
1580
|
+
<span class='object_link'><a href="DWH/Adapters/SqlServer.html#stream-instance_method" title="DWH::Adapters::SqlServer#stream (method)">#stream</a></span>
|
1581
|
+
<small>DWH::Adapters::SqlServer</small>
|
1582
|
+
</div>
|
1583
|
+
</li>
|
1584
|
+
|
1585
|
+
|
1586
|
+
<li class="odd ">
|
1587
|
+
<div class="item">
|
1588
|
+
<span class='object_link'><a href="DWH/Functions.html#string_lit-instance_method" title="DWH::Functions#string_lit (method)">#string_lit</a></span>
|
1589
|
+
<small>DWH::Functions</small>
|
1590
|
+
</div>
|
1591
|
+
</li>
|
1592
|
+
|
1593
|
+
|
1594
|
+
<li class="even ">
|
1595
|
+
<div class="item">
|
1596
|
+
<span class='object_link'><a href="DWH/Capabilities.html#supports_array_functions%3F-instance_method" title="DWH::Capabilities#supports_array_functions? (method)">#supports_array_functions?</a></span>
|
1597
|
+
<small>DWH::Capabilities</small>
|
1598
|
+
</div>
|
1599
|
+
</li>
|
1600
|
+
|
1601
|
+
|
1602
|
+
<li class="odd ">
|
1603
|
+
<div class="item">
|
1604
|
+
<span class='object_link'><a href="DWH/Capabilities.html#supports_common_table_expressions%3F-instance_method" title="DWH::Capabilities#supports_common_table_expressions? (method)">#supports_common_table_expressions?</a></span>
|
1605
|
+
<small>DWH::Capabilities</small>
|
1606
|
+
</div>
|
1607
|
+
</li>
|
1608
|
+
|
1609
|
+
|
1610
|
+
<li class="even ">
|
1611
|
+
<div class="item">
|
1612
|
+
<span class='object_link'><a href="DWH/Capabilities.html#supports_cross_join%3F-instance_method" title="DWH::Capabilities#supports_cross_join? (method)">#supports_cross_join?</a></span>
|
1613
|
+
<small>DWH::Capabilities</small>
|
1614
|
+
</div>
|
1615
|
+
</li>
|
1616
|
+
|
1617
|
+
|
1618
|
+
<li class="odd ">
|
1619
|
+
<div class="item">
|
1620
|
+
<span class='object_link'><a href="DWH/Capabilities.html#supports_full_join%3F-instance_method" title="DWH::Capabilities#supports_full_join? (method)">#supports_full_join?</a></span>
|
1621
|
+
<small>DWH::Capabilities</small>
|
1622
|
+
</div>
|
1623
|
+
</li>
|
1624
|
+
|
1625
|
+
|
1626
|
+
<li class="even ">
|
1627
|
+
<div class="item">
|
1628
|
+
<span class='object_link'><a href="DWH/Capabilities.html#supports_sub_queries%3F-instance_method" title="DWH::Capabilities#supports_sub_queries? (method)">#supports_sub_queries?</a></span>
|
1629
|
+
<small>DWH::Capabilities</small>
|
1630
|
+
</div>
|
1631
|
+
</li>
|
1632
|
+
|
1633
|
+
|
1634
|
+
<li class="odd ">
|
1635
|
+
<div class="item">
|
1636
|
+
<span class='object_link'><a href="DWH/Capabilities.html#supports_table_join%3F-instance_method" title="DWH::Capabilities#supports_table_join? (method)">#supports_table_join?</a></span>
|
1637
|
+
<small>DWH::Capabilities</small>
|
1638
|
+
</div>
|
1639
|
+
</li>
|
1640
|
+
|
1641
|
+
|
1642
|
+
<li class="even ">
|
1643
|
+
<div class="item">
|
1644
|
+
<span class='object_link'><a href="DWH/Capabilities.html#supports_temp_tables%3F-instance_method" title="DWH::Capabilities#supports_temp_tables? (method)">#supports_temp_tables?</a></span>
|
1645
|
+
<small>DWH::Capabilities</small>
|
1646
|
+
</div>
|
1647
|
+
</li>
|
1648
|
+
|
1649
|
+
|
1650
|
+
<li class="odd ">
|
1651
|
+
<div class="item">
|
1652
|
+
<span class='object_link'><a href="DWH/Capabilities.html#supports_window_functions%3F-instance_method" title="DWH::Capabilities#supports_window_functions? (method)">#supports_window_functions?</a></span>
|
1653
|
+
<small>DWH::Capabilities</small>
|
1654
|
+
</div>
|
1655
|
+
</li>
|
1656
|
+
|
1657
|
+
|
1658
|
+
<li class="even ">
|
1659
|
+
<div class="item">
|
1660
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#table%3F-instance_method" title="DWH::Adapters::Adapter#table? (method)">#table?</a></span>
|
1661
|
+
<small>DWH::Adapters::Adapter</small>
|
1662
|
+
</div>
|
1663
|
+
</li>
|
1664
|
+
|
1665
|
+
|
1666
|
+
<li class="odd ">
|
1667
|
+
<div class="item">
|
1668
|
+
<span class='object_link'><a href="DWH/Adapters/Trino.html#table%3F-instance_method" title="DWH::Adapters::Trino#table? (method)">#table?</a></span>
|
1669
|
+
<small>DWH::Adapters::Trino</small>
|
1670
|
+
</div>
|
1671
|
+
</li>
|
1672
|
+
|
1673
|
+
|
1674
|
+
<li class="even ">
|
1675
|
+
<div class="item">
|
1676
|
+
<span class='object_link'><a href="DWH/Adapters/Postgres.html#table%3F-instance_method" title="DWH::Adapters::Postgres#table? (method)">#table?</a></span>
|
1677
|
+
<small>DWH::Adapters::Postgres</small>
|
1678
|
+
</div>
|
1679
|
+
</li>
|
1680
|
+
|
1681
|
+
|
1682
|
+
<li class="odd ">
|
1683
|
+
<div class="item">
|
1684
|
+
<span class='object_link'><a href="DWH/Adapters/SqlServer.html#table%3F-instance_method" title="DWH::Adapters::SqlServer#table? (method)">#table?</a></span>
|
1685
|
+
<small>DWH::Adapters::SqlServer</small>
|
1686
|
+
</div>
|
1687
|
+
</li>
|
1688
|
+
|
1689
|
+
|
1690
|
+
<li class="even ">
|
1691
|
+
<div class="item">
|
1692
|
+
<span class='object_link'><a href="DWH/Table.html#table_stats-instance_method" title="DWH::Table#table_stats (method)">#table_stats</a></span>
|
1693
|
+
<small>DWH::Table</small>
|
1694
|
+
</div>
|
1695
|
+
</li>
|
1696
|
+
|
1697
|
+
|
1698
|
+
<li class="odd ">
|
1699
|
+
<div class="item">
|
1700
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#tables-instance_method" title="DWH::Adapters::Adapter#tables (method)">#tables</a></span>
|
1701
|
+
<small>DWH::Adapters::Adapter</small>
|
1702
|
+
</div>
|
1703
|
+
</li>
|
1704
|
+
|
1705
|
+
|
1706
|
+
<li class="even ">
|
1707
|
+
<div class="item">
|
1708
|
+
<span class='object_link'><a href="DWH/Adapters/Druid.html#tables-instance_method" title="DWH::Adapters::Druid#tables (method)">#tables</a></span>
|
1709
|
+
<small>DWH::Adapters::Druid</small>
|
1710
|
+
</div>
|
1711
|
+
</li>
|
1712
|
+
|
1713
|
+
|
1714
|
+
<li class="odd ">
|
1715
|
+
<div class="item">
|
1716
|
+
<span class='object_link'><a href="DWH/Adapters/Trino.html#tables-instance_method" title="DWH::Adapters::Trino#tables (method)">#tables</a></span>
|
1717
|
+
<small>DWH::Adapters::Trino</small>
|
1718
|
+
</div>
|
1719
|
+
</li>
|
1720
|
+
|
1721
|
+
|
1722
|
+
<li class="even ">
|
1723
|
+
<div class="item">
|
1724
|
+
<span class='object_link'><a href="DWH/Adapters/Athena.html#tables-instance_method" title="DWH::Adapters::Athena#tables (method)">#tables</a></span>
|
1725
|
+
<small>DWH::Adapters::Athena</small>
|
1726
|
+
</div>
|
1727
|
+
</li>
|
1728
|
+
|
1729
|
+
|
1730
|
+
<li class="odd ">
|
1731
|
+
<div class="item">
|
1732
|
+
<span class='object_link'><a href="DWH/Adapters/MySql.html#tables-instance_method" title="DWH::Adapters::MySql#tables (method)">#tables</a></span>
|
1733
|
+
<small>DWH::Adapters::MySql</small>
|
1734
|
+
</div>
|
1735
|
+
</li>
|
1736
|
+
|
1737
|
+
|
1738
|
+
<li class="even ">
|
1739
|
+
<div class="item">
|
1740
|
+
<span class='object_link'><a href="DWH/Adapters/DuckDb.html#tables-instance_method" title="DWH::Adapters::DuckDb#tables (method)">#tables</a></span>
|
1741
|
+
<small>DWH::Adapters::DuckDb</small>
|
1742
|
+
</div>
|
1743
|
+
</li>
|
1744
|
+
|
1745
|
+
|
1746
|
+
<li class="odd ">
|
1747
|
+
<div class="item">
|
1748
|
+
<span class='object_link'><a href="DWH/Adapters/Postgres.html#tables-instance_method" title="DWH::Adapters::Postgres#tables (method)">#tables</a></span>
|
1749
|
+
<small>DWH::Adapters::Postgres</small>
|
1750
|
+
</div>
|
1751
|
+
</li>
|
1752
|
+
|
1753
|
+
|
1754
|
+
<li class="even ">
|
1755
|
+
<div class="item">
|
1756
|
+
<span class='object_link'><a href="DWH/Adapters/Snowflake.html#tables-instance_method" title="DWH::Adapters::Snowflake#tables (method)">#tables</a></span>
|
1757
|
+
<small>DWH::Adapters::Snowflake</small>
|
1758
|
+
</div>
|
1759
|
+
</li>
|
1760
|
+
|
1761
|
+
|
1762
|
+
<li class="odd ">
|
1763
|
+
<div class="item">
|
1764
|
+
<span class='object_link'><a href="DWH/Adapters/SqlServer.html#tables-instance_method" title="DWH::Adapters::SqlServer#tables (method)">#tables</a></span>
|
1765
|
+
<small>DWH::Adapters::SqlServer</small>
|
1766
|
+
</div>
|
1767
|
+
</li>
|
1768
|
+
|
1769
|
+
|
1770
|
+
<li class="even ">
|
1771
|
+
<div class="item">
|
1772
|
+
<span class='object_link'><a href="DWH/Behaviors.html#temp_table_prefix-instance_method" title="DWH::Behaviors#temp_table_prefix (method)">#temp_table_prefix</a></span>
|
1773
|
+
<small>DWH::Behaviors</small>
|
1774
|
+
</div>
|
1775
|
+
</li>
|
1776
|
+
|
1777
|
+
|
1778
|
+
<li class="odd ">
|
1779
|
+
<div class="item">
|
1780
|
+
<span class='object_link'><a href="DWH/Behaviors.html#temp_table_type-instance_method" title="DWH::Behaviors#temp_table_type (method)">#temp_table_type</a></span>
|
1781
|
+
<small>DWH::Behaviors</small>
|
1782
|
+
</div>
|
1783
|
+
</li>
|
1784
|
+
|
1785
|
+
|
1786
|
+
<li class="even ">
|
1787
|
+
<div class="item">
|
1788
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#test_connection-instance_method" title="DWH::Adapters::Adapter#test_connection (method)">#test_connection</a></span>
|
1789
|
+
<small>DWH::Adapters::Adapter</small>
|
1790
|
+
</div>
|
1791
|
+
</li>
|
1792
|
+
|
1793
|
+
|
1794
|
+
<li class="odd ">
|
1795
|
+
<div class="item">
|
1796
|
+
<span class='object_link'><a href="DWH/Adapters/Druid.html#test_connection-instance_method" title="DWH::Adapters::Druid#test_connection (method)">#test_connection</a></span>
|
1797
|
+
<small>DWH::Adapters::Druid</small>
|
1798
|
+
</div>
|
1799
|
+
</li>
|
1800
|
+
|
1801
|
+
|
1802
|
+
<li class="even ">
|
1803
|
+
<div class="item">
|
1804
|
+
<span class='object_link'><a href="DWH/Adapters/Trino.html#test_connection-instance_method" title="DWH::Adapters::Trino#test_connection (method)">#test_connection</a></span>
|
1805
|
+
<small>DWH::Adapters::Trino</small>
|
1806
|
+
</div>
|
1807
|
+
</li>
|
1808
|
+
|
1809
|
+
|
1810
|
+
<li class="odd ">
|
1811
|
+
<div class="item">
|
1812
|
+
<span class='object_link'><a href="DWH/Adapters/Athena.html#test_connection-instance_method" title="DWH::Adapters::Athena#test_connection (method)">#test_connection</a></span>
|
1813
|
+
<small>DWH::Adapters::Athena</small>
|
1814
|
+
</div>
|
1815
|
+
</li>
|
1816
|
+
|
1817
|
+
|
1818
|
+
<li class="even ">
|
1819
|
+
<div class="item">
|
1820
|
+
<span class='object_link'><a href="DWH/Adapters/MySql.html#test_connection-instance_method" title="DWH::Adapters::MySql#test_connection (method)">#test_connection</a></span>
|
1821
|
+
<small>DWH::Adapters::MySql</small>
|
1822
|
+
</div>
|
1823
|
+
</li>
|
1824
|
+
|
1825
|
+
|
1826
|
+
<li class="odd ">
|
1827
|
+
<div class="item">
|
1828
|
+
<span class='object_link'><a href="DWH/Adapters/DuckDb.html#test_connection-instance_method" title="DWH::Adapters::DuckDb#test_connection (method)">#test_connection</a></span>
|
1829
|
+
<small>DWH::Adapters::DuckDb</small>
|
1830
|
+
</div>
|
1831
|
+
</li>
|
1832
|
+
|
1833
|
+
|
1834
|
+
<li class="even ">
|
1835
|
+
<div class="item">
|
1836
|
+
<span class='object_link'><a href="DWH/Adapters/Postgres.html#test_connection-instance_method" title="DWH::Adapters::Postgres#test_connection (method)">#test_connection</a></span>
|
1837
|
+
<small>DWH::Adapters::Postgres</small>
|
1838
|
+
</div>
|
1839
|
+
</li>
|
1840
|
+
|
1841
|
+
|
1842
|
+
<li class="odd ">
|
1843
|
+
<div class="item">
|
1844
|
+
<span class='object_link'><a href="DWH/Adapters/Snowflake.html#test_connection-instance_method" title="DWH::Adapters::Snowflake#test_connection (method)">#test_connection</a></span>
|
1845
|
+
<small>DWH::Adapters::Snowflake</small>
|
1846
|
+
</div>
|
1847
|
+
</li>
|
1848
|
+
|
1849
|
+
|
1850
|
+
<li class="even ">
|
1851
|
+
<div class="item">
|
1852
|
+
<span class='object_link'><a href="DWH/Adapters/SqlServer.html#test_connection-instance_method" title="DWH::Adapters::SqlServer#test_connection (method)">#test_connection</a></span>
|
1853
|
+
<small>DWH::Adapters::SqlServer</small>
|
1854
|
+
</div>
|
1855
|
+
</li>
|
1856
|
+
|
1857
|
+
|
1858
|
+
<li class="odd ">
|
1859
|
+
<div class="item">
|
1860
|
+
<span class='object_link'><a href="DWH/Table.html#to_h-instance_method" title="DWH::Table#to_h (method)">#to_h</a></span>
|
1861
|
+
<small>DWH::Table</small>
|
1862
|
+
</div>
|
1863
|
+
</li>
|
1864
|
+
|
1865
|
+
|
1866
|
+
<li class="even ">
|
1867
|
+
<div class="item">
|
1868
|
+
<span class='object_link'><a href="DWH/Column.html#to_h-instance_method" title="DWH::Column#to_h (method)">#to_h</a></span>
|
1869
|
+
<small>DWH::Column</small>
|
1870
|
+
</div>
|
1871
|
+
</li>
|
1872
|
+
|
1873
|
+
|
1874
|
+
<li class="odd ">
|
1875
|
+
<div class="item">
|
1876
|
+
<span class='object_link'><a href="DWH/TableStats.html#to_h-instance_method" title="DWH::TableStats#to_h (method)">#to_h</a></span>
|
1877
|
+
<small>DWH::TableStats</small>
|
1878
|
+
</div>
|
1879
|
+
</li>
|
1880
|
+
|
1881
|
+
|
1882
|
+
<li class="even ">
|
1883
|
+
<div class="item">
|
1884
|
+
<span class='object_link'><a href="DWH/Column.html#to_s-instance_method" title="DWH::Column#to_s (method)">#to_s</a></span>
|
1885
|
+
<small>DWH::Column</small>
|
1886
|
+
</div>
|
1887
|
+
</li>
|
1888
|
+
|
1889
|
+
|
1890
|
+
<li class="odd ">
|
1891
|
+
<div class="item">
|
1892
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#token_expired%3F-instance_method" title="DWH::Adapters::Adapter#token_expired? (method)">#token_expired?</a></span>
|
1893
|
+
<small>DWH::Adapters::Adapter</small>
|
1894
|
+
</div>
|
1895
|
+
</li>
|
1896
|
+
|
1897
|
+
|
1898
|
+
<li class="even ">
|
1899
|
+
<div class="item">
|
1900
|
+
<span class='object_link'><a href="DWH/StreamingStats.html#total_rows-instance_method" title="DWH::StreamingStats#total_rows (method)">#total_rows</a></span>
|
1901
|
+
<small>DWH::StreamingStats</small>
|
1902
|
+
</div>
|
1903
|
+
</li>
|
1904
|
+
|
1905
|
+
|
1906
|
+
<li class="odd ">
|
1907
|
+
<div class="item">
|
1908
|
+
<span class='object_link'><a href="DWH/Functions.html#trim-instance_method" title="DWH::Functions#trim (method)">#trim</a></span>
|
1909
|
+
<small>DWH::Functions</small>
|
1910
|
+
</div>
|
1911
|
+
</li>
|
1912
|
+
|
1913
|
+
|
1914
|
+
<li class="even ">
|
1915
|
+
<div class="item">
|
1916
|
+
<span class='object_link'><a href="DWH/Adapters/MySql.html#truncate_date-instance_method" title="DWH::Adapters::MySql#truncate_date (method)">#truncate_date</a></span>
|
1917
|
+
<small>DWH::Adapters::MySql</small>
|
1918
|
+
</div>
|
1919
|
+
</li>
|
1920
|
+
|
1921
|
+
|
1922
|
+
<li class="odd ">
|
1923
|
+
<div class="item">
|
1924
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#truncate_date-instance_method" title="DWH::Functions::Dates#truncate_date (method)">#truncate_date</a></span>
|
1925
|
+
<small>DWH::Functions::Dates</small>
|
1926
|
+
</div>
|
1927
|
+
</li>
|
1928
|
+
|
1929
|
+
|
1930
|
+
<li class="even ">
|
1931
|
+
<div class="item">
|
1932
|
+
<span class='object_link'><a href="DWH/Factory.html#unregister-instance_method" title="DWH::Factory#unregister (method)">#unregister</a></span>
|
1933
|
+
<small>DWH::Factory</small>
|
1934
|
+
</div>
|
1935
|
+
</li>
|
1936
|
+
|
1937
|
+
|
1938
|
+
<li class="odd ">
|
1939
|
+
<div class="item">
|
1940
|
+
<span class='object_link'><a href="DWH/Functions.html#upper_case-instance_method" title="DWH::Functions#upper_case (method)">#upper_case</a></span>
|
1941
|
+
<small>DWH::Functions</small>
|
1942
|
+
</div>
|
1943
|
+
</li>
|
1944
|
+
|
1945
|
+
|
1946
|
+
<li class="even ">
|
1947
|
+
<div class="item">
|
1948
|
+
<span class='object_link'><a href="DWH/Settings.html#using_base_settings%3F-instance_method" title="DWH::Settings#using_base_settings? (method)">#using_base_settings?</a></span>
|
1949
|
+
<small>DWH::Settings</small>
|
1950
|
+
</div>
|
1951
|
+
</li>
|
1952
|
+
|
1953
|
+
|
1954
|
+
<li class="odd ">
|
1955
|
+
<div class="item">
|
1956
|
+
<span class='object_link'><a href="DWH/Adapters/Trino.html#valid_config%3F-instance_method" title="DWH::Adapters::Trino#valid_config? (method)">#valid_config?</a></span>
|
1957
|
+
<small>DWH::Adapters::Trino</small>
|
1958
|
+
</div>
|
1959
|
+
</li>
|
1960
|
+
|
1961
|
+
|
1962
|
+
<li class="even ">
|
1963
|
+
<div class="item">
|
1964
|
+
<span class='object_link'><a href="DWH/Adapters/Athena.html#valid_config%3F-instance_method" title="DWH::Adapters::Athena#valid_config? (method)">#valid_config?</a></span>
|
1965
|
+
<small>DWH::Adapters::Athena</small>
|
1966
|
+
</div>
|
1967
|
+
</li>
|
1968
|
+
|
1969
|
+
|
1970
|
+
<li class="odd ">
|
1971
|
+
<div class="item">
|
1972
|
+
<span class='object_link'><a href="DWH/Adapters/DuckDb.html#valid_config%3F-instance_method" title="DWH::Adapters::DuckDb#valid_config? (method)">#valid_config?</a></span>
|
1973
|
+
<small>DWH::Adapters::DuckDb</small>
|
1974
|
+
</div>
|
1975
|
+
</li>
|
1976
|
+
|
1977
|
+
|
1978
|
+
<li class="even ">
|
1979
|
+
<div class="item">
|
1980
|
+
<span class='object_link'><a href="DWH/Adapters/Postgres.html#valid_config%3F-instance_method" title="DWH::Adapters::Postgres#valid_config? (method)">#valid_config?</a></span>
|
1981
|
+
<small>DWH::Adapters::Postgres</small>
|
1982
|
+
</div>
|
1983
|
+
</li>
|
1984
|
+
|
1985
|
+
|
1986
|
+
<li class="odd ">
|
1987
|
+
<div class="item">
|
1988
|
+
<span class='object_link'><a href="DWH/Adapters/SqlServer.html#valid_config%3F-instance_method" title="DWH::Adapters::SqlServer#valid_config? (method)">#valid_config?</a></span>
|
1989
|
+
<small>DWH::Adapters::SqlServer</small>
|
1990
|
+
</div>
|
1991
|
+
</li>
|
1992
|
+
|
1993
|
+
|
1994
|
+
<li class="even ">
|
1995
|
+
<div class="item">
|
1996
|
+
<span class='object_link'><a href="DWH/Adapters/OpenAuthorizable.html#validate_oauth_config-instance_method" title="DWH::Adapters::OpenAuthorizable#validate_oauth_config (method)">#validate_oauth_config</a></span>
|
1997
|
+
<small>DWH::Adapters::OpenAuthorizable</small>
|
1998
|
+
</div>
|
1999
|
+
</li>
|
2000
|
+
|
2001
|
+
|
2002
|
+
<li class="odd ">
|
2003
|
+
<div class="item">
|
2004
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#week_start_day-instance_method" title="DWH::Functions::Dates#week_start_day (method)">#week_start_day</a></span>
|
2005
|
+
<small>DWH::Functions::Dates</small>
|
2006
|
+
</div>
|
2007
|
+
</li>
|
2008
|
+
|
2009
|
+
|
2010
|
+
<li class="even ">
|
2011
|
+
<div class="item">
|
2012
|
+
<span class='object_link'><a href="DWH/Functions/Dates.html#week_starts_on_sunday%3F-instance_method" title="DWH::Functions::Dates#week_starts_on_sunday? (method)">#week_starts_on_sunday?</a></span>
|
2013
|
+
<small>DWH::Functions::Dates</small>
|
2014
|
+
</div>
|
2015
|
+
</li>
|
2016
|
+
|
2017
|
+
|
2018
|
+
<li class="odd ">
|
2019
|
+
<div class="item">
|
2020
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#with_debug-instance_method" title="DWH::Adapters::Adapter#with_debug (method)">#with_debug</a></span>
|
2021
|
+
<small>DWH::Adapters::Adapter</small>
|
2022
|
+
</div>
|
2023
|
+
</li>
|
2024
|
+
|
2025
|
+
|
2026
|
+
<li class="even ">
|
2027
|
+
<div class="item">
|
2028
|
+
<span class='object_link'><a href="DWH/Adapters/Adapter.html#with_retry-instance_method" title="DWH::Adapters::Adapter#with_retry (method)">#with_retry</a></span>
|
2029
|
+
<small>DWH::Adapters::Adapter</small>
|
2030
|
+
</div>
|
2031
|
+
</li>
|
2032
|
+
|
2033
|
+
|
2034
|
+
|
2035
|
+
</ul>
|
2036
|
+
</div>
|
2037
|
+
</body>
|
2038
|
+
</html>
|