@truedat/dq 4.48.7 → 4.48.10
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.
- package/CHANGELOG.md +6 -0
- package/package.json +9 -4
- package/src/components/__tests__/NewRuleImplementation.spec.js +6 -6
- package/src/components/__tests__/RuleForm.spec.js +1 -1
- package/src/components/{__test_samples__ → __tests__/__fixtures__}/NewRuleImplementationProps.js +252 -283
- package/src/components/{__test_samples__ → __tests__/__fixtures__}/RuleForm.js +0 -0
- package/src/components/{__test_samples__ → __tests__/__fixtures__}/newRuleImplementationHelper.js +188 -429
- package/src/components/__tests__/__snapshots__/NewRuleImplementation.spec.js.snap +12 -12
- package/src/selectors/getRuleImplementationColumns.js +7 -0
package/src/components/{__test_samples__ → __tests__/__fixtures__}/NewRuleImplementationProps.js
RENAMED
|
@@ -39,12 +39,11 @@ export const newRuleImplementationProps = {
|
|
|
39
39
|
{
|
|
40
40
|
clauses: [],
|
|
41
41
|
structure: {
|
|
42
|
-
external_id:
|
|
43
|
-
"/home/alberto/projects/connectors/td-connector-txt-files/data/########_D_PELAYO_POLIZAS_20201202033016_I.txt",
|
|
42
|
+
external_id: "/data/example.txt",
|
|
44
43
|
id: 4814765,
|
|
45
44
|
metadata: {},
|
|
46
|
-
name: "
|
|
47
|
-
path: ["
|
|
45
|
+
name: "example.txt",
|
|
46
|
+
path: ["Main"],
|
|
48
47
|
system: {
|
|
49
48
|
external_id: "file_system",
|
|
50
49
|
id: 33,
|
|
@@ -57,20 +56,19 @@ export const newRuleImplementationProps = {
|
|
|
57
56
|
clauses: [
|
|
58
57
|
{
|
|
59
58
|
left: {
|
|
60
|
-
external_id:
|
|
61
|
-
"https://glue.eu-west-1.amazonaws.com/#/576759405678/cepsa-demo-s3/02_es_provincias/capital",
|
|
59
|
+
external_id: "https://example.com/bucket/table2/capital",
|
|
62
60
|
id: 4817541,
|
|
63
61
|
metadata: {
|
|
64
|
-
account: "
|
|
62
|
+
account: "123456789012",
|
|
65
63
|
data_type_class: "string",
|
|
66
|
-
database: "
|
|
67
|
-
order: "7.0",
|
|
68
|
-
region: "eu
|
|
69
|
-
tablename: "
|
|
64
|
+
database: "bucket",
|
|
65
|
+
metadata: { order: "7.0" },
|
|
66
|
+
region: "eu",
|
|
67
|
+
tablename: "table2",
|
|
70
68
|
type: "string",
|
|
71
69
|
},
|
|
72
70
|
name: "capital",
|
|
73
|
-
path: ["
|
|
71
|
+
path: ["bucket", "table2"],
|
|
74
72
|
system: {
|
|
75
73
|
external_id: "glue",
|
|
76
74
|
id: 94,
|
|
@@ -79,17 +77,13 @@ export const newRuleImplementationProps = {
|
|
|
79
77
|
type: "Column",
|
|
80
78
|
},
|
|
81
79
|
right: {
|
|
82
|
-
external_id:
|
|
83
|
-
"/home/alberto/projects/connectors/td-connector-txt-files/data/########_D_PELAYO_POLIZAS_20201202033016_I.txt[Aux. Externo]",
|
|
80
|
+
external_id: "/data/example.txt[external]",
|
|
84
81
|
id: 4814767,
|
|
85
82
|
metadata: {
|
|
86
|
-
order: "8",
|
|
83
|
+
metadata: { order: "8" },
|
|
87
84
|
},
|
|
88
|
-
name: "
|
|
89
|
-
path: [
|
|
90
|
-
"Area_Vida",
|
|
91
|
-
"########_D_PELAYO_POLIZAS_20201202033016_I.txt",
|
|
92
|
-
],
|
|
85
|
+
name: "external",
|
|
86
|
+
path: ["Main", "example.txt"],
|
|
93
87
|
system: {
|
|
94
88
|
external_id: "file_system",
|
|
95
89
|
id: 33,
|
|
@@ -100,18 +94,17 @@ export const newRuleImplementationProps = {
|
|
|
100
94
|
},
|
|
101
95
|
],
|
|
102
96
|
structure: {
|
|
103
|
-
external_id:
|
|
104
|
-
"https://glue.eu-west-1.amazonaws.com/#/576759405678/cepsa-demo-s3/02_es_provincias",
|
|
97
|
+
external_id: "https://example.com/bucket/table2",
|
|
105
98
|
id: 4817540,
|
|
106
99
|
metadata: {
|
|
107
|
-
account: "
|
|
100
|
+
account: "123456789012",
|
|
108
101
|
alias: "glue",
|
|
109
|
-
database: "
|
|
110
|
-
region: "eu
|
|
111
|
-
tablename: "
|
|
102
|
+
database: "bucket",
|
|
103
|
+
region: "eu",
|
|
104
|
+
tablename: "table2",
|
|
112
105
|
},
|
|
113
|
-
name: "
|
|
114
|
-
path: ["
|
|
106
|
+
name: "table2",
|
|
107
|
+
path: ["bucket"],
|
|
115
108
|
system: {
|
|
116
109
|
external_id: "glue",
|
|
117
110
|
id: 94,
|
|
@@ -138,20 +131,19 @@ export const newRuleImplementationProps = {
|
|
|
138
131
|
value_type: "field",
|
|
139
132
|
},
|
|
140
133
|
structure: {
|
|
141
|
-
external_id:
|
|
142
|
-
"https://glue.eu-west-1.amazonaws.com/#/576759405678/cepsa-demo-s3/02_es_provincias/descripcion",
|
|
134
|
+
external_id: "https://example.com/bucket/table2/descripcion",
|
|
143
135
|
id: 4817544,
|
|
144
136
|
metadata: {
|
|
145
|
-
account: "
|
|
137
|
+
account: "123456789012",
|
|
146
138
|
data_type_class: "string",
|
|
147
|
-
database: "
|
|
148
|
-
order: "2.0",
|
|
149
|
-
region: "eu
|
|
150
|
-
tablename: "
|
|
139
|
+
database: "bucket",
|
|
140
|
+
metadata: { order: "2.0" },
|
|
141
|
+
region: "eu",
|
|
142
|
+
tablename: "table2",
|
|
151
143
|
type: "string",
|
|
152
144
|
},
|
|
153
145
|
name: "descripcion",
|
|
154
|
-
path: ["
|
|
146
|
+
path: ["bucket", "table2"],
|
|
155
147
|
system: {
|
|
156
148
|
external_id: "glue",
|
|
157
149
|
id: 94,
|
|
@@ -161,17 +153,13 @@ export const newRuleImplementationProps = {
|
|
|
161
153
|
},
|
|
162
154
|
value: [
|
|
163
155
|
{
|
|
164
|
-
external_id:
|
|
165
|
-
"/home/alberto/projects/connectors/td-connector-txt-files/data/########_D_PELAYO_POLIZAS_20201202033016_I.txt[Aux. Externo]",
|
|
156
|
+
external_id: "/data/example.txt[external]",
|
|
166
157
|
id: 4814767,
|
|
167
158
|
metadata: {
|
|
168
|
-
order: "8",
|
|
159
|
+
metadata: { order: "8" },
|
|
169
160
|
},
|
|
170
|
-
name: "
|
|
171
|
-
path: [
|
|
172
|
-
"Area_Vida",
|
|
173
|
-
"########_D_PELAYO_POLIZAS_20201202033016_I.txt",
|
|
174
|
-
],
|
|
161
|
+
name: "external",
|
|
162
|
+
path: ["Main", "example.txt"],
|
|
175
163
|
system: {
|
|
176
164
|
external_id: "file_system",
|
|
177
165
|
id: 33,
|
|
@@ -217,14 +205,13 @@ export const newRuleImplementationProps = {
|
|
|
217
205
|
value_type: "number",
|
|
218
206
|
},
|
|
219
207
|
structure: {
|
|
220
|
-
external_id:
|
|
221
|
-
"/home/alberto/projects/connectors/td-connector-txt-files/data/########_D_PELAYO_POLIZAS_20201202033016_I.txt[Agencia]",
|
|
208
|
+
external_id: "/data/example.txt[agent]",
|
|
222
209
|
id: 4814766,
|
|
223
210
|
metadata: {
|
|
224
|
-
order: "6",
|
|
211
|
+
metadata: { order: "6" },
|
|
225
212
|
},
|
|
226
|
-
name: "
|
|
227
|
-
path: ["
|
|
213
|
+
name: "agent",
|
|
214
|
+
path: ["Main", "example.txt"],
|
|
228
215
|
system: {
|
|
229
216
|
external_id: "file_system",
|
|
230
217
|
id: 33,
|
|
@@ -242,11 +229,10 @@ export const newRuleImplementationProps = {
|
|
|
242
229
|
segments: [
|
|
243
230
|
{
|
|
244
231
|
structure: {
|
|
245
|
-
external_id:
|
|
246
|
-
"/home/alberto/projects/connectors/td-connector-txt-files/data/########_D_PELAYO_POLIZAS_20201202033016_I.txt[Agencia]",
|
|
232
|
+
external_id: "/data/example.txt[agent]",
|
|
247
233
|
id: 4814766,
|
|
248
|
-
name: "
|
|
249
|
-
path: ["
|
|
234
|
+
name: "agent",
|
|
235
|
+
path: ["Main", "example.txt"],
|
|
250
236
|
system: {
|
|
251
237
|
external_id: "file_system",
|
|
252
238
|
id: 33,
|
|
@@ -269,411 +255,384 @@ export const newRuleImplementationProps = {
|
|
|
269
255
|
data_structure_id: 4814796,
|
|
270
256
|
deleted_at: null,
|
|
271
257
|
description: null,
|
|
272
|
-
has_note: false,
|
|
273
258
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
274
259
|
links: [],
|
|
275
260
|
name: "T.Solicitud 72",
|
|
276
|
-
order: "33",
|
|
261
|
+
metadata: { order: "33" },
|
|
277
262
|
type: "Column",
|
|
278
263
|
},
|
|
279
264
|
{
|
|
280
265
|
data_structure_id: 4814795,
|
|
281
266
|
deleted_at: null,
|
|
282
267
|
description: null,
|
|
283
|
-
has_note: false,
|
|
284
268
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
285
269
|
links: [],
|
|
286
270
|
name: "T.Docum. Idend.",
|
|
287
|
-
order: "23",
|
|
271
|
+
metadata: { order: "23" },
|
|
288
272
|
type: "Column",
|
|
289
273
|
},
|
|
290
274
|
{
|
|
291
275
|
data_structure_id: 4814792,
|
|
292
276
|
deleted_at: null,
|
|
293
277
|
description: null,
|
|
294
|
-
has_note: false,
|
|
295
278
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
296
279
|
links: [],
|
|
297
280
|
name: "Revalorización",
|
|
298
|
-
order: "28",
|
|
281
|
+
metadata: { order: "28" },
|
|
299
282
|
type: "Column",
|
|
300
283
|
},
|
|
301
284
|
{
|
|
302
285
|
data_structure_id: 4814777,
|
|
303
286
|
deleted_at: null,
|
|
304
287
|
description: null,
|
|
305
|
-
has_note: false,
|
|
306
288
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
307
289
|
links: [],
|
|
308
290
|
name: "F.Mes Alta",
|
|
309
|
-
order: "17",
|
|
291
|
+
metadata: { order: "17" },
|
|
310
292
|
type: "Column",
|
|
311
293
|
},
|
|
312
294
|
{
|
|
313
295
|
data_structure_id: 4814773,
|
|
314
296
|
deleted_at: null,
|
|
315
297
|
description: null,
|
|
316
|
-
has_note: false,
|
|
317
298
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
318
299
|
links: [],
|
|
319
300
|
name: "F. Grabacion",
|
|
320
|
-
order: "13",
|
|
301
|
+
metadata: { order: "13" },
|
|
321
302
|
type: "Column",
|
|
322
303
|
},
|
|
323
304
|
{
|
|
324
305
|
data_structure_id: 4814785,
|
|
325
306
|
deleted_at: null,
|
|
326
307
|
description: null,
|
|
327
|
-
has_note: false,
|
|
328
308
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
329
309
|
links: [],
|
|
330
310
|
name: "Modalidad",
|
|
331
|
-
order: "3",
|
|
311
|
+
metadata: { order: "3" },
|
|
332
312
|
type: "Column",
|
|
333
313
|
},
|
|
334
314
|
{
|
|
335
315
|
data_structure_id: 4814794,
|
|
336
316
|
deleted_at: null,
|
|
337
317
|
description: null,
|
|
338
|
-
has_note: false,
|
|
339
318
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
340
319
|
links: [],
|
|
341
320
|
name: "T. Primas Pagadas",
|
|
342
|
-
order: "30",
|
|
321
|
+
metadata: { order: "30" },
|
|
343
322
|
type: "Column",
|
|
344
323
|
},
|
|
345
324
|
{
|
|
346
325
|
data_structure_id: 4814772,
|
|
347
326
|
deleted_at: null,
|
|
348
327
|
description: null,
|
|
349
|
-
has_note: false,
|
|
350
328
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
351
329
|
links: [],
|
|
352
330
|
name: "Est.Poliza",
|
|
353
|
-
order: "19",
|
|
331
|
+
metadata: { order: "19" },
|
|
354
332
|
type: "Column",
|
|
355
333
|
},
|
|
356
334
|
{
|
|
357
335
|
data_structure_id: 4814779,
|
|
358
336
|
deleted_at: null,
|
|
359
337
|
description: null,
|
|
360
|
-
has_note: false,
|
|
361
338
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
362
339
|
links: [],
|
|
363
340
|
name: "F.Nacimiento",
|
|
364
|
-
order: "25",
|
|
341
|
+
metadata: { order: "25" },
|
|
365
342
|
type: "Column",
|
|
366
343
|
},
|
|
367
344
|
{
|
|
368
345
|
data_structure_id: 4814770,
|
|
369
346
|
deleted_at: null,
|
|
370
347
|
description: null,
|
|
371
|
-
has_note: false,
|
|
372
348
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
373
349
|
links: [],
|
|
374
350
|
name: "Duración",
|
|
375
|
-
order: "27",
|
|
351
|
+
metadata: { order: "27" },
|
|
376
352
|
type: "Column",
|
|
377
353
|
},
|
|
378
354
|
{
|
|
379
355
|
data_structure_id: 4814768,
|
|
380
356
|
deleted_at: null,
|
|
381
357
|
description: null,
|
|
382
|
-
has_note: false,
|
|
383
358
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
384
359
|
links: [],
|
|
385
360
|
name: "Causa Estado Baja",
|
|
386
|
-
order: "20",
|
|
361
|
+
metadata: { order: "20" },
|
|
387
362
|
type: "Column",
|
|
388
363
|
},
|
|
389
364
|
{
|
|
390
365
|
data_structure_id: 4814776,
|
|
391
366
|
deleted_at: null,
|
|
392
367
|
description: null,
|
|
393
|
-
has_note: false,
|
|
394
368
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
395
369
|
links: [],
|
|
396
370
|
name: "F.Emision",
|
|
397
|
-
order: "14",
|
|
371
|
+
metadata: { order: "14" },
|
|
398
372
|
type: "Column",
|
|
399
373
|
},
|
|
400
374
|
{
|
|
401
375
|
data_structure_id: 4814789,
|
|
402
376
|
deleted_at: null,
|
|
403
377
|
description: null,
|
|
404
|
-
has_note: false,
|
|
405
378
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
406
379
|
links: [],
|
|
407
380
|
name: "NºPóliza",
|
|
408
|
-
order: "5",
|
|
381
|
+
metadata: { order: "5" },
|
|
409
382
|
type: "Column",
|
|
410
383
|
},
|
|
411
384
|
{
|
|
412
385
|
data_structure_id: 4814780,
|
|
413
386
|
deleted_at: null,
|
|
414
387
|
description: null,
|
|
415
|
-
has_note: false,
|
|
416
388
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
417
389
|
links: [],
|
|
418
390
|
name: "F.Pre.Baja",
|
|
419
|
-
order: "21",
|
|
391
|
+
metadata: { order: "21" },
|
|
420
392
|
type: "Column",
|
|
421
393
|
},
|
|
422
394
|
{
|
|
423
395
|
data_structure_id: 4814786,
|
|
424
396
|
deleted_at: null,
|
|
425
397
|
description: null,
|
|
426
|
-
has_note: false,
|
|
427
398
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
428
399
|
links: [],
|
|
429
400
|
name: "Nidgrdat",
|
|
430
|
-
order: "4",
|
|
401
|
+
metadata: { order: "4" },
|
|
431
402
|
type: "Column",
|
|
432
403
|
},
|
|
433
404
|
{
|
|
434
405
|
data_structure_id: 4814781,
|
|
435
406
|
deleted_at: null,
|
|
436
407
|
description: null,
|
|
437
|
-
has_note: false,
|
|
438
408
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
439
409
|
links: [],
|
|
440
410
|
name: "Fecha",
|
|
441
|
-
order: "1",
|
|
411
|
+
metadata: { order: "1" },
|
|
442
412
|
type: "Column",
|
|
443
413
|
},
|
|
444
414
|
{
|
|
445
415
|
data_structure_id: 4814791,
|
|
446
416
|
deleted_at: null,
|
|
447
417
|
description: null,
|
|
448
|
-
has_note: false,
|
|
449
418
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
450
419
|
links: [],
|
|
451
420
|
name: "Red Venta",
|
|
452
|
-
order: "9",
|
|
421
|
+
metadata: { order: "9" },
|
|
453
422
|
type: "Column",
|
|
454
423
|
},
|
|
455
424
|
{
|
|
456
425
|
data_structure_id: 4814788,
|
|
457
426
|
deleted_at: null,
|
|
458
427
|
description: null,
|
|
459
|
-
has_note: false,
|
|
460
428
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
461
429
|
links: [],
|
|
462
430
|
name: "NºPóliza 72",
|
|
463
|
-
order: "32",
|
|
431
|
+
metadata: { order: "32" },
|
|
464
432
|
type: "Column",
|
|
465
433
|
},
|
|
466
434
|
{
|
|
467
435
|
data_structure_id: 4814766,
|
|
468
436
|
deleted_at: null,
|
|
469
437
|
description: null,
|
|
470
|
-
has_note: false,
|
|
471
438
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
472
439
|
links: [],
|
|
473
|
-
name: "
|
|
474
|
-
order: "6",
|
|
440
|
+
name: "agent",
|
|
441
|
+
metadata: { order: "6" },
|
|
475
442
|
type: "Column",
|
|
476
443
|
},
|
|
477
444
|
{
|
|
478
445
|
data_structure_id: 4814784,
|
|
479
446
|
deleted_at: null,
|
|
480
447
|
description: null,
|
|
481
|
-
has_note: false,
|
|
482
448
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
483
449
|
links: [],
|
|
484
450
|
name: "Importe Actual",
|
|
485
|
-
order: "22",
|
|
451
|
+
metadata: { order: "22" },
|
|
486
452
|
type: "Column",
|
|
487
453
|
},
|
|
488
454
|
{
|
|
489
455
|
data_structure_id: 4814798,
|
|
490
456
|
deleted_at: null,
|
|
491
457
|
description: null,
|
|
492
|
-
has_note: false,
|
|
493
458
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
494
459
|
links: [],
|
|
495
460
|
name: "Uni.Cuenta",
|
|
496
|
-
order: "31",
|
|
461
|
+
metadata: { order: "31" },
|
|
497
462
|
type: "Column",
|
|
498
463
|
},
|
|
499
464
|
{
|
|
500
465
|
data_structure_id: 4814782,
|
|
501
466
|
deleted_at: null,
|
|
502
467
|
description: null,
|
|
503
|
-
has_note: false,
|
|
504
468
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
505
469
|
links: [],
|
|
506
470
|
name: "Fondo Acumulado",
|
|
507
|
-
order: "29",
|
|
471
|
+
metadata: { order: "29" },
|
|
508
472
|
type: "Column",
|
|
509
473
|
},
|
|
510
474
|
{
|
|
511
475
|
data_structure_id: 4814787,
|
|
512
476
|
deleted_at: null,
|
|
513
477
|
description: null,
|
|
514
|
-
has_note: false,
|
|
515
478
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
516
479
|
links: [],
|
|
517
480
|
name: "NºOferta",
|
|
518
|
-
order: "12",
|
|
481
|
+
metadata: { order: "12" },
|
|
519
482
|
type: "Column",
|
|
520
483
|
},
|
|
521
484
|
{
|
|
522
485
|
data_structure_id: 4814778,
|
|
523
486
|
deleted_at: null,
|
|
524
487
|
description: null,
|
|
525
|
-
has_note: false,
|
|
526
488
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
527
489
|
links: [],
|
|
528
490
|
name: "F.Mes Baja",
|
|
529
|
-
order: "18",
|
|
491
|
+
metadata: { order: "18" },
|
|
530
492
|
type: "Column",
|
|
531
493
|
},
|
|
532
494
|
{
|
|
533
495
|
data_structure_id: 4814793,
|
|
534
496
|
deleted_at: null,
|
|
535
497
|
description: null,
|
|
536
|
-
has_note: false,
|
|
537
498
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
538
499
|
links: [],
|
|
539
500
|
name: "Sociedad Mediación",
|
|
540
|
-
order: "7",
|
|
501
|
+
metadata: { order: "7" },
|
|
541
502
|
type: "Column",
|
|
542
503
|
},
|
|
543
504
|
{
|
|
544
505
|
data_structure_id: 4814774,
|
|
545
506
|
deleted_at: null,
|
|
546
507
|
description: null,
|
|
547
|
-
has_note: false,
|
|
548
508
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
549
509
|
links: [],
|
|
550
510
|
name: "F.Efecto Baja",
|
|
551
|
-
order: "16",
|
|
511
|
+
metadata: { order: "16" },
|
|
552
512
|
type: "Column",
|
|
553
513
|
},
|
|
554
514
|
{
|
|
555
515
|
data_structure_id: 4814771,
|
|
556
516
|
deleted_at: null,
|
|
557
517
|
description: null,
|
|
558
|
-
has_note: false,
|
|
559
518
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
560
519
|
links: [],
|
|
561
520
|
name: "Empleado",
|
|
562
|
-
order: "26",
|
|
521
|
+
metadata: { order: "26" },
|
|
563
522
|
type: "Column",
|
|
564
523
|
},
|
|
565
524
|
{
|
|
566
525
|
data_structure_id: 4814790,
|
|
567
526
|
deleted_at: null,
|
|
568
527
|
description: null,
|
|
569
|
-
has_note: false,
|
|
570
528
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
571
529
|
links: [],
|
|
572
530
|
name: "Ramo",
|
|
573
|
-
order: "2",
|
|
531
|
+
metadata: { order: "2" },
|
|
574
532
|
type: "Column",
|
|
575
533
|
},
|
|
576
534
|
{
|
|
577
535
|
data_structure_id: 4814767,
|
|
578
536
|
deleted_at: null,
|
|
579
537
|
description: null,
|
|
580
|
-
has_note: false,
|
|
581
538
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
582
539
|
links: [],
|
|
583
|
-
name: "
|
|
584
|
-
order: "8",
|
|
540
|
+
name: "external",
|
|
541
|
+
metadata: { order: "8" },
|
|
585
542
|
type: "Column",
|
|
586
543
|
},
|
|
587
544
|
{
|
|
588
545
|
data_structure_id: 4814797,
|
|
589
546
|
deleted_at: null,
|
|
590
547
|
description: null,
|
|
591
|
-
has_note: false,
|
|
592
548
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
593
549
|
links: [],
|
|
594
550
|
name: "T.Solicitud",
|
|
595
|
-
order: "11",
|
|
551
|
+
metadata: { order: "11" },
|
|
596
552
|
type: "Column",
|
|
597
553
|
},
|
|
598
554
|
{
|
|
599
555
|
data_structure_id: 4814775,
|
|
600
556
|
deleted_at: null,
|
|
601
557
|
description: null,
|
|
602
|
-
has_note: false,
|
|
603
558
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
604
559
|
links: [],
|
|
605
560
|
name: "F.Efecto",
|
|
606
|
-
order: "15",
|
|
561
|
+
metadata: { order: "15" },
|
|
607
562
|
type: "Column",
|
|
608
563
|
},
|
|
609
564
|
{
|
|
610
565
|
data_structure_id: 4814769,
|
|
611
566
|
deleted_at: null,
|
|
612
567
|
description: null,
|
|
613
|
-
has_note: false,
|
|
614
568
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
615
569
|
links: [],
|
|
616
570
|
name: "D.N.I.",
|
|
617
|
-
order: "24",
|
|
571
|
+
metadata: { order: "24" },
|
|
618
572
|
type: "Column",
|
|
619
573
|
},
|
|
620
574
|
{
|
|
621
575
|
data_structure_id: 4814783,
|
|
622
576
|
deleted_at: null,
|
|
623
577
|
description: null,
|
|
624
|
-
has_note: false,
|
|
625
578
|
inserted_at: "2021-04-15T15:13:31.000000Z",
|
|
626
579
|
links: [],
|
|
627
580
|
name: "Forma Pago",
|
|
628
|
-
order: "10",
|
|
581
|
+
metadata: { order: "10" },
|
|
629
582
|
type: "Column",
|
|
630
583
|
},
|
|
631
584
|
],
|
|
632
585
|
4817540: [
|
|
633
586
|
{
|
|
634
|
-
account: "576759405678",
|
|
635
587
|
data_structure_id: 4817554,
|
|
636
588
|
data_type_class: "string",
|
|
637
|
-
database: "cepsa-demo-s3",
|
|
638
589
|
deleted_at: null,
|
|
639
590
|
description: null,
|
|
640
|
-
has_note: false,
|
|
641
591
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
642
592
|
links: [],
|
|
643
593
|
name: "tipo_prv",
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
594
|
+
metadata: {
|
|
595
|
+
account: "123456789012",
|
|
596
|
+
database: "bucket",
|
|
597
|
+
order: "9.0",
|
|
598
|
+
region: "eu",
|
|
599
|
+
tablename: "table2",
|
|
600
|
+
type: "string",
|
|
601
|
+
},
|
|
648
602
|
},
|
|
649
603
|
{
|
|
650
|
-
account: "576759405678",
|
|
651
604
|
data_structure_id: 4817552,
|
|
652
605
|
data_type_class: "string",
|
|
653
|
-
database: "cepsa-demo-s3",
|
|
654
606
|
deleted_at: null,
|
|
655
607
|
description: null,
|
|
656
|
-
has_note: false,
|
|
657
608
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
658
609
|
links: [],
|
|
659
610
|
name: "prc",
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
611
|
+
metadata: {
|
|
612
|
+
account: "123456789012",
|
|
613
|
+
database: "bucket",
|
|
614
|
+
order: "4.0",
|
|
615
|
+
region: "eu",
|
|
616
|
+
tablename: "table2",
|
|
617
|
+
type: "string",
|
|
618
|
+
},
|
|
664
619
|
},
|
|
665
620
|
{
|
|
666
|
-
account: "576759405678",
|
|
667
621
|
data_structure_id: 4817551,
|
|
668
622
|
data_type_class: "string",
|
|
669
|
-
database: "cepsa-demo-s3",
|
|
670
623
|
deleted_at: null,
|
|
671
624
|
description: null,
|
|
672
|
-
has_note: false,
|
|
673
625
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
674
626
|
links: [],
|
|
627
|
+
metadata: {
|
|
628
|
+
account: "123456789012",
|
|
629
|
+
database: "bucket",
|
|
630
|
+
order: "3.0",
|
|
631
|
+
region: "eu",
|
|
632
|
+
tablename: "table2",
|
|
633
|
+
type: "string",
|
|
634
|
+
},
|
|
675
635
|
name: "matricula",
|
|
676
|
-
order: "3.0",
|
|
677
636
|
profile: {
|
|
678
637
|
max: "ZA",
|
|
679
638
|
most_frequent: [
|
|
@@ -762,198 +721,210 @@ export const newRuleImplementationProps = {
|
|
|
762
721
|
total_count: 128,
|
|
763
722
|
unique_count: 53,
|
|
764
723
|
},
|
|
765
|
-
region: "eu-west-1",
|
|
766
|
-
tablename: "02_es_provincias",
|
|
767
|
-
type: "string",
|
|
768
724
|
},
|
|
769
725
|
{
|
|
770
|
-
account: "576759405678",
|
|
771
726
|
data_structure_id: 4817547,
|
|
772
727
|
data_type_class: "number",
|
|
773
|
-
database: "cepsa-demo-s3",
|
|
774
728
|
deleted_at: null,
|
|
775
729
|
description: null,
|
|
776
|
-
has_note: false,
|
|
777
730
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
778
731
|
links: [],
|
|
779
732
|
name: "id_provincia",
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
733
|
+
metadata: {
|
|
734
|
+
account: "123456789012",
|
|
735
|
+
database: "bucket",
|
|
736
|
+
order: "1.0",
|
|
737
|
+
region: "eu",
|
|
738
|
+
tablename: "table2",
|
|
739
|
+
type: "bigint",
|
|
740
|
+
},
|
|
784
741
|
},
|
|
785
742
|
{
|
|
786
|
-
account: "576759405678",
|
|
787
743
|
data_structure_id: 4817548,
|
|
788
744
|
data_type_class: "number",
|
|
789
|
-
database: "cepsa-demo-s3",
|
|
790
745
|
deleted_at: null,
|
|
791
746
|
description: null,
|
|
792
|
-
has_note: false,
|
|
793
747
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
794
748
|
links: [],
|
|
795
749
|
name: "id_zona",
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
750
|
+
metadata: {
|
|
751
|
+
account: "123456789012",
|
|
752
|
+
database: "bucket",
|
|
753
|
+
order: "12.0",
|
|
754
|
+
region: "eu",
|
|
755
|
+
tablename: "table2",
|
|
756
|
+
type: "bigint",
|
|
757
|
+
},
|
|
800
758
|
},
|
|
801
759
|
{
|
|
802
|
-
account: "576759405678",
|
|
803
760
|
data_structure_id: 4817544,
|
|
804
761
|
data_type_class: "string",
|
|
805
|
-
database: "cepsa-demo-s3",
|
|
806
762
|
deleted_at: null,
|
|
807
763
|
description: null,
|
|
808
|
-
has_note: false,
|
|
809
764
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
810
765
|
links: [],
|
|
811
766
|
name: "descripcion",
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
767
|
+
metadata: {
|
|
768
|
+
account: "123456789012",
|
|
769
|
+
database: "bucket",
|
|
770
|
+
order: "2.0",
|
|
771
|
+
region: "eu",
|
|
772
|
+
tablename: "table2",
|
|
773
|
+
type: "string",
|
|
774
|
+
},
|
|
816
775
|
},
|
|
817
776
|
{
|
|
818
|
-
account: "576759405678",
|
|
819
777
|
data_structure_id: 4817553,
|
|
820
778
|
data_type_class: "number",
|
|
821
|
-
database: "cepsa-demo-s3",
|
|
822
779
|
deleted_at: null,
|
|
823
780
|
description: null,
|
|
824
|
-
has_note: false,
|
|
825
781
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
826
782
|
links: [],
|
|
827
783
|
name: "prefijo",
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
784
|
+
metadata: {
|
|
785
|
+
account: "123456789012",
|
|
786
|
+
database: "bucket",
|
|
787
|
+
order: "5.0",
|
|
788
|
+
region: "eu",
|
|
789
|
+
tablename: "table2",
|
|
790
|
+
type: "bigint",
|
|
791
|
+
},
|
|
832
792
|
},
|
|
833
793
|
{
|
|
834
|
-
account: "576759405678",
|
|
835
794
|
data_structure_id: 4817543,
|
|
836
795
|
data_type_class: "string",
|
|
837
|
-
database: "cepsa-demo-s3",
|
|
838
796
|
deleted_at: null,
|
|
839
797
|
description: null,
|
|
840
|
-
has_note: false,
|
|
841
798
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
842
799
|
links: [],
|
|
843
800
|
name: "creator",
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
801
|
+
metadata: {
|
|
802
|
+
account: "123456789012",
|
|
803
|
+
database: "bucket",
|
|
804
|
+
order: "13.0",
|
|
805
|
+
region: "eu",
|
|
806
|
+
tablename: "table2",
|
|
807
|
+
type: "string",
|
|
808
|
+
},
|
|
848
809
|
},
|
|
849
810
|
{
|
|
850
|
-
account: "576759405678",
|
|
851
811
|
data_structure_id: 4817549,
|
|
852
812
|
data_type_class: "number",
|
|
853
|
-
database: "cepsa-demo-s3",
|
|
854
813
|
deleted_at: null,
|
|
855
814
|
description: null,
|
|
856
|
-
has_note: false,
|
|
857
815
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
858
816
|
links: [],
|
|
859
817
|
name: "id_zona_ced",
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
818
|
+
metadata: {
|
|
819
|
+
account: "123456789012",
|
|
820
|
+
database: "bucket",
|
|
821
|
+
order: "11.0",
|
|
822
|
+
region: "eu",
|
|
823
|
+
tablename: "table2",
|
|
824
|
+
type: "bigint",
|
|
825
|
+
},
|
|
864
826
|
},
|
|
865
827
|
{
|
|
866
|
-
account: "576759405678",
|
|
867
828
|
data_structure_id: 4817555,
|
|
868
829
|
data_type_class: "string",
|
|
869
|
-
database: "cepsa-demo-s3",
|
|
870
830
|
deleted_at: null,
|
|
871
831
|
description: null,
|
|
872
|
-
has_note: false,
|
|
873
832
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
874
833
|
links: [],
|
|
834
|
+
metadata: {
|
|
835
|
+
account: "123456789012",
|
|
836
|
+
database: "bucket",
|
|
837
|
+
order: "16.0",
|
|
838
|
+
region: "eu",
|
|
839
|
+
tablename: "table2",
|
|
840
|
+
type: "string",
|
|
841
|
+
},
|
|
875
842
|
name: "updating_date",
|
|
876
|
-
order: "16.0",
|
|
877
|
-
region: "eu-west-1",
|
|
878
|
-
tablename: "02_es_provincias",
|
|
879
|
-
type: "string",
|
|
880
843
|
},
|
|
881
844
|
{
|
|
882
|
-
account: "576759405678",
|
|
883
845
|
data_structure_id: 4817556,
|
|
884
846
|
data_type_class: "string",
|
|
885
|
-
database: "cepsa-demo-s3",
|
|
886
847
|
deleted_at: null,
|
|
887
848
|
description: null,
|
|
888
|
-
has_note: false,
|
|
889
849
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
890
850
|
links: [],
|
|
851
|
+
metadata: {
|
|
852
|
+
account: "123456789012",
|
|
853
|
+
database: "bucket",
|
|
854
|
+
order: "8.0",
|
|
855
|
+
region: "eu",
|
|
856
|
+
tablename: "table2",
|
|
857
|
+
type: "string",
|
|
858
|
+
},
|
|
891
859
|
name: "zon_pin",
|
|
892
|
-
order: "8.0",
|
|
893
|
-
region: "eu-west-1",
|
|
894
|
-
tablename: "02_es_provincias",
|
|
895
|
-
type: "string",
|
|
896
860
|
},
|
|
897
861
|
{
|
|
898
|
-
account: "576759405678",
|
|
899
862
|
data_structure_id: 4817546,
|
|
900
863
|
data_type_class: "number",
|
|
901
|
-
database: "cepsa-demo-s3",
|
|
902
864
|
deleted_at: null,
|
|
903
865
|
description: null,
|
|
904
|
-
has_note: false,
|
|
905
866
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
906
867
|
links: [],
|
|
868
|
+
metadata: {
|
|
869
|
+
account: "123456789012",
|
|
870
|
+
database: "bucket",
|
|
871
|
+
order: "10.0",
|
|
872
|
+
region: "eu",
|
|
873
|
+
tablename: "table2",
|
|
874
|
+
type: "bigint",
|
|
875
|
+
},
|
|
907
876
|
name: "id_pais",
|
|
908
|
-
order: "10.0",
|
|
909
|
-
region: "eu-west-1",
|
|
910
|
-
tablename: "02_es_provincias",
|
|
911
|
-
type: "bigint",
|
|
912
877
|
},
|
|
913
878
|
{
|
|
914
|
-
account: "576759405678",
|
|
915
879
|
data_structure_id: 4817550,
|
|
916
880
|
data_type_class: "string",
|
|
917
|
-
database: "cepsa-demo-s3",
|
|
918
881
|
deleted_at: null,
|
|
919
882
|
description: null,
|
|
920
|
-
has_note: false,
|
|
921
883
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
922
884
|
links: [],
|
|
885
|
+
metadata: {
|
|
886
|
+
account: "123456789012",
|
|
887
|
+
database: "bucket",
|
|
888
|
+
order: "15.0",
|
|
889
|
+
region: "eu",
|
|
890
|
+
tablename: "table2",
|
|
891
|
+
type: "string",
|
|
892
|
+
},
|
|
923
893
|
name: "last_updator",
|
|
924
|
-
order: "15.0",
|
|
925
|
-
region: "eu-west-1",
|
|
926
|
-
tablename: "02_es_provincias",
|
|
927
|
-
type: "string",
|
|
928
894
|
},
|
|
929
895
|
{
|
|
930
|
-
account: "576759405678",
|
|
931
896
|
data_structure_id: 4817542,
|
|
932
897
|
data_type_class: "string",
|
|
933
|
-
database: "cepsa-demo-s3",
|
|
934
898
|
deleted_at: null,
|
|
935
899
|
description: null,
|
|
936
|
-
has_note: false,
|
|
937
900
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
938
901
|
links: [],
|
|
902
|
+
metadata: {
|
|
903
|
+
account: "123456789012",
|
|
904
|
+
database: "bucket",
|
|
905
|
+
order: "14.0",
|
|
906
|
+
region: "eu",
|
|
907
|
+
tablename: "table2",
|
|
908
|
+
type: "string",
|
|
909
|
+
},
|
|
939
910
|
name: "creation_date",
|
|
940
|
-
order: "14.0",
|
|
941
|
-
region: "eu-west-1",
|
|
942
|
-
tablename: "02_es_provincias",
|
|
943
|
-
type: "string",
|
|
944
911
|
},
|
|
945
912
|
{
|
|
946
|
-
account: "576759405678",
|
|
947
913
|
data_structure_id: 4817541,
|
|
948
914
|
data_type_class: "string",
|
|
949
|
-
database: "cepsa-demo-s3",
|
|
950
915
|
deleted_at: null,
|
|
951
916
|
description: null,
|
|
952
|
-
has_note: false,
|
|
953
917
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
954
918
|
links: [],
|
|
919
|
+
metadata: {
|
|
920
|
+
account: "123456789012",
|
|
921
|
+
database: "bucket",
|
|
922
|
+
order: "7.0",
|
|
923
|
+
region: "eu",
|
|
924
|
+
tablename: "table2",
|
|
925
|
+
type: "string",
|
|
926
|
+
},
|
|
955
927
|
name: "capital",
|
|
956
|
-
order: "7.0",
|
|
957
928
|
profile: {
|
|
958
929
|
max: "ZARAGOZA",
|
|
959
930
|
most_frequent: [
|
|
@@ -1042,25 +1013,23 @@ export const newRuleImplementationProps = {
|
|
|
1042
1013
|
total_count: 128,
|
|
1043
1014
|
unique_count: 62,
|
|
1044
1015
|
},
|
|
1045
|
-
region: "eu-west-1",
|
|
1046
|
-
tablename: "02_es_provincias",
|
|
1047
|
-
type: "string",
|
|
1048
1016
|
},
|
|
1049
1017
|
{
|
|
1050
|
-
account: "576759405678",
|
|
1051
1018
|
data_structure_id: 4817545,
|
|
1052
1019
|
data_type_class: "number",
|
|
1053
|
-
database: "cepsa-demo-s3",
|
|
1054
1020
|
deleted_at: null,
|
|
1055
1021
|
description: null,
|
|
1056
|
-
has_note: false,
|
|
1057
1022
|
inserted_at: "2021-05-18T08:13:16.969106Z",
|
|
1058
1023
|
links: [],
|
|
1024
|
+
metadata: {
|
|
1025
|
+
account: "123456789012",
|
|
1026
|
+
database: "bucket",
|
|
1027
|
+
order: "6.0",
|
|
1028
|
+
region: "eu",
|
|
1029
|
+
tablename: "table2",
|
|
1030
|
+
type: "bigint",
|
|
1031
|
+
},
|
|
1059
1032
|
name: "id_ccaa",
|
|
1060
|
-
order: "6.0",
|
|
1061
|
-
region: "eu-west-1",
|
|
1062
|
-
tablename: "02_es_provincias",
|
|
1063
|
-
type: "bigint",
|
|
1064
1033
|
},
|
|
1065
1034
|
],
|
|
1066
1035
|
},
|
|
@@ -1151,7 +1120,7 @@ export const newRuleImplementationProps = {
|
|
|
1151
1120
|
data_structure_id: 4812633,
|
|
1152
1121
|
deleted_at: null,
|
|
1153
1122
|
id: 717387,
|
|
1154
|
-
name: "
|
|
1123
|
+
name: "data867287.txt",
|
|
1155
1124
|
type: "File",
|
|
1156
1125
|
},
|
|
1157
1126
|
{
|
|
@@ -1175,7 +1144,7 @@ export const newRuleImplementationProps = {
|
|
|
1175
1144
|
data_structure_id: 4814765,
|
|
1176
1145
|
deleted_at: null,
|
|
1177
1146
|
id: 719525,
|
|
1178
|
-
name: "
|
|
1147
|
+
name: "example.txt",
|
|
1179
1148
|
type: "File",
|
|
1180
1149
|
},
|
|
1181
1150
|
{
|
|
@@ -1199,7 +1168,7 @@ export const newRuleImplementationProps = {
|
|
|
1199
1168
|
data_structure_id: 4814829,
|
|
1200
1169
|
deleted_at: null,
|
|
1201
1170
|
id: 719590,
|
|
1202
|
-
name: "
|
|
1171
|
+
name: "data0.txt",
|
|
1203
1172
|
type: "File",
|
|
1204
1173
|
},
|
|
1205
1174
|
{
|
|
@@ -1207,7 +1176,7 @@ export const newRuleImplementationProps = {
|
|
|
1207
1176
|
data_structure_id: 4814863,
|
|
1208
1177
|
deleted_at: null,
|
|
1209
1178
|
id: 719625,
|
|
1210
|
-
name: "
|
|
1179
|
+
name: "data1.txt",
|
|
1211
1180
|
type: "File",
|
|
1212
1181
|
},
|
|
1213
1182
|
{
|
|
@@ -1215,7 +1184,7 @@ export const newRuleImplementationProps = {
|
|
|
1215
1184
|
data_structure_id: 4814897,
|
|
1216
1185
|
deleted_at: null,
|
|
1217
1186
|
id: 719660,
|
|
1218
|
-
name: "
|
|
1187
|
+
name: "data2.txt",
|
|
1219
1188
|
type: "File",
|
|
1220
1189
|
},
|
|
1221
1190
|
{
|
|
@@ -1223,7 +1192,7 @@ export const newRuleImplementationProps = {
|
|
|
1223
1192
|
data_structure_id: 4814931,
|
|
1224
1193
|
deleted_at: null,
|
|
1225
1194
|
id: 719695,
|
|
1226
|
-
name: "
|
|
1195
|
+
name: "data3.txt",
|
|
1227
1196
|
type: "File",
|
|
1228
1197
|
},
|
|
1229
1198
|
{
|
|
@@ -1231,125 +1200,125 @@ export const newRuleImplementationProps = {
|
|
|
1231
1200
|
data_structure_id: 4814965,
|
|
1232
1201
|
deleted_at: null,
|
|
1233
1202
|
id: 719730,
|
|
1234
|
-
name: "
|
|
1203
|
+
name: "data4.txt",
|
|
1235
1204
|
type: "File",
|
|
1236
1205
|
},
|
|
1237
1206
|
],
|
|
1238
1207
|
4817540: [
|
|
1239
1208
|
{
|
|
1240
|
-
account: "
|
|
1209
|
+
account: "123456789012",
|
|
1241
1210
|
alias: "glue",
|
|
1242
1211
|
classes: null,
|
|
1243
1212
|
data_structure_id: 4817474,
|
|
1244
|
-
database: "
|
|
1213
|
+
database: "bucket",
|
|
1245
1214
|
deleted_at: null,
|
|
1246
1215
|
id: 722544,
|
|
1247
|
-
name: "
|
|
1248
|
-
region: "eu
|
|
1249
|
-
tablename: "
|
|
1216
|
+
name: "table1",
|
|
1217
|
+
region: "eu",
|
|
1218
|
+
tablename: "table1",
|
|
1250
1219
|
type: "Table",
|
|
1251
1220
|
},
|
|
1252
1221
|
{
|
|
1253
|
-
account: "
|
|
1222
|
+
account: "123456789012",
|
|
1254
1223
|
alias: "glue",
|
|
1255
1224
|
classes: null,
|
|
1256
1225
|
data_structure_id: 4817540,
|
|
1257
|
-
database: "
|
|
1226
|
+
database: "bucket",
|
|
1258
1227
|
deleted_at: null,
|
|
1259
1228
|
id: 722610,
|
|
1260
|
-
name: "
|
|
1261
|
-
region: "eu
|
|
1262
|
-
tablename: "
|
|
1229
|
+
name: "table2",
|
|
1230
|
+
region: "eu",
|
|
1231
|
+
tablename: "table2",
|
|
1263
1232
|
type: "Table",
|
|
1264
1233
|
},
|
|
1265
1234
|
{
|
|
1266
|
-
account: "
|
|
1235
|
+
account: "123456789012",
|
|
1267
1236
|
alias: "glue",
|
|
1268
1237
|
classes: null,
|
|
1269
1238
|
data_structure_id: 4817557,
|
|
1270
|
-
database: "
|
|
1239
|
+
database: "bucket",
|
|
1271
1240
|
deleted_at: null,
|
|
1272
1241
|
id: 722627,
|
|
1273
|
-
name: "
|
|
1274
|
-
region: "eu
|
|
1275
|
-
tablename: "
|
|
1242
|
+
name: "table3",
|
|
1243
|
+
region: "eu",
|
|
1244
|
+
tablename: "table3",
|
|
1276
1245
|
type: "Table",
|
|
1277
1246
|
},
|
|
1278
1247
|
{
|
|
1279
|
-
account: "
|
|
1248
|
+
account: "123456789012",
|
|
1280
1249
|
alias: "glue",
|
|
1281
1250
|
classes: null,
|
|
1282
1251
|
data_structure_id: 4817583,
|
|
1283
|
-
database: "
|
|
1252
|
+
database: "bucket",
|
|
1284
1253
|
deleted_at: null,
|
|
1285
1254
|
id: 722653,
|
|
1286
|
-
name: "
|
|
1287
|
-
region: "eu
|
|
1288
|
-
tablename: "
|
|
1255
|
+
name: "table4",
|
|
1256
|
+
region: "eu",
|
|
1257
|
+
tablename: "table4",
|
|
1289
1258
|
type: "Table",
|
|
1290
1259
|
},
|
|
1291
1260
|
{
|
|
1292
|
-
account: "
|
|
1261
|
+
account: "123456789012",
|
|
1293
1262
|
alias: "glue",
|
|
1294
1263
|
classes: null,
|
|
1295
1264
|
data_structure_id: 4817590,
|
|
1296
|
-
database: "
|
|
1265
|
+
database: "bucket",
|
|
1297
1266
|
deleted_at: null,
|
|
1298
1267
|
id: 722660,
|
|
1299
|
-
name: "
|
|
1300
|
-
region: "eu
|
|
1301
|
-
tablename: "
|
|
1268
|
+
name: "table5",
|
|
1269
|
+
region: "eu",
|
|
1270
|
+
tablename: "table5",
|
|
1302
1271
|
type: "Table",
|
|
1303
1272
|
},
|
|
1304
1273
|
{
|
|
1305
|
-
account: "
|
|
1274
|
+
account: "123456789012",
|
|
1306
1275
|
alias: "glue",
|
|
1307
1276
|
classes: null,
|
|
1308
1277
|
data_structure_id: 4817656,
|
|
1309
|
-
database: "
|
|
1278
|
+
database: "bucket",
|
|
1310
1279
|
deleted_at: null,
|
|
1311
1280
|
id: 722726,
|
|
1312
|
-
name: "
|
|
1313
|
-
region: "eu
|
|
1314
|
-
tablename: "
|
|
1281
|
+
name: "table6",
|
|
1282
|
+
region: "eu",
|
|
1283
|
+
tablename: "table6",
|
|
1315
1284
|
type: "Table",
|
|
1316
1285
|
},
|
|
1317
1286
|
{
|
|
1318
|
-
account: "
|
|
1287
|
+
account: "123456789012",
|
|
1319
1288
|
alias: "glue",
|
|
1320
1289
|
classes: null,
|
|
1321
1290
|
data_structure_id: 4817673,
|
|
1322
|
-
database: "
|
|
1291
|
+
database: "bucket",
|
|
1323
1292
|
deleted_at: null,
|
|
1324
1293
|
id: 722743,
|
|
1325
|
-
name: "
|
|
1326
|
-
region: "eu
|
|
1327
|
-
tablename: "
|
|
1294
|
+
name: "table7",
|
|
1295
|
+
region: "eu",
|
|
1296
|
+
tablename: "table7",
|
|
1328
1297
|
type: "Table",
|
|
1329
1298
|
},
|
|
1330
1299
|
{
|
|
1331
|
-
account: "
|
|
1300
|
+
account: "123456789012",
|
|
1332
1301
|
alias: "glue",
|
|
1333
1302
|
classes: null,
|
|
1334
1303
|
data_structure_id: 4817699,
|
|
1335
|
-
database: "
|
|
1304
|
+
database: "bucket",
|
|
1336
1305
|
deleted_at: null,
|
|
1337
1306
|
id: 722769,
|
|
1338
|
-
name: "
|
|
1339
|
-
region: "eu
|
|
1340
|
-
tablename: "
|
|
1307
|
+
name: "table8",
|
|
1308
|
+
region: "eu",
|
|
1309
|
+
tablename: "table8",
|
|
1341
1310
|
type: "Table",
|
|
1342
1311
|
},
|
|
1343
1312
|
{
|
|
1344
|
-
account: "
|
|
1313
|
+
account: "123456789012",
|
|
1345
1314
|
alias: "glue",
|
|
1346
1315
|
classes: null,
|
|
1347
1316
|
data_structure_id: 4817706,
|
|
1348
|
-
database: "
|
|
1317
|
+
database: "bucket",
|
|
1349
1318
|
deleted_at: null,
|
|
1350
1319
|
id: 904873,
|
|
1351
1320
|
name: "foo_table",
|
|
1352
|
-
region: "eu
|
|
1321
|
+
region: "eu",
|
|
1353
1322
|
tablename: "foo_table",
|
|
1354
1323
|
type: "Table",
|
|
1355
1324
|
},
|