-
Notifications
You must be signed in to change notification settings - Fork 6
/
dynamodb_init.sh
executable file
·588 lines (501 loc) · 116 KB
/
dynamodb_init.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
#!/bin/sh
DYNAMODB_ENDPOINT="http://localhost:8000"
# Below commands must be run in DynamoDB to create databases used in regression tests with `admin` user and `testadmin` password.
# aws configure
# -- AWS Access Key ID : admin
# -- AWS Secret Access Key : testadmin
# -- Default region name [None]: us-west-2
# Clean data
aws dynamodb delete-table --table-name server_option_tbl --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name connection_tbl --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name mixed_types --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name agg_tbl --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name array_test --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name delete_test --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name inserttest --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name rows_json --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name rows_jsonb --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name jspoptest --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name foo_json --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name foo_jsonb --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name test_json --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name test_jsonb --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name nestjsonb --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name testjsonb --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name students --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name onek --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name foo_select --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name update_test --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name classes --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name J1_TBL --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name J2_TBL --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name test_jsonb_subscript --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name test_jsonb_subscript_text --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name repeat_json_tbl --endpoint-url $DYNAMODB_ENDPOINT
aws dynamodb delete-table --table-name pg_input_is_valid_tbl --endpoint-url $DYNAMODB_ENDPOINT
# for connection_validation.sql test
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name connection_tbl \
--attribute-definitions AttributeName=artist,AttributeType=S AttributeName=songtitle,AttributeType=S \
--key-schema AttributeName=artist,KeyType=HASH AttributeName=songtitle,KeyType=RANGE \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name connection_tbl --item $'{"artist":{"S":"No One You Know"}, "songtitle":{"S":"Call Me Today"}, "albumtitle":{"S":"Somewhat Famous"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name connection_tbl --item $'{"artist":{"S":"Acme Band"}, "songtitle":{"S":"Happy Day"}, "albumtitle":{"S":"Songs About Life"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name connection_tbl --item $'{"artist":{"S":"No One You Know"}, "songtitle":{"S":"Scared of My Shadow"}, "albumtitle":{"S":"Blue Sky Blues"}}'
# for server_options.sql test
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name server_option_tbl \
--attribute-definitions AttributeName=artist,AttributeType=S AttributeName=songtitle,AttributeType=S \
--key-schema AttributeName=artist,KeyType=HASH AttributeName=songtitle,KeyType=RANGE \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name server_option_tbl --item $'{"artist":{"S":"No One You Know"}, "songtitle":{"S":"Call Me Today"}, "albumtitle":{"S":"Somewhat Famous"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name server_option_tbl --item $'{"artist":{"S":"Acme Band"}, "songtitle":{"S":"Happy Day"}, "albumtitle":{"S":"Songs About Life"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name server_option_tbl --item $'{"artist":{"S":"No One You Know"}, "songtitle":{"S":"Scared of My Shadow"}, "albumtitle":{"S":"Blue Sky Blues"}}'
# for pushdown.sql test: mixed_types table
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name mixed_types \
--attribute-definitions AttributeName=id,AttributeType=N \
--key-schema AttributeName=id,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name mixed_types --item $'{"id": {"N": "212"}, "score": {"N": "656.32"}, "numbers": {"NS": ["121.3656", "-2.12", "43.09"]}, "name": {"S": "bug"}, "color": {"NS": ["21", "10", "51"]}, "active": {"BOOL": true}, "active_lock_reason": {"NULL": true}, "created_at": {"S": "2012-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "Something isn\'t working"}, "teams": {"M": {"name": {"S": "//_\\\\||team9;\'-\\""}, "parent": {"M": {"name": {"S": "team1"}, "id": {"N": "4534163"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name mixed_types --item $'{"id": {"N": "2747"}, "score": {"N": "-5.636"}, "numbers": {"NS": ["34.34", "-2.12", "43.09"]}, "name": {"S": "documentation"}, "color": {"NS": ["241", "112", "51"]}, "active": {"BOOL": false}, "active_lock_reason": {"NULL": true}, "created_at": {"S": "2021-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "Improvements or additions to documentation"}, "teams": {"M": {"name": {"S": "=-~@030-team8"}, "parent": {"M": {"name": {"S": "team3"}, "id": {"N": "4538778"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name mixed_types --item $'{"id": {"N": "2889"}, "score": {"N": "45.2"}, "numbers": {"NS": ["121.2", "-2.12", "97.09"]}, "name": {"S": "good first issue"}, "color": {"NS": ["100", "66", "51"]}, "active": {"BOOL": false}, "active_lock_reason": {"NULL": true}, "created_at": {"S": "2010-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "Good for newcomers"}, "teams": {"M": {"name": {"S": "team2"}, "parent": {"M": {"name": {"S": "team1"}, "id": {"N": "4534163"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name mixed_types --item $'{"id": {"N": "3887"}, "score": {"N": "59.54"}, "numbers": {"NS": ["92.6", "12.12", "4.1"]}, "name": {"S": "help wanted"}, "color": {"NS": ["155", "12", "43"]}, "active": {"BOOL": true}, "active_lock_reason": {"S": "not valid"}, "created_at": {"S": "2001-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "Extra attention is needed"}, "teams": {"M": {"name": {"S": "team3"}, "parent": {"M": {"name": {"S": "=-~@030-team8"}, "id": {"N": "4534163"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name mixed_types --item $'{"id": {"N": "273"}, "score": {"N": "55.22"}, "numbers": {"NS": ["4.63", "-2.12", "63.09"]}, "name": {"S": "duplicate"}, "color": {"NS": ["121", "12", "43"]}, "active": {"BOOL": true}, "active_lock_reason": {"NULL": true}, "created_at": {"S": "2011-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "This issue or pull request already exists"}, "teams": {"M": {"name": {"S": "team1"}, "parent": {"NULL": true}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name mixed_types --item $'{"id": {"N": "3885"}, "score": {"N": "9.55"}, "numbers": {"NS": ["9.66", "2.12", "7.09"]}, "name": {"S": "enhancement"}, "color": {"NS": ["210", "100", "51"]}, "active": {"BOOL": false}, "active_lock_reason": {"S": ""}, "created_at": {"S": "2001-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "New feature or request"}, "teams": {"M": {"name": {"S": "team10"}, "parent": {"M": {"name": {"S": "//_\\\\||team9;\'-\\""}, "id": {"N": "4579782"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name mixed_types --item $'{"id": {"N": "2891"}, "score": {"N": "45.97"}, "numbers": {"NS": ["121.3", "-2.12", "43.09"]}, "name": {"S": "invalid"}, "color": {"NS": ["121", "11", "151"]}, "active": {"BOOL": true}, "active_lock_reason": {"NULL": true}, "created_at": {"S": "2009-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "This doesn\'t seem right"}, "teams": {"M": {"name": {"S": "team4"}, "parent": {"M": {"name": {"S": "team1"}, "id": {"N": "4534163"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name mixed_types --item $'{"id": {"N": "274"}, "score": {"N": "748.556"}, "numbers": {"NS": ["4.4", "3.4", "43.09"]}, "name": {"S": "question"}, "color": {"NS": ["211", "31", "151"]}, "active": {"BOOL": true}, "active_lock_reason": {"S": "invalid"}, "created_at": {"S": "2020-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "Further information is requested"}, "teams": {"M": {"name": {"S": "team4"}, "parent": {"M": {"name": {"S": "team1"}, "id": {"N": "4534163"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name mixed_types --item $'{"id": {"N": "895"}, "score": {"N": "920.1"}, "numbers": {"NS": ["2.4", "-2.12", "9.23"]}, "name": {"S": "wontfix"}, "color": {"NS": ["25", "55", "255"]}, "active": {"BOOL": true}, "active_lock_reason": {"S": ""}, "created_at": {"S": "2020-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "This will not be worked on"}, "teams": {"M": {"name": {"S": "team6"}, "parent": {"M": {"name": {"S": "=-~@030-team8"}, "id": {"N": "4534163"}}}}}}'
# for pushdown.sql test: aggregates table
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name agg_tbl \
--attribute-definitions AttributeName=id,AttributeType=N \
--key-schema AttributeName=id,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name agg_tbl --item $'{"id": {"N": "212"}, "score": {"N": "656.32"}, "numbers": {"NS": ["121.3656", "-2.12", "43.09"]}, "name": {"S": "bug"}, "color": {"NS": ["21", "10", "51"]}, "active": {"BOOL": true}, "active_lock_reason": {"NULL": true}, "created_at": {"S": "2012-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "Something isn\'t working"}, "teams": {"M": {"name": {"S": "//_\\\\||team9;\'-\\""}, "parent": {"M": {"name": {"S": "team1"}, "id": {"N": "4534163"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name agg_tbl --item $'{"id": {"N": "2747"}, "score": {"N": "-5.636"}, "numbers": {"NS": ["34.34", "-2.12", "43.09"]}, "name": {"S": "documentation"}, "color": {"NS": ["241", "112", "51"]}, "active": {"BOOL": false}, "active_lock_reason": {"NULL": true}, "created_at": {"S": "2021-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "Improvements or additions to documentation"}, "teams": {"M": {"name": {"S": "=-~@030-team8"}, "parent": {"M": {"name": {"S": "team3"}, "id": {"N": "4538778"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name agg_tbl --item $'{"id": {"N": "2889"}, "score": {"N": "45.2"}, "numbers": {"NS": ["121.2", "-2.12", "97.09"]}, "name": {"S": "good first issue"}, "color": {"NS": ["100", "66", "51"]}, "active": {"BOOL": false}, "active_lock_reason": {"NULL": true}, "created_at": {"S": "2010-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "Good for newcomers"}, "teams": {"M": {"name": {"S": "team2"}, "parent": {"M": {"name": {"S": "team1"}, "id": {"N": "4534163"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name agg_tbl --item $'{"id": {"N": "3887"}, "score": {"N": "59.54"}, "numbers": {"NS": ["92.6", "12.12", "4.1"]}, "name": {"S": "help wanted"}, "color": {"NS": ["155", "12", "43"]}, "active": {"BOOL": true}, "active_lock_reason": {"S": "not valid"}, "created_at": {"S": "2001-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "Extra attention is needed"}, "teams": {"M": {"name": {"S": "team3"}, "parent": {"M": {"name": {"S": "=-~@030-team8"}, "id": {"N": "4534163"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name agg_tbl --item $'{"id": {"N": "273"}, "score": {"N": "55.22"}, "numbers": {"NS": ["4.63", "-2.12", "63.09"]}, "name": {"S": "duplicate"}, "color": {"NS": ["121", "12", "43"]}, "active": {"BOOL": true}, "active_lock_reason": {"NULL": true}, "created_at": {"S": "2011-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "This issue or pull request already exists"}, "teams": {"M": {"name": {"S": "team1"}, "parent": {"NULL": true}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name agg_tbl --item $'{"id": {"N": "3885"}, "score": {"N": "9.55"}, "numbers": {"NS": ["9.66", "2.12", "7.09"]}, "name": {"S": "enhancement"}, "color": {"NS": ["210", "100", "51"]}, "active": {"BOOL": false}, "active_lock_reason": {"S": ""}, "created_at": {"S": "2001-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "New feature or request"}, "teams": {"M": {"name": {"S": "team10"}, "parent": {"M": {"name": {"S": "//_\\\\||team9;\'-\\""}, "id": {"N": "4579782"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name agg_tbl --item $'{"id": {"N": "2891"}, "score": {"N": "45.97"}, "numbers": {"NS": ["121.3", "-2.12", "43.09"]}, "name": {"S": "invalid"}, "color": {"NS": ["121", "11", "151"]}, "active": {"BOOL": true}, "active_lock_reason": {"NULL": true}, "created_at": {"S": "2009-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "This doesn\'t seem right"}, "teams": {"M": {"name": {"S": "team4"}, "parent": {"M": {"name": {"S": "team1"}, "id": {"N": "4534163"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name agg_tbl --item $'{"id": {"N": "274"}, "score": {"N": "748.556"}, "numbers": {"NS": ["4.4", "3.4", "43.09"]}, "name": {"S": "question"}, "color": {"NS": ["211", "31", "151"]}, "active": {"BOOL": true}, "active_lock_reason": {"S": "invalid"}, "created_at": {"S": "2020-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "Further information is requested"}, "teams": {"M": {"name": {"S": "team4"}, "parent": {"M": {"name": {"S": "team1"}, "id": {"N": "4534163"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name agg_tbl --item $'{"id": {"N": "895"}, "score": {"N": "920.1"}, "numbers": {"NS": ["2.4", "-2.12", "9.23"]}, "name": {"S": "wontfix"}, "color": {"NS": ["25", "55", "255"]}, "active": {"BOOL": true}, "active_lock_reason": {"S": ""}, "created_at": {"S": "2020-01-29T08:11:05Z"}, "events": {"SS": ["create", "delete", "update", "push", "watch"]}, "description": {"S": "This will not be worked on"}, "teams": {"M": {"name": {"S": "team6"}, "parent": {"M": {"name": {"S": "=-~@030-team8"}, "id": {"N": "4534163"}}}}}}'
# for extra/arrays.sql test
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name array_test \
--attribute-definitions AttributeName=key_dy,AttributeType=N \
--key-schema AttributeName=key_dy,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name array_test --item $'{"key_dy": {"N": "1"}, "array_n": {"NS": ["92", "75", "71", "52", "64", "83"]}, "array_s": {"SS": ["AAAAAAAA44066", "AAAAAA1059", "AAAAAAAAAAA176", "AAAAAAA48038"]}, "array_f": {"NS": ["63764.41485008047", "-38626.05345625236", "-31048.698947807556", "92587.98254484517"]}, "array_jn": {"M": {"key1": {"S": "|2FSo3FSo4*"}, "key2": {"NS": ["70356", "24708", "68429", "-84248", "-83370"]}}}, "array_js": {"M": {"key1": {"S": ",3xbA8xbA8!"}, "key2": {"SS": ["`3gOJ9gOJ3"]}}}, "array_jf": {"M": {"key1": {"S": ")5zGA9zGA6%"}, "key2": {"M": {"key22": {"NS": ["65967.06531806084", "19405.705586544413"]}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name array_test --item $'{"key_dy": {"N": "2"}, "array_n": {"NS": ["3", "6"]}, "array_s": {"SS": ["AAAAAA98232", "AAAAAAAA79710", "AAAAAAAAAAAAAAAAA69675", "AAAAAAAAAAAAAAAA55798", "AAAAAAAAA12793"]}, "array_f": {"NS": ["13079.9427807561", "-25237.41596382241"]}, "array_jn": {"M": {"key1": {"S": ":1qZk0qZk8,"}, "key2": {"NS": ["-69770"]}}}, "array_js": {"M": {"key1": {"S": "~9RUg9RUg3:"}, "key2": {"SS": ["/5zBd5zBd0~"]}}}, "array_jf": {"M": {"key1": {"S": "~7vpt3vpt8+"}, "key2": {"M": {"key22": {"NS": ["-10797.319506069369", "64886.490808153816", "-66861.26577766569"]}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name array_test --item $'{"key_dy": {"N": "3"}, "array_n": {"NS": ["37", "64", "95", "43", "3", "41", "13", "30", "11", "44"]}, "array_s": {"SS": ["AAAAAAAAAA48845", "AAAAA75968", "AAAAA95309", "AAA54451", "AAAAAAAAAA22292", "AAAAAAA99836", " A96617", " AA17009", "AAAAAAAAAAAAAA95246"]}, "array_f": {"NS": ["-18296.165590167177"]}, "array_jn": {"M": {"key1": {"S": "~8WdZ5WdZ5}"}, "key2": {"NS": ["-93527"]}}}, "array_js": {"M": {"key1": {"S": "`2Xtb9Xtb5:"}, "key2": {"SS": ["/6EdU4EdU0;"]}}}, "array_jf": {"M": {"key1": {"S": "?0OwP0OwP2<"}, "key2": {"M": {"key22": {"NS": ["80596.89133181405", "9824.9807006888"]}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name array_test --item $'{"key_dy": {"N": "4"}, "array_n": {"NS": ["71", "39", "99", "55", "33", "75", "45"]}, "array_s": {"SS": ["AAAAAAAAA53663", "AAAAAAAAAAAAAAA67062", "AAAAAAAAAA64777", "AAA99043", "AAAAAAAAAAAAAAAAAAA91804", " 39557"]}, "array_f": {"NS": ["-48821.18574220155", "-50872.874717404535"]}, "array_jn": {"M": {"key1": {"S": "*3NKX2NKX2/"}, "key2": {"NS": ["93305"]}}}, "array_js": {"M": {"key1": {"S": "!9fRI5fRI7@"}, "key2": {"SS": ["$3tvg5tvg8*", "/9vev1vev4:"]}}}, "array_jf": {"M": {"key1": {"S": "]4uLG0uLG0@"}, "key2": {"M": {"key22": {"NS": ["-3224.6865385745914", "-82530.51086218841", "7305.270420132918", "-66085.45525509966", "-11554.833340017285"]}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name array_test --item $'{"key_dy": {"N": "5"}, "array_n": {"NS": ["50", "42", "77", "5", "4"]}, "array_s": {"SS": ["AAAAAAAAAAAAAAAAA26540", "AAAAAAA79710", "AAAAAAAAAAAAAAAAAAA1205", "AAAAAAAAAAA176", "AAAAA95309", "AAAAAAAAAAA46154", "AAAAAA66777", "AAAAAAAAA27249", "AAAAAAAAAA64777", "AAAAAAAAAAAAAAAAAAA70104"]}, "array_f": {"NS": ["75860.99904981075", "-54424.867326773965", "93487.89047952445", "1650.9169848841702", "-55016.22515167355"]}, "array_jn": {"M": {"key1": {"S": "(7whB4whB4;"}, "key2": {"NS": ["-33651", "-13410", "-40535", "-14711", "-76020"]}}}, "array_js": {"M": {"key1": {"S": "?3Rfr9Rfr9,"}, "key2": {"SS": ["_1rfp2rfp8+", " ^2dqt6dqt5?", "/9lcF6lcF4<, ,8EOW5EOW5"]}}}, "array_jf": {"M": {"key1": {"S": ";2XUI2XUI0)"}, "key2": {"M": {"key22": {"NS": ["-71457.94963834029", "-61586.37536428"]}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name array_test --item $'{"key_dy": {"N": "6"}, "array_n": {"NS": ["12", "51", "88", "64", "8"]}, "array_s": {"SS": ["AAAAAAAAAAAAAAAAAA12591", "AAAAAAAAAAAAAAAAA50407", "AAAAAAAAAAAA67946"]}, "array_f": {"NS": ["-47739.90909865857", "-90553.64098777591"]}, "array_jn": {"M": {"key1": {"S": "?2wyI2wyI3["}, "key2": {"NS": ["-90865", "-12316", "-60334", "21115"]}}}, "array_js": {"M": {"key1": {"S": "*7KaM1KaM8."}, "key2": {"SS": ["/0irQ1irQ4;"]}}}, "array_jf": {"M": {"key1": {"S": "|2efE8efE3|"}, "key2": {"M": {"key22": {"NS": ["33078.7105305751", "42088.54540159687", "-47187.525033581565", "-11241.483616956713"]}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name array_test --item $'{"key_dy": {"N": "7"}, "array_n": {"NS": ["60", "84"]}, "array_s": {"SS": ["AAAAAAA81898", "AAAAAA1059", "AAAAAAAAAAAA81511", "AAAAA961", "AAAAAAAAAAAAAAAA31334", "AAAAA64741", " AA6416", "AAAAAAAAAAAAAAAAAA32918", "AAAAAAAAAAAAAAAAA50407"]}, "array_f": {"NS": ["-39854.88621748936", "-90795.07328580023", "73775.02555383104", "63902.91107811255"]}, "array_jn": {"M": {"key1": {"S": "5tUx4tUx6{"}, "key2": {"NS": ["-2511", "40764"]}}}, "array_js": {"M": {"key1": {"S": "4Uzr3Uzr4]"}, "key2": {"SS": ["%2vTI0vTI2=", "*6qYP9qYP8*", "+0gxD9gxD1:, ,1vKu1vKu0^", " !9xtG0xtG8*"]}}}, "array_jf": {"M": {"key1": {"S": "/1mQJ5mQJ2`"}, "key2": {"M": {"key22": {"NS": ["27397.21161491853", "77718.67842279281", "17857.284606812624", "68880.11534103603"]}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name array_test --item $'{"key_dy": {"N": "8"}, "array_n": {"NS": ["56", "52", "35", "27", "80", "44", "81", "22"]}, "array_s": {"SS": ["AAAAAAAAAAAAAAA73034", "AAAAAAAAAAAAA7929", "AAAAAAA66161", " AA88409", " 39557", " A27153", "AAAAAAAA9523", "AAAAAAAAAAA99000"]}, "array_f": {"NS": ["-9739.22377987369"]}, "array_jn": {"M": {"key1": {"S": "2oBm5oBm4*"}, "key2": {"NS": ["1987", "-55266", "28980"]}}}, "array_js": {"M": {"key1": {"S": "$5TBY6TBY6:"}, "key2": {"SS": ["@2Diz3Diz2]", " ^7NfF5NfF1(", " -6QTT9QTT3|", " ^3wIS6wIS0"]}}}, "array_jf": {"M": {"key1": {"S": "_5omy7omy1*"}, "key2": {"M": {"key22": {"NS": ["84051.72531566783", "5976.917739108772"]}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name array_test --item $'{"key_dy": {"N": "9"}, "array_n": {"NS": ["71", "5", "45"]}, "array_s": {"SS": ["AAAAAAAAAAA21658", "AAAAAAAAAAAA21089", "AAA54451", "AAAAAAAAAAAAAAAAAA54141", "AAAAAAAAAAAAAA28620", "AAAAAAAAAAA74076", "AAAAAAAAA27249"]}, "array_f": {"NS": ["30691.755680491377", "-49332.1730112388", "62143.21122818763"]}, "array_jn": {"M": {"key1": {"S": "(6Ykr3Ykr9{"}, "key2": {"NS": ["-12066"]}}}, "array_js": {"M": {"key1": {"S": "&8HGX1HGX7@"}, "key2": {"SS": ["~5nGi8nGi0,"]}}}, "array_jf": {"M": {"key1": {"S": "|2OxF6OxF9)"}, "key2": {"M": {"key22": {"NS": ["51318.65507552793"]}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name array_test --item $'{"key_dy": {"N": "10"}, "array_n": {"NS": ["41", "86", "74", "48", "22", "75", "47", "50"]}, "array_s": {"SS": ["AAAAAAAA9523", "AAAAAAAAAAAA37562", "AAAAAAAAAAAAAAAA14047", "AAAAAAAAAAA46154", "AAAA41702", "AAAAAAAAAAAAAAAAA764", "AAAAA62737", " 39557"]}, "array_f": {"NS": ["3646.546406708294", "82233.788828407"]}, "array_jn": {"M": {"key1": {"S": ":4rgs7rgs9:"}, "key2": {"NS": ["-36482", "19955"]}}}, "array_js": {"M": {"key1": {"S": "+3uec0uec4}"}, "key2": {"SS": ["%3hsq6hsq2{"]}}}, "array_jf": {"M": {"key1": {"S": ":7QIv6QIv3?"}, "key2": {"M": {"key22": {"NS": ["39766.29258475767", "-10052.559779050527", "45589.575400305155", "7742.598486606963", "-71676.79434681767"]}}}}}}'
# for extra/delete.sql test
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name delete_test \
--attribute-definitions AttributeName=id,AttributeType=N \
--key-schema AttributeName=id,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
# for extra/insert.sql test
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name inserttest \
--attribute-definitions AttributeName=ID,AttributeType=N \
--key-schema AttributeName=ID,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
#for extra/json and extra/jsonb
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name jspoptest \
--attribute-definitions AttributeName=ID,AttributeType=N \
--key-schema AttributeName=ID,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name test_jsonb_subscript \
--attribute-definitions AttributeName=id,AttributeType=N \
--key-schema AttributeName=id,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name jspoptest --item $'{"ID": {"N":"1"}, "js":{"M":{"jsa":{"L":[{"N":"1"}, {"S":"2"}, {"NULL":true}, {"N":"4"}]}, "rec":{"M":{"a":{"S":"abc"}, "c":{"S":"01.02.2003"}, "x":{"N":"43.2"}}}, "reca":{"L":[{"M":{"a":{"S":"abc"}, "b":{"N":"456"}}}, {"NULL":true}, {"M":{"c":{"S":"01.02.2003"}, "x":{"N":"43.2"}}}]}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name jspoptest --item $'{"ID": {"N":"2"}, "js":{"M":{"jsa":{"L":[{"N":"1"}, {"S":"2"}, {"NULL":true}, {"N":"4"}]}, "rec":{"M":{"a":{"S":"abc"}, "c":{"S":"01.02.2003"}, "x":{"N":"43.2"}}}, "reca":{"L":[{"M":{"a":{"S":"abc"}, "b":{"N":"456"}}}, {"NULL":true}, {"M":{"c":{"S":"01.02.2003"}, "x":{"N":"43.2"}}}]}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name jspoptest --item $'{"ID": {"N":"3"}, "js":{"M":{"jsa":{"L":[{"N":"1"}, {"S":"2"}, {"NULL":true}, {"N":"4"}]}, "rec":{"M":{"a":{"S":"abc"}, "c":{"S":"01.02.2003"}, "x":{"N":"43.2"}}}, "reca":{"L":[{"M":{"a":{"S":"abc"}, "b":{"N":"456"}}}, {"NULL":true}, {"M":{"c":{"S":"01.02.2003"}, "x":{"N":"43.2"}}}]}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name test_jsonb_subscript_text \
--attribute-definitions AttributeName=id,AttributeType=S \
--key-schema AttributeName=id,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
# for extra/json.sql test
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name rows_json \
--attribute-definitions AttributeName=ID,AttributeType=N \
--key-schema AttributeName=ID,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name rows_json --item $'{"ID":{"N":"1"}, "x":{"N":"1"}, "y":{"S":"txt1"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name rows_json --item $'{"ID":{"N":"2"}, "x":{"N":"2"}, "y":{"S":"txt2"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name rows_json --item $'{"ID":{"N":"3"}, "x":{"N":"3"}, "y":{"S":"txt3"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name test_json \
--attribute-definitions AttributeName=ID,AttributeType=N \
--key-schema AttributeName=ID,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name test_json --item $'{"ID": {"N": "1"}, "json_type": {"S": "scalar"}, "test_json": {"S": "a scalar"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name test_json --item $'{"ID": {"N": "2"}, "json_type": {"S": "array"}, "test_json": {"L": [{"S": "zero"}, {"S": "one"}, {"S": "two"}, {"NULL": true}, {"S": "four"}, {"S": "five"}, {"NS": ["1", "2", "3"]}, {"M": {"f1": {"N": "9"}}}]}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name test_json --item $'{"ID": {"N": "3"}, "json_type": {"S": "object"}, "test_json": {"M": {"field1": {"S": "val1"}, "field2": {"S": "val2"}, "field3": {"NULL": true}, "field4": {"N": "4"}, "field5": {"NS": ["1", "2", "3"]}, "field6": {"M": {"f1": {"N": "9"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name foo_json \
--attribute-definitions AttributeName=serial_num,AttributeType=N \
--key-schema AttributeName=serial_num,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name foo_json --item $'{"serial_num": {"N":"847001"}, "name":{"S":"t15"}, "type":{"S":"GE1043"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name foo_json --item $'{"serial_num": {"N":"847002"}, "name":{"S":"t16"}, "type":{"S":"GE1043"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name foo_json --item $'{"serial_num": {"N":"847003"}, "name":{"S":"sub-alpha"}, "type":{"S":"GESS90"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name repeat_json_tbl \
--attribute-definitions AttributeName=ID,AttributeType=N \
--key-schema AttributeName=ID,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name pg_input_is_valid_tbl \
--attribute-definitions AttributeName=ID,AttributeType=N \
--key-schema AttributeName=ID,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
# for extra/jsonb.sql test
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name rows_jsonb \
--attribute-definitions AttributeName=ID,AttributeType=N \
--key-schema AttributeName=ID,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name rows_jsonb --item $'{"ID":{"N":"1"}, "x":{"N":"1"}, "y":{"S":"txt1"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name rows_jsonb --item $'{"ID":{"N":"2"}, "x":{"N":"2"}, "y":{"S":"txt2"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name rows_jsonb --item $'{"ID":{"N":"3"}, "x":{"N":"3"}, "y":{"S":"txt3"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name test_jsonb \
--attribute-definitions AttributeName=ID,AttributeType=N \
--key-schema AttributeName=ID,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name test_jsonb --item $'{"ID": {"N": "1"}, "json_type": {"S": "scalar"}, "test_json": {"S": "a scalar"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name test_jsonb --item $'{"ID": {"N": "2"}, "json_type": {"S": "array"}, "test_json": {"L": [{"S": "zero"}, {"S": "one"}, {"S": "two"}, {"NULL": true}, {"S": "four"}, {"S": "five"}, {"NS": ["1", "2", "3"]}, {"M": {"f1": {"N": "9"}}}]}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name test_jsonb --item $'{"ID": {"N": "3"}, "json_type": {"S": "object"}, "test_json": {"M": {"field1": {"S": "val1"}, "field2": {"S": "val2"}, "field3": {"NULL": true}, "field4": {"N": "4"}, "field5": {"NS": ["1", "2", "3"]}, "field6": {"M": {"f1": {"N": "9"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name nestjsonb \
--attribute-definitions AttributeName=ID,AttributeType=N \
--key-schema AttributeName=ID,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name nestjsonb --item $'{"ID": {"N": "1"}, "j":{"M":{"a":{"L":[{"L":[{"S":"b"}, {"M":{"x":{"N":"1"}}}]}, {"L":[{"S":"b"}, {"M":{"x":{"N":"2"}}}]}]}, "c":{"N":"3"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name nestjsonb --item $'{"ID": {"N": "2"}, "j":{"L":[{"NS":["14","2","3"]}]}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name nestjsonb --item $'{"ID": {"N": "3"}, "j":{"L":[{"N":"1"}, {"NS":["14","2","3"]}]}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name testjsonb \
--attribute-definitions AttributeName=ID,AttributeType=N \
--key-schema AttributeName=ID,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "1"}, "j": {"M": {"line": {"N": "1"}, "date": {"S": "CB"}, "node": {"S": "AA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "2"}, "j": {"M": {"cleaned": {"BOOL": false}, "status": {"N": "59"}, "line": {"N": "2"}, "disabled": {"BOOL": false}, "node": {"S": "CBB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "3"}, "j": {"M": {"indexed": {"BOOL": true}, "status": {"N": "35"}, "line": {"N": "3"}, "disabled": {"BOOL": false}, "wait": {"S": "CAA"}, "subtitle": {"S": "BA"}, "user": {"S": "CCA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "4"}, "j": {"M": {"line": {"N": "4"}, "disabled": {"BOOL": true}, "space": {"S": "BB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "5"}, "j": {"M": {"cleaned": {"BOOL": false}, "line": {"N": "5"}, "wait": {"S": "BB"}, "query": {"S": "CAC"}, "coauthors": {"S": "ACA"}, "node": {"S": "CBA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "6"}, "j": {"M": {"world": {"S": "CB"}, "query": {"S": "CBC"}, "indexed": {"BOOL": false}, "line": {"N": "6"}, "pos": {"N": "92"}, "date": {"S": "AAB"}, "space": {"S": "CB"}, "coauthors": {"S": "ACA"}, "node": {"S": "CBC"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "7"}, "j": {"M": {"state": {"N": "98"}, "org": {"N": "43"}, "line": {"N": "7"}, "pos": {"N": "97"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "8"}, "j": {"M": {"auth": {"S": "BB"}, "title": {"S": "CAC"}, "query": {"S": "BA"}, "status": {"N": "94"}, "line": {"N": "8"}, "coauthors": {"S": "BBB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "9"}, "j": {"M": {"auth": {"S": "BAC"}, "title": {"S": "CAA"}, "wait": {"S": "CA"}, "bad": {"BOOL": true}, "query": {"S": "AA"}, "indexed": {"BOOL": true}, "line": {"N": "9"}, "pos": {"N": "56"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "10"}, "j": {"M": {"title": {"S": "AAC"}, "bad": {"BOOL": true}, "user": {"S": "AAB"}, "query": {"S": "AC"}, "line": {"N": "10"}, "node": {"S": "AB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "11"}, "j": {"M": {"world": {"S": "CAC"}, "user": {"S": "AB"}, "query": {"S": "ACA"}, "indexed": {"BOOL": true}, "line": {"N": "11"}, "space": {"S": "CB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "12"}, "j": {"M": {"line": {"N": "12"}, "pos": {"N": "72"}, "abstract": {"S": "BBA"}, "space": {"S": "AAC"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "13"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "14"}, "j": {"M": {"world": {"S": "CC"}, "query": {"S": "AA"}, "line": {"N": "14"}, "disabled": {"BOOL": false}, "date": {"S": "CAC"}, "coauthors": {"S": "AB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "15"}, "j": {"M": {"org": {"N": "68"}, "title": {"S": "BBB"}, "query": {"S": "BAC"}, "line": {"N": "15"}, "public": {"BOOL": false}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "16"}, "j": {"M": {"org": {"N": "73"}, "user": {"S": "AA"}, "indexed": {"BOOL": true}, "line": {"N": "16"}, "date": {"S": "CCC"}, "public": {"BOOL": true}, "coauthors": {"S": "AB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "17"}, "j": {"M": {"indexed": {"BOOL": false}, "line": {"N": "17"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "18"}, "j": {"M": {"state": {"N": "23"}, "auth": {"S": "BCC"}, "org": {"N": "38"}, "status": {"N": "28"}, "line": {"N": "18"}, "disabled": {"BOOL": false}, "abstract": {"S": "CB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "19"}, "j": {"M": {"state": {"N": "99"}, "auth": {"S": "CA"}, "indexed": {"BOOL": true}, "line": {"N": "19"}, "date": {"S": "BA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "20"}, "j": {"M": {"wait": {"S": "CBA"}, "user": {"S": "BBA"}, "indexed": {"BOOL": true}, "line": {"N": "20"}, "disabled": {"BOOL": false}, "abstract": {"S": "BA"}, "date": {"S": "ABA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "21"}, "j": {"M": {"org": {"N": "10"}, "query": {"S": "AC"}, "indexed": {"BOOL": false}, "line": {"N": "21"}, "disabled": {"BOOL": true}, "abstract": {"S": "CA"}, "pos": {"N": "44"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "22"}, "j": {"M": {"state": {"N": "65"}, "title": {"S": "AC"}, "user": {"S": "AAC"}, "cleaned": {"BOOL": true}, "status": {"N": "93"}, "line": {"N": "22"}, "abstract": {"S": "ABC"}, "node": {"S": "CCC"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "23"}, "j": {"M": {"subtitle": {"S": "AC"}, "user": {"S": "CCC"}, "line": {"N": "23"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "24"}, "j": {"M": {"state": {"N": "67"}, "world": {"S": "ACB"}, "bad": {"BOOL": true}, "user": {"S": "CB"}, "line": {"N": "24"}, "disabled": {"BOOL": true}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "25"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "26"}, "j": {"M": {"state": {"N": "65"}, "title": {"S": "CBC"}, "wait": {"S": "AAC"}, "bad": {"BOOL": true}, "query": {"S": "ACA"}, "line": {"N": "26"}, "disabled": {"BOOL": false}, "space": {"S": "CA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "27"}, "j": {"M": {"auth": {"S": "BAA"}, "state": {"N": "68"}, "indexed": {"BOOL": true}, "line": {"N": "27"}, "space": {"S": "BA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "28"}, "j": {"M": {"indexed": {"BOOL": false}, "line": {"N": "28"}, "disabled": {"BOOL": true}, "space": {"S": "CC"}, "node": {"S": "BB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "29"}, "j": {"M": {"auth": {"S": "BAB"}, "org": {"N": "80"}, "title": {"S": "BBA"}, "query": {"S": "BBC"}, "status": {"N": "3"}, "line": {"N": "29"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "30"}, "j": {"M": {"title": {"S": "AC"}, "status": {"N": "16"}, "cleaned": {"BOOL": true}, "line": {"N": "30"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "31"}, "j": {"M": {"state": {"N": "39"}, "world": {"S": "AAB"}, "user": {"S": "BB"}, "line": {"N": "31"}, "disabled": {"BOOL": true}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "32"}, "j": {"M": {"wait": {"S": "BC"}, "bad": {"BOOL": false}, "query": {"S": "AA"}, "line": {"N": "32"}, "coauthors": {"S": "CAC"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "33"}, "j": {"M": {"line": {"N": "33"}, "pos": {"N": "97"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "34"}, "j": {"M": {"title": {"S": "AA"}, "world": {"S": "CCA"}, "wait": {"S": "CC"}, "bad": {"BOOL": true}, "status": {"N": "86"}, "line": {"N": "34"}, "disabled": {"BOOL": true}, "node": {"S": "ACA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "35"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "36"}, "j": {"M": {"world": {"S": "BCC"}, "title": {"S": "ACB"}, "org": {"N": "61"}, "status": {"N": "99"}, "cleaned": {"BOOL": true}, "line": {"N": "36"}, "pos": {"N": "76"}, "space": {"S": "ACC"}, "coauthors": {"S": "AA"}, "node": {"S": "CB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "37"}, "j": {"M": {"title": {"S": "CAA"}, "cleaned": {"BOOL": false}, "line": {"N": "37"}, "abstract": {"S": "ACA"}, "node": {"S": "BC"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "38"}, "j": {"M": {"auth": {"S": "BC"}, "title": {"S": "BA"}, "world": {"S": "ACA"}, "indexed": {"BOOL": true}, "line": {"N": "38"}, "abstract": {"S": "AAA"}, "public": {"BOOL": true}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "39"}, "j": {"M": {"org": {"N": "90"}, "line": {"N": "39"}, "public": {"BOOL": false}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "40"}, "j": {"M": {"state": {"N": "16"}, "indexed": {"BOOL": true}, "line": {"N": "40"}, "pos": {"N": "53"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "41"}, "j": {"M": {"auth": {"S": "AAB"}, "wait": {"S": "CAC"}, "status": {"N": "44"}, "line": {"N": "41"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "42"}, "j": {"M": {"subtitle": {"S": "ACA"}, "bad": {"BOOL": true}, "line": {"N": "42"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "43"}, "j": {"M": {"org": {"N": "19"}, "world": {"S": "BC"}, "user": {"S": "ABA"}, "indexed": {"BOOL": false}, "line": {"N": "43"}, "disabled": {"BOOL": true}, "pos": {"N": "48"}, "abstract": {"S": "CAB"}, "space": {"S": "CCB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "44"}, "j": {"M": {"indexed": {"BOOL": false}, "line": {"N": "44"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "45"}, "j": {"M": {"indexed": {"BOOL": true}, "line": {"N": "45"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "46"}, "j": {"M": {"status": {"N": "84"}, "line": {"N": "46"}, "date": {"S": "CCC"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "47"}, "j": {"M": {"state": {"N": "94"}, "title": {"S": "BAB"}, "bad": {"BOOL": true}, "user": {"S": "BBB"}, "indexed": {"BOOL": true}, "line": {"N": "47"}, "public": {"BOOL": false}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "48"}, "j": {"M": {"org": {"N": "90"}, "subtitle": {"S": "BAC"}, "query": {"S": "CAC"}, "cleaned": {"BOOL": false}, "line": {"N": "48"}, "disabled": {"BOOL": true}, "abstract": {"S": "CC"}, "pos": {"N": "17"}, "space": {"S": "BCA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "49"}, "j": {"M": {"world": {"S": "CBC"}, "line": {"N": "49"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "50"}, "j": {"M": {"org": {"N": "24"}, "line": {"N": "50"}, "date": {"S": "CA"}, "public": {"BOOL": false}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "963"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "964"}, "j": {"M": {"status": {"N": "37"}, "line": {"N": "964"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "965"}, "j": {"M": {"state": {"N": "70"}, "status": {"N": "76"}, "indexed": {"BOOL": false}, "line": {"N": "965"}, "disabled": {"BOOL": true}, "space": {"S": "BB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "966"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "967"}, "j": {"M": {"state": {"N": "67"}, "world": {"S": "CA"}, "title": {"S": "AA"}, "line": {"N": "967"}, "abstract": {"S": "BA"}, "space": {"S": "BAA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "968"}, "j": {"M": {"auth": {"S": "CA"}, "world": {"S": "AA"}, "bad": {"BOOL": true}, "query": {"S": "BC"}, "status": {"N": "53"}, "indexed": {"BOOL": false}, "line": {"N": "968"}, "date": {"S": "AB"}, "node": {"S": "BAA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "969"}, "j": {"M": {"query": {"S": "AC"}, "cleaned": {"BOOL": true}, "line": {"N": "969"}, "abstract": {"S": "BC"}, "space": {"S": "CAB"}, "coauthors": {"S": "BAA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "970"}, "j": {"M": {"wait": {"S": "BCA"}, "world": {"S": "CB"}, "title": {"S": "BC"}, "indexed": {"BOOL": false}, "line": {"N": "970"}, "disabled": {"BOOL": true}, "pos": {"N": "70"}, "date": {"S": "AB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "971"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "972"}, "j": {"M": {"subtitle": {"S": "BC"}, "query": {"S": "AA"}, "line": {"N": "972"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "973"}, "j": {"M": {"line": {"N": "973"}, "public": {"BOOL": true}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "974"}, "j": {"M": {"org": {"N": "75"}, "world": {"S": "AAB"}, "subtitle": {"S": "BB"}, "user": {"S": "CC"}, "line": {"N": "974"}, "space": {"S": "CA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "975"}, "j": {"M": {"auth": {"S": "BCB"}, "cleaned": {"BOOL": true}, "line": {"N": "975"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "976"}, "j": {"M": {"title": {"S": "BAC"}, "user": {"S": "CB"}, "line": {"N": "976"}, "public": {"BOOL": false}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "977"}, "j": {"M": {"subtitle": {"S": "BAC"}, "indexed": {"BOOL": false}, "cleaned": {"BOOL": false}, "line": {"N": "977"}, "disabled": {"BOOL": false}, "abstract": {"S": "ABC"}, "space": {"S": "ABA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "978"}, "j": {"M": {"state": {"N": "63"}, "bad": {"BOOL": false}, "line": {"N": "978"}, "pos": {"N": "93"}, "node": {"S": "AAC"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "979"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "980"}, "j": {"M": {"cleaned": {"BOOL": false}, "line": {"N": "980"}, "abstract": {"S": "CCB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "981"}, "j": {"M": {"state": {"N": "40"}, "title": {"S": "ABA"}, "subtitle": {"S": "CAB"}, "query": {"S": "BC"}, "line": {"N": "981"}, "date": {"S": "CA"}, "coauthors": {"S": "AB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "982"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "983"}, "j": {"M": {"auth": {"S": "ABA"}, "subtitle": {"S": "ACC"}, "user": {"S": "AA"}, "query": {"S": "AC"}, "cleaned": {"BOOL": true}, "line": {"N": "983"}, "date": {"S": "ACB"}, "node": {"S": "CB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "984"}, "j": {"M": {"state": {"N": "32"}, "title": {"S": "ABC"}, "org": {"N": "58"}, "status": {"N": "95"}, "line": {"N": "984"}, "disabled": {"BOOL": true}, "pos": {"N": "6"}, "space": {"S": "CBB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "985"}, "j": {"M": {"title": {"S": "BCC"}, "subtitle": {"S": "CCC"}, "user": {"S": "BBC"}, "line": {"N": "985"}, "public": {"BOOL": false}, "coauthors": {"S": "CCB"}, "node": {"S": "AA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "986"}, "j": {"M": {"subtitle": {"S": "ACA"}, "query": {"S": "BCC"}, "status": {"N": "43"}, "cleaned": {"BOOL": true}, "indexed": {"BOOL": true}, "line": {"N": "986"}, "abstract": {"S": "CAC"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "987"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "988"}, "j": {"M": {"world": {"S": "CAB"}, "org": {"N": "21"}, "indexed": {"BOOL": true}, "line": {"N": "988"}, "abstract": {"S": "ABC"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "989"}, "j": {"M": {"title": {"S": "CBC"}, "status": {"N": "66"}, "line": {"N": "989"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "990"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "991"}, "j": {"M": {"array": {"NS": ["5"]}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "992"}, "j": {"M": {"array": {"SS": ["foo", "bar", "baz"]}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "993"}, "j": {"M": {"array": {"SS": ["bar", "baz", "foo"]}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "994"}, "j": {"M": {"array": {"SS": ["bar", "baz"]}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "995"}, "j": {"M": {"array": {"SS": ["baz", "foo"]}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "996"}, "j": {"M": {"line": {"N": "991"}, "abstract": {"S": "BA"}, "node": {"S": "BBB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "997"}, "j": {"M": {"line": {"N": "992"}, "disabled": {"BOOL": true}, "pos": {"N": "29"}, "public": {"BOOL": false}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "998"}, "j": {"M": {"state": {"N": "53"}, "wait": {"S": "CB"}, "subtitle": {"S": "CCC"}, "line": {"N": "993"}, "date": {"S": "CAC"}, "public": {"BOOL": false}, "coauthors": {"S": "BB"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "999"}, "j": {"M": {"wait": {"S": "CBA"}, "title": {"S": "CA"}, "subtitle": {"S": "BB"}, "user": {"S": "BAA"}, "line": {"N": "994"}, "disabled": {"BOOL": true}, "date": {"S": "BB"}, "coauthors": {"S": "CCC"}, "node": {"S": "CC"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "1000"}, "j": {"M": {"title": {"S": "BB"}, "user": {"S": "AA"}, "query": {"S": "CAA"}, "status": {"N": "43"}, "line": {"N": "995"}, "pos": {"N": "6"}, "abstract": {"S": "CC"}, "public": {"BOOL": true}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "1001"}, "j": {"M": {"wait": {"S": "AC"}, "query": {"S": "BA"}, "line": {"N": "996"}, "coauthors": {"S": "BB"}, "node": {"S": "CCC"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "1002"}, "j": {"M": {"auth": {"S": "BC"}, "title": {"S": "CAC"}, "subtitle": {"S": "BA"}, "line": {"N": "997"}, "date": {"S": "BAA"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "1003"}, "j": {"M": {"wait": {"S": "AB"}, "user": {"S": "ABC"}, "line": {"N": "998"}, "pos": {"N": "41"}, "node": {"S": "CAC"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "1004"}, "j": {"M": {"state": {"N": "4"}, "title": {"S": "AC"}, "bad": {"BOOL": true}, "status": {"N": "59"}, "line": {"N": "999"}, "disabled": {"BOOL": true}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "1005"}, "j": {"M": {"user": {"S": "BC"}, "line": {"N": "1000"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "1006"}, "j": {"M": {"wait": {"NULL": true}, "line": {"N": "1000"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "1007"}, "j": {"M": {"age": {"N": "25"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "1008"}, "j": {"M": {"age": {"N": "25.0"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "1009"}, "j": {"M": {"foo": {"M": {"bar": {"S": "baz"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "1010"}, "j": {"M": {"foo": {"M": {"blah": {"S": "baz"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "1011"}, "j": {"M": {"fool": {"M": {"bar": {"S": "baz"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name testjsonb --item $'{"ID": {"N": "1012"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name foo_jsonb \
--attribute-definitions AttributeName=serial_num,AttributeType=N \
--key-schema AttributeName=serial_num,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name foo_jsonb --item $'{"serial_num": {"N":"847001"}, "name":{"S":"t15"}, "type":{"S":"GE1043"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name foo_jsonb --item $'{"serial_num": {"N":"847002"}, "name":{"S":"t16"}, "type":{"S":"GE1043"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name foo_jsonb --item $'{"serial_num": {"N":"847003"}, "name":{"S":"sub-alpha"}, "type":{"S":"GESS90"}}'
# for extra/pushdown.sql test
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name students \
--attribute-definitions AttributeName=ID,AttributeType=N \
--key-schema AttributeName=ID,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name students --item $'{"ID": {"N": "15455"}, "name": {"S": "Angell"}, "friends": {"M": {"class_info": {"M": {"ID": {"N": "1"}, "name": {"S": "Grant Delgado"}, "isAtDorm": {"BOOL": false}, "score_rand": {"N": "45.231508"}}}, "login": {"M": {"ID": {"N": "11"}, "age": {"N": "20"}, "isUpdated": {"BOOL": false}, "last_score": {"N": "3.745553"}, "lastsignin": {"S": "2019-08-25T03:54:25 -07:00"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name students --item $'{"ID": {"N": "1969"}, "name": {"S": "Manuel"}, "friends": {"M": {"class_info": {"M": {"ID": {"N": "2"}, "name": {"S": "Thelma Fletcher"}, "isAtDorm": {"BOOL": true}, "score_rand": {"N": "-27.938899"}}}, "login": {"M": {"ID": {"N": "22"}, "age": {"N": "24"}, "isUpdated": {"BOOL": true}, "last_score": {"N": "-77.099881"}, "lastsignin": {"S": "2014-12-08T11:48:06 -07:00"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name students --item $'{"ID": {"N": "9895"}, "name": {"S": "Olivia"}, "friends": {"M": {"class_info": {"M": {"ID": {"N": "3"}, "name": {"S": "Eleanor Barnes"}, "isAtDorm": {"BOOL": false}, "score_rand": {"N": "69.39961"}}}, "login": {"M": {"ID": {"N": "33"}, "age": {"N": "40"}, "isUpdated": {"BOOL": false}, "last_score": {"N": "-31.046522"}, "lastsignin": {"S": "2016-12-20T11:20:25 -07:00"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name students --item $'{"ID": {"N": "6566"}, "name": {"S": "Mary"}, "friends": {"M": {"class_info": {"M": {"ID": {"N": "4"}, "name": {"S": "Jamie Byers"}, "isAtDorm": {"BOOL": false}, "score_rand": {"N": "-88.060876"}}}, "login": {"M": {"ID": {"N": "44"}, "age": {"N": "29"}, "isUpdated": {"BOOL": true}, "last_score": {"N": "21.903083"}, "lastsignin": {"S": "2015-09-17T08:31:09 -07:00"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name students --item $'{"ID": {"N": "934"}, "name": {"S": "Marc"}, "friends": {"M": {"class_info": {"M": {"ID": {"N": "5"}, "name": {"S": "Schwartz Gallagher"}, "isAtDorm": {"BOOL": false}, "score_rand": {"N": "-105.895887"}}}, "login": {"M": {"ID": {"N": "55"}, "age": {"N": "30"}, "isUpdated": {"BOOL": true}, "last_score": {"N": "-85.142456"}, "lastsignin": {"S": "2021-04-29T11:37:57 -07:00"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name students --item $'{"ID": {"N": "4216"}, "name": {"S": "Ghost"}, "friends": {"M": {"class_info": {"M": {"ID": {"N": "6"}, "name": {"S": "Kari Vang"}, "isAtDorm": {"BOOL": true}, "score_rand": {"N": "71.612004"}}}, "login": {"M": {"ID": {"N": "66"}, "age": {"N": "33"}, "isUpdated": {"BOOL": true}, "last_score": {"N": "38.249618"}, "lastsignin": {"S": "2017-04-30T10:40:28 -07:00"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name students --item $'{"ID": {"N": "2121"}, "name": {"S": "Rose"}, "friends": {"M": {"class_info": {"M": {"ID": {"N": "7"}, "name": {"S": "Hammond Conley"}, "isAtDorm": {"BOOL": true}, "score_rand": {"N": "-161.88588"}}}, "login": {"M": {"ID": {"N": "77"}, "age": {"N": "36"}, "isUpdated": {"BOOL": false}, "last_score": {"N": "-24.546655"}, "lastsignin": {"S": "2014-03-11T06:36:08 -07:00"}}}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name students --item $'{"ID": {"N": "1212"}, "name": {"S": "Lily"}, "friends": {"M": {"class_info": {"M": {"ID": {"N": "8"}, "name": {"S": "Pitts Higgins"}, "isAtDorm": {"BOOL": false}, "score_rand": {"N": "-34.309853"}}}, "login": {"M": {"ID": {"N": "88"}, "age": {"N": "22"}, "isUpdated": {"BOOL": false}, "last_score": {"N": "-46.318089"}, "lastsignin": {"S": "2015-07-10T12:06:09 -07:00"}}}}}}'
# for extra/select.sql test
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name onek \
--attribute-definitions AttributeName=unique1,AttributeType=N \
--key-schema AttributeName=unique1,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "147"}, "unique2": {"N": "0"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "7"}, "twenty": {"N": "7"}, "hundred": {"N": "7"}, "thousand": {"N": "47"}, "twothousand": {"N": "147"}, "fivethous": {"N": "147"}, "tenthous": {"N": "147"}, "odd": {"N": "14"}, "even": {"N": "15"}, "stringu1": {"S": "RFAAAA"}, "stringu2": {"S": "AAAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "931"}, "unique2": {"N": "1"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "1"}, "twenty": {"N": "11"}, "hundred": {"N": "1"}, "thousand": {"N": "31"}, "twothousand": {"N": "131"}, "fivethous": {"N": "431"}, "tenthous": {"N": "931"}, "odd": {"N": "2"}, "even": {"N": "3"}, "stringu1": {"S": "VJAAAA"}, "stringu2": {"S": "BAAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "714"}, "unique2": {"N": "2"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "4"}, "twenty": {"N": "14"}, "hundred": {"N": "4"}, "thousand": {"N": "14"}, "twothousand": {"N": "114"}, "fivethous": {"N": "214"}, "tenthous": {"N": "714"}, "odd": {"N": "8"}, "even": {"N": "9"}, "stringu1": {"S": "MBAAAA"}, "stringu2": {"S": "CAAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "711"}, "unique2": {"N": "3"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "1"}, "twenty": {"N": "11"}, "hundred": {"N": "1"}, "thousand": {"N": "11"}, "twothousand": {"N": "111"}, "fivethous": {"N": "211"}, "tenthous": {"N": "711"}, "odd": {"N": "2"}, "even": {"N": "3"}, "stringu1": {"S": "JBAAAA"}, "stringu2": {"S": "DAAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "883"}, "unique2": {"N": "4"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "3"}, "twenty": {"N": "3"}, "hundred": {"N": "3"}, "thousand": {"N": "83"}, "twothousand": {"N": "83"}, "fivethous": {"N": "383"}, "tenthous": {"N": "883"}, "odd": {"N": "6"}, "even": {"N": "7"}, "stringu1": {"S": "ZHAAAA"}, "stringu2": {"S": "EAAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "439"}, "unique2": {"N": "5"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "9"}, "twenty": {"N": "19"}, "hundred": {"N": "9"}, "thousand": {"N": "39"}, "twothousand": {"N": "39"}, "fivethous": {"N": "439"}, "tenthous": {"N": "439"}, "odd": {"N": "18"}, "even": {"N": "19"}, "stringu1": {"S": "XQAAAA"}, "stringu2": {"S": "FAAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "670"}, "unique2": {"N": "6"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "0"}, "twenty": {"N": "10"}, "hundred": {"N": "0"}, "thousand": {"N": "70"}, "twothousand": {"N": "70"}, "fivethous": {"N": "170"}, "tenthous": {"N": "670"}, "odd": {"N": "0"}, "even": {"N": "1"}, "stringu1": {"S": "UZAAAA"}, "stringu2": {"S": "GAAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "543"}, "unique2": {"N": "7"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "3"}, "twenty": {"N": "3"}, "hundred": {"N": "3"}, "thousand": {"N": "43"}, "twothousand": {"N": "143"}, "fivethous": {"N": "43"}, "tenthous": {"N": "543"}, "odd": {"N": "6"}, "even": {"N": "7"}, "stringu1": {"S": "XUAAAA"}, "stringu2": {"S": "HAAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "425"}, "unique2": {"N": "8"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "5"}, "twenty": {"N": "5"}, "hundred": {"N": "5"}, "thousand": {"N": "25"}, "twothousand": {"N": "25"}, "fivethous": {"N": "425"}, "tenthous": {"N": "425"}, "odd": {"N": "10"}, "even": {"N": "11"}, "stringu1": {"S": "JQAAAA"}, "stringu2": {"S": "IAAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "800"}, "unique2": {"N": "9"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "0"}, "twenty": {"N": "0"}, "hundred": {"N": "0"}, "thousand": {"N": "0"}, "twothousand": {"N": "0"}, "fivethous": {"N": "300"}, "tenthous": {"N": "800"}, "odd": {"N": "0"}, "even": {"N": "1"}, "stringu1": {"S": "UEAAAA"}, "stringu2": {"S": "JAAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "489"}, "unique2": {"N": "10"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "9"}, "twenty": {"N": "9"}, "hundred": {"N": "9"}, "thousand": {"N": "89"}, "twothousand": {"N": "89"}, "fivethous": {"N": "489"}, "tenthous": {"N": "489"}, "odd": {"N": "18"}, "even": {"N": "19"}, "stringu1": {"S": "VSAAAA"}, "stringu2": {"S": "KAAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "494"}, "unique2": {"N": "11"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "4"}, "twenty": {"N": "14"}, "hundred": {"N": "4"}, "thousand": {"N": "94"}, "twothousand": {"N": "94"}, "fivethous": {"N": "494"}, "tenthous": {"N": "494"}, "odd": {"N": "8"}, "even": {"N": "9"}, "stringu1": {"S": "ATAAAA"}, "stringu2": {"S": "LAAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "880"}, "unique2": {"N": "12"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "0"}, "twenty": {"N": "0"}, "hundred": {"N": "0"}, "thousand": {"N": "80"}, "twothousand": {"N": "80"}, "fivethous": {"N": "380"}, "tenthous": {"N": "880"}, "odd": {"N": "0"}, "even": {"N": "1"}, "stringu1": {"S": "WHAAAA"}, "stringu2": {"S": "MAAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "611"}, "unique2": {"N": "13"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "1"}, "twenty": {"N": "11"}, "hundred": {"N": "1"}, "thousand": {"N": "11"}, "twothousand": {"N": "11"}, "fivethous": {"N": "111"}, "tenthous": {"N": "611"}, "odd": {"N": "2"}, "even": {"N": "3"}, "stringu1": {"S": "NXAAAA"}, "stringu2": {"S": "NAAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "226"}, "unique2": {"N": "14"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "6"}, "twenty": {"N": "6"}, "hundred": {"N": "6"}, "thousand": {"N": "26"}, "twothousand": {"N": "26"}, "fivethous": {"N": "226"}, "tenthous": {"N": "226"}, "odd": {"N": "12"}, "even": {"N": "13"}, "stringu1": {"S": "SIAAAA"}, "stringu2": {"S": "OAAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "774"}, "unique2": {"N": "15"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "4"}, "twenty": {"N": "14"}, "hundred": {"N": "4"}, "thousand": {"N": "74"}, "twothousand": {"N": "174"}, "fivethous": {"N": "274"}, "tenthous": {"N": "774"}, "odd": {"N": "8"}, "even": {"N": "9"}, "stringu1": {"S": "UDAAAA"}, "stringu2": {"S": "PAAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "298"}, "unique2": {"N": "16"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "8"}, "twenty": {"N": "18"}, "hundred": {"N": "8"}, "thousand": {"N": "98"}, "twothousand": {"N": "98"}, "fivethous": {"N": "298"}, "tenthous": {"N": "298"}, "odd": {"N": "16"}, "even": {"N": "17"}, "stringu1": {"S": "MLAAAA"}, "stringu2": {"S": "QAAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "682"}, "unique2": {"N": "17"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "2"}, "twenty": {"N": "2"}, "hundred": {"N": "2"}, "thousand": {"N": "82"}, "twothousand": {"N": "82"}, "fivethous": {"N": "182"}, "tenthous": {"N": "682"}, "odd": {"N": "4"}, "even": {"N": "5"}, "stringu1": {"S": "GAAAAA"}, "stringu2": {"S": "RAAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "864"}, "unique2": {"N": "18"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "4"}, "twenty": {"N": "4"}, "hundred": {"N": "4"}, "thousand": {"N": "64"}, "twothousand": {"N": "64"}, "fivethous": {"N": "364"}, "tenthous": {"N": "864"}, "odd": {"N": "8"}, "even": {"N": "9"}, "stringu1": {"S": "GHAAAA"}, "stringu2": {"S": "SAAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "183"}, "unique2": {"N": "19"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "3"}, "twenty": {"N": "3"}, "hundred": {"N": "3"}, "thousand": {"N": "83"}, "twothousand": {"N": "183"}, "fivethous": {"N": "183"}, "tenthous": {"N": "183"}, "odd": {"N": "6"}, "even": {"N": "7"}, "stringu1": {"S": "BHAAAA"}, "stringu2": {"S": "TAAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "885"}, "unique2": {"N": "20"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "5"}, "twenty": {"N": "5"}, "hundred": {"N": "5"}, "thousand": {"N": "85"}, "twothousand": {"N": "85"}, "fivethous": {"N": "385"}, "tenthous": {"N": "885"}, "odd": {"N": "10"}, "even": {"N": "11"}, "stringu1": {"S": "BIAAAA"}, "stringu2": {"S": "UAAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "997"}, "unique2": {"N": "21"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "7"}, "twenty": {"N": "17"}, "hundred": {"N": "7"}, "thousand": {"N": "97"}, "twothousand": {"N": "197"}, "fivethous": {"N": "497"}, "tenthous": {"N": "997"}, "odd": {"N": "14"}, "even": {"N": "15"}, "stringu1": {"S": "JMAAAA"}, "stringu2": {"S": "VAAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "966"}, "unique2": {"N": "22"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "6"}, "twenty": {"N": "6"}, "hundred": {"N": "6"}, "thousand": {"N": "66"}, "twothousand": {"N": "166"}, "fivethous": {"N": "466"}, "tenthous": {"N": "966"}, "odd": {"N": "12"}, "even": {"N": "13"}, "stringu1": {"S": "ELAAAA"}, "stringu2": {"S": "WAAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "389"}, "unique2": {"N": "23"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "9"}, "twenty": {"N": "9"}, "hundred": {"N": "9"}, "thousand": {"N": "89"}, "twothousand": {"N": "189"}, "fivethous": {"N": "389"}, "tenthous": {"N": "389"}, "odd": {"N": "18"}, "even": {"N": "19"}, "stringu1": {"S": "ZOAAAA"}, "stringu2": {"S": "XAAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "846"}, "unique2": {"N": "24"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "6"}, "twenty": {"N": "6"}, "hundred": {"N": "6"}, "thousand": {"N": "46"}, "twothousand": {"N": "46"}, "fivethous": {"N": "346"}, "tenthous": {"N": "846"}, "odd": {"N": "12"}, "even": {"N": "13"}, "stringu1": {"S": "OGAAAA"}, "stringu2": {"S": "YAAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "206"}, "unique2": {"N": "25"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "6"}, "twenty": {"N": "6"}, "hundred": {"N": "6"}, "thousand": {"N": "6"}, "twothousand": {"N": "6"}, "fivethous": {"N": "206"}, "tenthous": {"N": "206"}, "odd": {"N": "12"}, "even": {"N": "13"}, "stringu1": {"S": "YHAAAA"}, "stringu2": {"S": "ZAAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "239"}, "unique2": {"N": "26"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "9"}, "twenty": {"N": "19"}, "hundred": {"N": "9"}, "thousand": {"N": "39"}, "twothousand": {"N": "39"}, "fivethous": {"N": "239"}, "tenthous": {"N": "239"}, "odd": {"N": "18"}, "even": {"N": "19"}, "stringu1": {"S": "FJAAAA"}, "stringu2": {"S": "ABAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "365"}, "unique2": {"N": "27"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "5"}, "twenty": {"N": "5"}, "hundred": {"N": "5"}, "thousand": {"N": "65"}, "twothousand": {"N": "165"}, "fivethous": {"N": "365"}, "tenthous": {"N": "365"}, "odd": {"N": "10"}, "even": {"N": "11"}, "stringu1": {"S": "BOAAAA"}, "stringu2": {"S": "BBAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "204"}, "unique2": {"N": "28"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "4"}, "twenty": {"N": "4"}, "hundred": {"N": "4"}, "thousand": {"N": "4"}, "twothousand": {"N": "4"}, "fivethous": {"N": "204"}, "tenthous": {"N": "204"}, "odd": {"N": "8"}, "even": {"N": "9"}, "stringu1": {"S": "WHAAAA"}, "stringu2": {"S": "CBAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "690"}, "unique2": {"N": "29"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "0"}, "twenty": {"N": "10"}, "hundred": {"N": "0"}, "thousand": {"N": "90"}, "twothousand": {"N": "90"}, "fivethous": {"N": "190"}, "tenthous": {"N": "690"}, "odd": {"N": "0"}, "even": {"N": "1"}, "stringu1": {"S": "OAAAAA"}, "stringu2": {"S": "DBAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "69"}, "unique2": {"N": "30"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "9"}, "twenty": {"N": "9"}, "hundred": {"N": "9"}, "thousand": {"N": "69"}, "twothousand": {"N": "69"}, "fivethous": {"N": "69"}, "tenthous": {"N": "69"}, "odd": {"N": "18"}, "even": {"N": "19"}, "stringu1": {"S": "RCAAAA"}, "stringu2": {"S": "EBAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "358"}, "unique2": {"N": "31"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "8"}, "twenty": {"N": "18"}, "hundred": {"N": "8"}, "thousand": {"N": "58"}, "twothousand": {"N": "158"}, "fivethous": {"N": "358"}, "tenthous": {"N": "358"}, "odd": {"N": "16"}, "even": {"N": "17"}, "stringu1": {"S": "UNAAAA"}, "stringu2": {"S": "FBAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "269"}, "unique2": {"N": "32"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "9"}, "twenty": {"N": "9"}, "hundred": {"N": "9"}, "thousand": {"N": "69"}, "twothousand": {"N": "69"}, "fivethous": {"N": "269"}, "tenthous": {"N": "269"}, "odd": {"N": "18"}, "even": {"N": "19"}, "stringu1": {"S": "JKAAAA"}, "stringu2": {"S": "GBAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "663"}, "unique2": {"N": "33"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "3"}, "twenty": {"N": "3"}, "hundred": {"N": "3"}, "thousand": {"N": "63"}, "twothousand": {"N": "63"}, "fivethous": {"N": "163"}, "tenthous": {"N": "663"}, "odd": {"N": "6"}, "even": {"N": "7"}, "stringu1": {"S": "NZAAAA"}, "stringu2": {"S": "HBAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "608"}, "unique2": {"N": "34"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "8"}, "twenty": {"N": "8"}, "hundred": {"N": "8"}, "thousand": {"N": "8"}, "twothousand": {"N": "8"}, "fivethous": {"N": "108"}, "tenthous": {"N": "608"}, "odd": {"N": "16"}, "even": {"N": "17"}, "stringu1": {"S": "KXAAAA"}, "stringu2": {"S": "IBAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "398"}, "unique2": {"N": "35"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "8"}, "twenty": {"N": "18"}, "hundred": {"N": "8"}, "thousand": {"N": "98"}, "twothousand": {"N": "198"}, "fivethous": {"N": "398"}, "tenthous": {"N": "398"}, "odd": {"N": "16"}, "even": {"N": "17"}, "stringu1": {"S": "IPAAAA"}, "stringu2": {"S": "JBAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "330"}, "unique2": {"N": "36"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "0"}, "twenty": {"N": "10"}, "hundred": {"N": "0"}, "thousand": {"N": "30"}, "twothousand": {"N": "130"}, "fivethous": {"N": "330"}, "tenthous": {"N": "330"}, "odd": {"N": "0"}, "even": {"N": "1"}, "stringu1": {"S": "SMAAAA"}, "stringu2": {"S": "KBAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "529"}, "unique2": {"N": "37"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "9"}, "twenty": {"N": "9"}, "hundred": {"N": "9"}, "thousand": {"N": "29"}, "twothousand": {"N": "129"}, "fivethous": {"N": "29"}, "tenthous": {"N": "529"}, "odd": {"N": "18"}, "even": {"N": "19"}, "stringu1": {"S": "JUAAAA"}, "stringu2": {"S": "LBAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "555"}, "unique2": {"N": "38"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "5"}, "twenty": {"N": "15"}, "hundred": {"N": "5"}, "thousand": {"N": "55"}, "twothousand": {"N": "155"}, "fivethous": {"N": "55"}, "tenthous": {"N": "555"}, "odd": {"N": "10"}, "even": {"N": "11"}, "stringu1": {"S": "JVAAAA"}, "stringu2": {"S": "MBAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "746"}, "unique2": {"N": "39"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "6"}, "twenty": {"N": "6"}, "hundred": {"N": "6"}, "thousand": {"N": "46"}, "twothousand": {"N": "146"}, "fivethous": {"N": "246"}, "tenthous": {"N": "746"}, "odd": {"N": "12"}, "even": {"N": "13"}, "stringu1": {"S": "SCAAAA"}, "stringu2": {"S": "NBAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "558"}, "unique2": {"N": "40"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "8"}, "twenty": {"N": "18"}, "hundred": {"N": "8"}, "thousand": {"N": "58"}, "twothousand": {"N": "158"}, "fivethous": {"N": "58"}, "tenthous": {"N": "558"}, "odd": {"N": "16"}, "even": {"N": "17"}, "stringu1": {"S": "MVAAAA"}, "stringu2": {"S": "OBAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "574"}, "unique2": {"N": "41"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "4"}, "twenty": {"N": "14"}, "hundred": {"N": "4"}, "thousand": {"N": "74"}, "twothousand": {"N": "174"}, "fivethous": {"N": "74"}, "tenthous": {"N": "574"}, "odd": {"N": "8"}, "even": {"N": "9"}, "stringu1": {"S": "CWAAAA"}, "stringu2": {"S": "PBAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "343"}, "unique2": {"N": "42"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "3"}, "twenty": {"N": "3"}, "hundred": {"N": "3"}, "thousand": {"N": "43"}, "twothousand": {"N": "143"}, "fivethous": {"N": "343"}, "tenthous": {"N": "343"}, "odd": {"N": "6"}, "even": {"N": "7"}, "stringu1": {"S": "FNAAAA"}, "stringu2": {"S": "QBAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "120"}, "unique2": {"N": "43"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "0"}, "twenty": {"N": "0"}, "hundred": {"N": "0"}, "thousand": {"N": "20"}, "twothousand": {"N": "120"}, "fivethous": {"N": "120"}, "tenthous": {"N": "120"}, "odd": {"N": "0"}, "even": {"N": "1"}, "stringu1": {"S": "QEAAAA"}, "stringu2": {"S": "RBAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "461"}, "unique2": {"N": "44"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "1"}, "twenty": {"N": "1"}, "hundred": {"N": "1"}, "thousand": {"N": "61"}, "twothousand": {"N": "61"}, "fivethous": {"N": "461"}, "tenthous": {"N": "461"}, "odd": {"N": "2"}, "even": {"N": "3"}, "stringu1": {"S": "TRAAAA"}, "stringu2": {"S": "SBAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "754"}, "unique2": {"N": "45"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "4"}, "twenty": {"N": "14"}, "hundred": {"N": "4"}, "thousand": {"N": "54"}, "twothousand": {"N": "154"}, "fivethous": {"N": "254"}, "tenthous": {"N": "754"}, "odd": {"N": "8"}, "even": {"N": "9"}, "stringu1": {"S": "ADAAAA"}, "stringu2": {"S": "TBAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "772"}, "unique2": {"N": "46"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "2"}, "twenty": {"N": "12"}, "hundred": {"N": "2"}, "thousand": {"N": "72"}, "twothousand": {"N": "172"}, "fivethous": {"N": "272"}, "tenthous": {"N": "772"}, "odd": {"N": "4"}, "even": {"N": "5"}, "stringu1": {"S": "SDAAAA"}, "stringu2": {"S": "UBAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "749"}, "unique2": {"N": "47"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "9"}, "twenty": {"N": "9"}, "hundred": {"N": "9"}, "thousand": {"N": "49"}, "twothousand": {"N": "149"}, "fivethous": {"N": "249"}, "tenthous": {"N": "749"}, "odd": {"N": "18"}, "even": {"N": "19"}, "stringu1": {"S": "VCAAAA"}, "stringu2": {"S": "VBAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "386"}, "unique2": {"N": "48"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "6"}, "twenty": {"N": "6"}, "hundred": {"N": "6"}, "thousand": {"N": "86"}, "twothousand": {"N": "186"}, "fivethous": {"N": "386"}, "tenthous": {"N": "386"}, "odd": {"N": "12"}, "even": {"N": "13"}, "stringu1": {"S": "WOAAAA"}, "stringu2": {"S": "WBAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "9"}, "unique2": {"N": "49"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "9"}, "twenty": {"N": "9"}, "hundred": {"N": "9"}, "thousand": {"N": "9"}, "twothousand": {"N": "9"}, "fivethous": {"N": "9"}, "tenthous": {"N": "9"}, "odd": {"N": "18"}, "even": {"N": "19"}, "stringu1": {"S": "JAAAAA"}, "stringu2": {"S": "XBAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "771"}, "unique2": {"N": "50"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "1"}, "twenty": {"N": "11"}, "hundred": {"N": "1"}, "thousand": {"N": "71"}, "twothousand": {"N": "171"}, "fivethous": {"N": "271"}, "tenthous": {"N": "771"}, "odd": {"N": "2"}, "even": {"N": "3"}, "stringu1": {"S": "RDAAAA"}, "stringu2": {"S": "YBAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "470"}, "unique2": {"N": "51"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "0"}, "twenty": {"N": "10"}, "hundred": {"N": "0"}, "thousand": {"N": "70"}, "twothousand": {"N": "70"}, "fivethous": {"N": "470"}, "tenthous": {"N": "470"}, "odd": {"N": "0"}, "even": {"N": "1"}, "stringu1": {"S": "CSAAAA"}, "stringu2": {"S": "ZBAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "238"}, "unique2": {"N": "52"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "8"}, "twenty": {"N": "18"}, "hundred": {"N": "8"}, "thousand": {"N": "38"}, "twothousand": {"N": "38"}, "fivethous": {"N": "238"}, "tenthous": {"N": "238"}, "odd": {"N": "16"}, "even": {"N": "17"}, "stringu1": {"S": "EJAAAA"}, "stringu2": {"S": "ACAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "86"}, "unique2": {"N": "53"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "6"}, "twenty": {"N": "6"}, "hundred": {"N": "6"}, "thousand": {"N": "86"}, "twothousand": {"N": "86"}, "fivethous": {"N": "86"}, "tenthous": {"N": "86"}, "odd": {"N": "12"}, "even": {"N": "13"}, "stringu1": {"S": "IDAAAA"}, "stringu2": {"S": "BCAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "56"}, "unique2": {"N": "54"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "6"}, "twenty": {"N": "16"}, "hundred": {"N": "6"}, "thousand": {"N": "56"}, "twothousand": {"N": "56"}, "fivethous": {"N": "56"}, "tenthous": {"N": "56"}, "odd": {"N": "12"}, "even": {"N": "13"}, "stringu1": {"S": "ECAAAA"}, "stringu2": {"S": "CCAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "767"}, "unique2": {"N": "55"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "7"}, "twenty": {"N": "7"}, "hundred": {"N": "7"}, "thousand": {"N": "67"}, "twothousand": {"N": "167"}, "fivethous": {"N": "267"}, "tenthous": {"N": "767"}, "odd": {"N": "14"}, "even": {"N": "15"}, "stringu1": {"S": "NDAAAA"}, "stringu2": {"S": "DCAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "363"}, "unique2": {"N": "56"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "3"}, "twenty": {"N": "3"}, "hundred": {"N": "3"}, "thousand": {"N": "63"}, "twothousand": {"N": "163"}, "fivethous": {"N": "363"}, "tenthous": {"N": "363"}, "odd": {"N": "6"}, "even": {"N": "7"}, "stringu1": {"S": "ZNAAAA"}, "stringu2": {"S": "ECAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "655"}, "unique2": {"N": "57"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "5"}, "twenty": {"N": "15"}, "hundred": {"N": "5"}, "thousand": {"N": "55"}, "twothousand": {"N": "55"}, "fivethous": {"N": "155"}, "tenthous": {"N": "655"}, "odd": {"N": "10"}, "even": {"N": "11"}, "stringu1": {"S": "FZAAAA"}, "stringu2": {"S": "FCAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "394"}, "unique2": {"N": "58"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "4"}, "twenty": {"N": "14"}, "hundred": {"N": "4"}, "thousand": {"N": "94"}, "twothousand": {"N": "194"}, "fivethous": {"N": "394"}, "tenthous": {"N": "394"}, "odd": {"N": "8"}, "even": {"N": "9"}, "stringu1": {"S": "EPAAAA"}, "stringu2": {"S": "GCAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "223"}, "unique2": {"N": "59"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "3"}, "twenty": {"N": "3"}, "hundred": {"N": "3"}, "thousand": {"N": "23"}, "twothousand": {"N": "23"}, "fivethous": {"N": "223"}, "tenthous": {"N": "223"}, "odd": {"N": "6"}, "even": {"N": "7"}, "stringu1": {"S": "PIAAAA"}, "stringu2": {"S": "HCAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "946"}, "unique2": {"N": "60"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "6"}, "twenty": {"N": "6"}, "hundred": {"N": "6"}, "thousand": {"N": "46"}, "twothousand": {"N": "146"}, "fivethous": {"N": "446"}, "tenthous": {"N": "946"}, "odd": {"N": "12"}, "even": {"N": "13"}, "stringu1": {"S": "KKAAAA"}, "stringu2": {"S": "ICAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "863"}, "unique2": {"N": "61"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "3"}, "twenty": {"N": "3"}, "hundred": {"N": "3"}, "thousand": {"N": "63"}, "twothousand": {"N": "63"}, "fivethous": {"N": "363"}, "tenthous": {"N": "863"}, "odd": {"N": "6"}, "even": {"N": "7"}, "stringu1": {"S": "FHAAAA"}, "stringu2": {"S": "JCAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "913"}, "unique2": {"N": "62"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "3"}, "twenty": {"N": "13"}, "hundred": {"N": "3"}, "thousand": {"N": "13"}, "twothousand": {"N": "113"}, "fivethous": {"N": "413"}, "tenthous": {"N": "913"}, "odd": {"N": "6"}, "even": {"N": "7"}, "stringu1": {"S": "DJAAAA"}, "stringu2": {"S": "KCAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "737"}, "unique2": {"N": "63"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "7"}, "twenty": {"N": "17"}, "hundred": {"N": "7"}, "thousand": {"N": "37"}, "twothousand": {"N": "137"}, "fivethous": {"N": "237"}, "tenthous": {"N": "737"}, "odd": {"N": "14"}, "even": {"N": "15"}, "stringu1": {"S": "JCAAAA"}, "stringu2": {"S": "LCAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "65"}, "unique2": {"N": "64"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "5"}, "twenty": {"N": "5"}, "hundred": {"N": "5"}, "thousand": {"N": "65"}, "twothousand": {"N": "65"}, "fivethous": {"N": "65"}, "tenthous": {"N": "65"}, "odd": {"N": "10"}, "even": {"N": "11"}, "stringu1": {"S": "NCAAAA"}, "stringu2": {"S": "MCAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "251"}, "unique2": {"N": "65"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "1"}, "twenty": {"N": "11"}, "hundred": {"N": "1"}, "thousand": {"N": "51"}, "twothousand": {"N": "51"}, "fivethous": {"N": "251"}, "tenthous": {"N": "251"}, "odd": {"N": "2"}, "even": {"N": "3"}, "stringu1": {"S": "RJAAAA"}, "stringu2": {"S": "NCAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "686"}, "unique2": {"N": "66"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "6"}, "twenty": {"N": "6"}, "hundred": {"N": "6"}, "thousand": {"N": "86"}, "twothousand": {"N": "86"}, "fivethous": {"N": "186"}, "tenthous": {"N": "686"}, "odd": {"N": "12"}, "even": {"N": "13"}, "stringu1": {"S": "KAAAAA"}, "stringu2": {"S": "OCAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "971"}, "unique2": {"N": "67"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "1"}, "twenty": {"N": "11"}, "hundred": {"N": "1"}, "thousand": {"N": "71"}, "twothousand": {"N": "171"}, "fivethous": {"N": "471"}, "tenthous": {"N": "971"}, "odd": {"N": "2"}, "even": {"N": "3"}, "stringu1": {"S": "JLAAAA"}, "stringu2": {"S": "PCAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "775"}, "unique2": {"N": "68"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "5"}, "twenty": {"N": "15"}, "hundred": {"N": "5"}, "thousand": {"N": "75"}, "twothousand": {"N": "175"}, "fivethous": {"N": "275"}, "tenthous": {"N": "775"}, "odd": {"N": "10"}, "even": {"N": "11"}, "stringu1": {"S": "VDAAAA"}, "stringu2": {"S": "QCAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "577"}, "unique2": {"N": "69"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "7"}, "twenty": {"N": "17"}, "hundred": {"N": "7"}, "thousand": {"N": "77"}, "twothousand": {"N": "177"}, "fivethous": {"N": "77"}, "tenthous": {"N": "577"}, "odd": {"N": "14"}, "even": {"N": "15"}, "stringu1": {"S": "FWAAAA"}, "stringu2": {"S": "RCAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "830"}, "unique2": {"N": "70"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "0"}, "twenty": {"N": "10"}, "hundred": {"N": "0"}, "thousand": {"N": "30"}, "twothousand": {"N": "30"}, "fivethous": {"N": "330"}, "tenthous": {"N": "830"}, "odd": {"N": "0"}, "even": {"N": "1"}, "stringu1": {"S": "YFAAAA"}, "stringu2": {"S": "SCAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "787"}, "unique2": {"N": "71"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "7"}, "twenty": {"N": "7"}, "hundred": {"N": "7"}, "thousand": {"N": "87"}, "twothousand": {"N": "187"}, "fivethous": {"N": "287"}, "tenthous": {"N": "787"}, "odd": {"N": "14"}, "even": {"N": "15"}, "stringu1": {"S": "HEAAAA"}, "stringu2": {"S": "TCAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "898"}, "unique2": {"N": "72"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "8"}, "twenty": {"N": "18"}, "hundred": {"N": "8"}, "thousand": {"N": "98"}, "twothousand": {"N": "98"}, "fivethous": {"N": "398"}, "tenthous": {"N": "898"}, "odd": {"N": "16"}, "even": {"N": "17"}, "stringu1": {"S": "OIAAAA"}, "stringu2": {"S": "UCAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "588"}, "unique2": {"N": "73"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "8"}, "twenty": {"N": "8"}, "hundred": {"N": "8"}, "thousand": {"N": "88"}, "twothousand": {"N": "188"}, "fivethous": {"N": "88"}, "tenthous": {"N": "588"}, "odd": {"N": "16"}, "even": {"N": "17"}, "stringu1": {"S": "QWAAAA"}, "stringu2": {"S": "VCAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "872"}, "unique2": {"N": "74"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "2"}, "twenty": {"N": "12"}, "hundred": {"N": "2"}, "thousand": {"N": "72"}, "twothousand": {"N": "72"}, "fivethous": {"N": "372"}, "tenthous": {"N": "872"}, "odd": {"N": "4"}, "even": {"N": "5"}, "stringu1": {"S": "OHAAAA"}, "stringu2": {"S": "WCAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "397"}, "unique2": {"N": "75"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "7"}, "twenty": {"N": "17"}, "hundred": {"N": "7"}, "thousand": {"N": "97"}, "twothousand": {"N": "197"}, "fivethous": {"N": "397"}, "tenthous": {"N": "397"}, "odd": {"N": "14"}, "even": {"N": "15"}, "stringu1": {"S": "HPAAAA"}, "stringu2": {"S": "XCAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "51"}, "unique2": {"N": "76"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "1"}, "twenty": {"N": "11"}, "hundred": {"N": "1"}, "thousand": {"N": "51"}, "twothousand": {"N": "51"}, "fivethous": {"N": "51"}, "tenthous": {"N": "51"}, "odd": {"N": "2"}, "even": {"N": "3"}, "stringu1": {"S": "ZBAAAA"}, "stringu2": {"S": "YCAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "381"}, "unique2": {"N": "77"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "1"}, "twenty": {"N": "1"}, "hundred": {"N": "1"}, "thousand": {"N": "81"}, "twothousand": {"N": "181"}, "fivethous": {"N": "381"}, "tenthous": {"N": "381"}, "odd": {"N": "2"}, "even": {"N": "3"}, "stringu1": {"S": "ROAAAA"}, "stringu2": {"S": "ZCAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "632"}, "unique2": {"N": "78"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "2"}, "twenty": {"N": "12"}, "hundred": {"N": "2"}, "thousand": {"N": "32"}, "twothousand": {"N": "32"}, "fivethous": {"N": "132"}, "tenthous": {"N": "632"}, "odd": {"N": "4"}, "even": {"N": "5"}, "stringu1": {"S": "IYAAAA"}, "stringu2": {"S": "ADAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "31"}, "unique2": {"N": "79"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "1"}, "twenty": {"N": "11"}, "hundred": {"N": "1"}, "thousand": {"N": "31"}, "twothousand": {"N": "31"}, "fivethous": {"N": "31"}, "tenthous": {"N": "31"}, "odd": {"N": "2"}, "even": {"N": "3"}, "stringu1": {"S": "FBAAAA"}, "stringu2": {"S": "BDAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "855"}, "unique2": {"N": "80"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "5"}, "twenty": {"N": "15"}, "hundred": {"N": "5"}, "thousand": {"N": "55"}, "twothousand": {"N": "55"}, "fivethous": {"N": "355"}, "tenthous": {"N": "855"}, "odd": {"N": "10"}, "even": {"N": "11"}, "stringu1": {"S": "XGAAAA"}, "stringu2": {"S": "CDAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "699"}, "unique2": {"N": "81"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "9"}, "twenty": {"N": "19"}, "hundred": {"N": "9"}, "thousand": {"N": "99"}, "twothousand": {"N": "99"}, "fivethous": {"N": "199"}, "tenthous": {"N": "699"}, "odd": {"N": "18"}, "even": {"N": "19"}, "stringu1": {"S": "XAAAAA"}, "stringu2": {"S": "DDAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "562"}, "unique2": {"N": "82"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "2"}, "twenty": {"N": "2"}, "hundred": {"N": "2"}, "thousand": {"N": "62"}, "twothousand": {"N": "162"}, "fivethous": {"N": "62"}, "tenthous": {"N": "562"}, "odd": {"N": "4"}, "even": {"N": "5"}, "stringu1": {"S": "QVAAAA"}, "stringu2": {"S": "EDAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "681"}, "unique2": {"N": "83"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "1"}, "twenty": {"N": "1"}, "hundred": {"N": "1"}, "thousand": {"N": "81"}, "twothousand": {"N": "81"}, "fivethous": {"N": "181"}, "tenthous": {"N": "681"}, "odd": {"N": "2"}, "even": {"N": "3"}, "stringu1": {"S": "FAAAAA"}, "stringu2": {"S": "FDAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "585"}, "unique2": {"N": "84"}, "two": {"N": "1"}, "four": {"N": "1"}, "ten": {"N": "5"}, "twenty": {"N": "5"}, "hundred": {"N": "5"}, "thousand": {"N": "85"}, "twothousand": {"N": "185"}, "fivethous": {"N": "85"}, "tenthous": {"N": "585"}, "odd": {"N": "10"}, "even": {"N": "11"}, "stringu1": {"S": "NWAAAA"}, "stringu2": {"S": "GDAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "35"}, "unique2": {"N": "85"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "5"}, "twenty": {"N": "15"}, "hundred": {"N": "5"}, "thousand": {"N": "35"}, "twothousand": {"N": "35"}, "fivethous": {"N": "35"}, "tenthous": {"N": "35"}, "odd": {"N": "10"}, "even": {"N": "11"}, "stringu1": {"S": "JBAAAA"}, "stringu2": {"S": "HDAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "962"}, "unique2": {"N": "86"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "2"}, "twenty": {"N": "2"}, "hundred": {"N": "2"}, "thousand": {"N": "62"}, "twothousand": {"N": "162"}, "fivethous": {"N": "462"}, "tenthous": {"N": "962"}, "odd": {"N": "4"}, "even": {"N": "5"}, "stringu1": {"S": "ALAAAA"}, "stringu2": {"S": "IDAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "282"}, "unique2": {"N": "87"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "2"}, "twenty": {"N": "2"}, "hundred": {"N": "2"}, "thousand": {"N": "82"}, "twothousand": {"N": "82"}, "fivethous": {"N": "282"}, "tenthous": {"N": "282"}, "odd": {"N": "4"}, "even": {"N": "5"}, "stringu1": {"S": "WKAAAA"}, "stringu2": {"S": "JDAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "254"}, "unique2": {"N": "88"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "4"}, "twenty": {"N": "14"}, "hundred": {"N": "4"}, "thousand": {"N": "54"}, "twothousand": {"N": "54"}, "fivethous": {"N": "254"}, "tenthous": {"N": "254"}, "odd": {"N": "8"}, "even": {"N": "9"}, "stringu1": {"S": "UJAAAA"}, "stringu2": {"S": "KDAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "514"}, "unique2": {"N": "89"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "4"}, "twenty": {"N": "14"}, "hundred": {"N": "4"}, "thousand": {"N": "14"}, "twothousand": {"N": "114"}, "fivethous": {"N": "14"}, "tenthous": {"N": "514"}, "odd": {"N": "8"}, "even": {"N": "9"}, "stringu1": {"S": "UTAAAA"}, "stringu2": {"S": "LDAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "406"}, "unique2": {"N": "90"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "6"}, "twenty": {"N": "6"}, "hundred": {"N": "6"}, "thousand": {"N": "6"}, "twothousand": {"N": "6"}, "fivethous": {"N": "406"}, "tenthous": {"N": "406"}, "odd": {"N": "12"}, "even": {"N": "13"}, "stringu1": {"S": "QPAAAA"}, "stringu2": {"S": "MDAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "544"}, "unique2": {"N": "91"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "4"}, "twenty": {"N": "4"}, "hundred": {"N": "4"}, "thousand": {"N": "44"}, "twothousand": {"N": "144"}, "fivethous": {"N": "44"}, "tenthous": {"N": "544"}, "odd": {"N": "8"}, "even": {"N": "9"}, "stringu1": {"S": "YUAAAA"}, "stringu2": {"S": "NDAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "704"}, "unique2": {"N": "92"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "4"}, "twenty": {"N": "4"}, "hundred": {"N": "4"}, "thousand": {"N": "4"}, "twothousand": {"N": "104"}, "fivethous": {"N": "204"}, "tenthous": {"N": "704"}, "odd": {"N": "8"}, "even": {"N": "9"}, "stringu1": {"S": "CBAAAA"}, "stringu2": {"S": "ODAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "948"}, "unique2": {"N": "93"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "8"}, "twenty": {"N": "8"}, "hundred": {"N": "8"}, "thousand": {"N": "48"}, "twothousand": {"N": "148"}, "fivethous": {"N": "448"}, "tenthous": {"N": "948"}, "odd": {"N": "16"}, "even": {"N": "17"}, "stringu1": {"S": "MKAAAA"}, "stringu2": {"S": "PDAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "412"}, "unique2": {"N": "94"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "2"}, "twenty": {"N": "12"}, "hundred": {"N": "2"}, "thousand": {"N": "12"}, "twothousand": {"N": "12"}, "fivethous": {"N": "412"}, "tenthous": {"N": "412"}, "odd": {"N": "4"}, "even": {"N": "5"}, "stringu1": {"S": "WPAAAA"}, "stringu2": {"S": "QDAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "200"}, "unique2": {"N": "95"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "0"}, "twenty": {"N": "0"}, "hundred": {"N": "0"}, "thousand": {"N": "0"}, "twothousand": {"N": "0"}, "fivethous": {"N": "200"}, "tenthous": {"N": "200"}, "odd": {"N": "0"}, "even": {"N": "1"}, "stringu1": {"S": "SHAAAA"}, "stringu2": {"S": "RDAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "583"}, "unique2": {"N": "96"}, "two": {"N": "1"}, "four": {"N": "3"}, "ten": {"N": "3"}, "twenty": {"N": "3"}, "hundred": {"N": "3"}, "thousand": {"N": "83"}, "twothousand": {"N": "183"}, "fivethous": {"N": "83"}, "tenthous": {"N": "583"}, "odd": {"N": "6"}, "even": {"N": "7"}, "stringu1": {"S": "LWAAAA"}, "stringu2": {"S": "SDAAAA"}, "string4": {"S": "AAAAxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "486"}, "unique2": {"N": "97"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "6"}, "twenty": {"N": "6"}, "hundred": {"N": "6"}, "thousand": {"N": "86"}, "twothousand": {"N": "86"}, "fivethous": {"N": "486"}, "tenthous": {"N": "486"}, "odd": {"N": "12"}, "even": {"N": "13"}, "stringu1": {"S": "SSAAAA"}, "stringu2": {"S": "TDAAAA"}, "string4": {"S": "HHHHxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "666"}, "unique2": {"N": "98"}, "two": {"N": "0"}, "four": {"N": "2"}, "ten": {"N": "6"}, "twenty": {"N": "6"}, "hundred": {"N": "6"}, "thousand": {"N": "66"}, "twothousand": {"N": "66"}, "fivethous": {"N": "166"}, "tenthous": {"N": "666"}, "odd": {"N": "12"}, "even": {"N": "13"}, "stringu1": {"S": "QZAAAA"}, "stringu2": {"S": "UDAAAA"}, "string4": {"S": "OOOOxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name onek --item $'{"unique1": {"N": "436"}, "unique2": {"N": "99"}, "two": {"N": "0"}, "four": {"N": "0"}, "ten": {"N": "6"}, "twenty": {"N": "16"}, "hundred": {"N": "6"}, "thousand": {"N": "36"}, "twothousand": {"N": "36"}, "fivethous": {"N": "436"}, "tenthous": {"N": "436"}, "odd": {"N": "12"}, "even": {"N": "13"}, "stringu1": {"S": "UQAAAA"}, "stringu2": {"S": "VDAAAA"}, "string4": {"S": "VVVVxx"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name foo_select \
--attribute-definitions AttributeName=key_dy,AttributeType=N \
--key-schema AttributeName=key_dy,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name foo_select --item $'{"key_dy": {"N": "1"}, "f1": {"N": "42"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name foo_select --item $'{"key_dy": {"N": "2"}, "f1": {"N": "3"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name foo_select --item $'{"key_dy": {"N": "3"}, "f1": {"N": "10"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name foo_select --item $'{"key_dy": {"N": "4"}, "f1": {"N": "7"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name foo_select --item $'{"key_dy": {"N": "5"}, "f1": {"NULL": true}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name foo_select --item $'{"key_dy": {"N": "6"}, "f1": {"NULL": true}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name foo_select --item $'{"key_dy": {"N": "7"}, "f1": {"N": "1"}}'
# for extra/update.sql test
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name update_test \
--attribute-definitions AttributeName=ID,AttributeType=N \
--key-schema AttributeName=ID,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
# for extra/pushdown.sql test
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name classes \
--attribute-definitions AttributeName=id,AttributeType=N \
--key-schema AttributeName=id,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "1"}, "name": {"S": "Grant Delgado"}, "isAtDorm": {"BOOL": false}, "score": {"N": "45.231508"}, "courses": {"M": {"majors": {"S": "Math"}, "sub-majors": {"S": "Physics"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "2"}, "name": {"S": "Sonja Reid"}, "isAtDorm": {"BOOL": false}, "score": {"N": "-11.042567"}, "courses": {"M": {"majors": {"S": "English Literature"}, "sub-majors": {"S": "Archeology"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "3"}, "name": {"S": "Miriam Robinson"}, "isAtDorm": {"BOOL": false}, "score": {"N": "-121.388902"}, "courses": {"M": {"majors": {"S": "Chemistry"}, "sub-majors": {"S": "Physics"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "4"}, "name": {"S": "Thelma Fletcher"}, "isAtDorm": {"BOOL": true}, "score": {"N": "-27.938899"}, "courses": {"M": {"majors": {"S": "Modern Art"}, "sub-majors": {"S": "Music"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "5"}, "name": {"S": "Gilda Malone"}, "isAtDorm": {"BOOL": false}, "score": {"N": "154.196778"}, "courses": {"M": {"majors": {"S": "Music"}, "sub-majors": {"S": "Art"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "6"}, "name": {"S": "Adrian Merrill"}, "isAtDorm": {"BOOL": false}, "score": {"N": "-107.568385"}, "courses": {"M": {"majors": {"S": "Biology"}, "sub-majors": {"S": "Chemistry"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "7"}, "name": {"S": "Eleanor Barnes"}, "isAtDorm": {"BOOL": false}, "score": {"N": "69.39961"}, "courses": {"M": {"majors": {"S": "History"}, "sub-majors": {"S": "Archeology"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "8"}, "name": {"S": "Faye Mckinney"}, "isAtDorm": {"BOOL": false}, "score": {"N": "-140.965449"}, "courses": {"M": {"majors": {"S": "Geography"}, "sub-majors": {"S": "Archeology"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "9"}, "name": {"S": "Earlene Scott"}, "isAtDorm": {"BOOL": true}, "score": {"N": "-30.858104"}, "courses": {"M": {"majors": {"S": "Math"}, "sub-majors": {"S": "Physics"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "10"}, "name": {"S": "Jamie Byers"}, "isAtDorm": {"BOOL": false}, "score": {"N": "-88.060876"}, "courses": {"M": {"majors": {"S": "Music"}, "sub-majors": {"S": "Art"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "11"}, "name": {"S": "Loretta French"}, "isAtDorm": {"BOOL": false}, "score": {"N": "84.090833"}, "courses": {"M": {"majors": {"S": "Music"}, "sub-majors": {"S": "Art"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "12"}, "name": {"S": "Cheri Goodman"}, "isAtDorm": {"BOOL": false}, "score": {"N": "-145.756442"}, "courses": {"M": {"majors": {"S": "Geography"}, "sub-majors": {"S": "Archeology"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "13"}, "name": {"S": "Schwartz Gallagher"}, "isAtDorm": {"BOOL": false}, "score": {"N": "-105.895887"}, "courses": {"M": {"majors": {"S": "Math"}, "sub-majors": {"S": "Physics"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "14"}, "name": {"S": "Melisa Trujillo"}, "isAtDorm": {"BOOL": true}, "score": {"N": "-11.96517"}, "courses": {"M": {"majors": {"S": "Geography"}, "sub-majors": {"S": "Archeology"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "15"}, "name": {"S": "Glenna Conrad"}, "isAtDorm": {"BOOL": false}, "score": {"N": "95.980049"}, "courses": {"M": {"majors": {"S": "Math"}, "sub-majors": {"S": "Physics"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "16"}, "name": {"S": "Kari Vang"}, "isAtDorm": {"BOOL": true}, "score": {"N": "71.612004"}, "courses": {"M": {"majors": {"S": "Geography"}, "sub-majors": {"S": "Archeology"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "17"}, "name": {"S": "Harvey Peters"}, "isAtDorm": {"BOOL": false}, "score": {"N": "-121.212542"}, "courses": {"M": {"majors": {"S": "Math"}, "sub-majors": {"S": "Physics"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "18"}, "name": {"S": "Sally Fleming"}, "isAtDorm": {"BOOL": true}, "score": {"N": "67.340726"}, "courses": {"M": {"majors": {"S": "Math"}, "sub-majors": {"S": "Physics"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "19"}, "name": {"S": "Hammond Conley"}, "isAtDorm": {"BOOL": true}, "score": {"N": "-161.88588"}, "courses": {"M": {"majors": {"S": "Biology"}, "sub-majors": {"S": "Chemistry"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "20"}, "name": {"S": "Lora Hamilton"}, "isAtDorm": {"BOOL": false}, "score": {"N": "-122.859337"}, "courses": {"M": {"majors": {"S": "Biology"}, "sub-majors": {"S": "Chemistry"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "21"}, "name": {"S": "Cole Andrews"}, "isAtDorm": {"BOOL": false}, "score": {"N": "80.023596"}, "courses": {"M": {"majors": {"S": "Math"}, "sub-majors": {"S": "Information Technology"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "22"}, "name": {"S": "Pitts Higgins"}, "isAtDorm": {"BOOL": false}, "score": {"N": "-34.309853"}, "courses": {"M": {"majors": {"S": "Math"}, "sub-majors": {"S": "Information Technology"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "23"}, "name": {"S": "Isabelle Decker"}, "isAtDorm": {"BOOL": true}, "score": {"N": "77.966603"}, "courses": {"M": {"majors": {"S": "Biology"}, "sub-majors": {"S": "Chemistry"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name classes --item $'{"id": {"N": "24"}, "name": {"S": "Billie Lowery"}, "isAtDorm": {"BOOL": false}, "score": {"N": "15.045873"}, "courses": {"M": {"majors": {"S": "Math"}, "sub-majors": {"S": "Physics"}}}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name J1_TBL \
--attribute-definitions AttributeName=ID,AttributeType=N \
--key-schema AttributeName=ID,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J1_TBL --item $'{"ID": {"N": "1"}, "q1": {"N": "212"}, "q2": {"N": "656.32"}, "q3":{"S": "invalid"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J1_TBL --item $'{"ID": {"N": "2"}, "q1": {"N": "2747"}, "q2": {"N": "-5.636"}, "q3":{"S": "description"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J1_TBL --item $'{"ID": {"N": "3"}, "q1": {"N": "273"}, "q2": {"N": "55.22"}, "q3":{"S": "question"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J1_TBL --item $'{"ID": {"N": "4"}, "q1": {"N": "3885"}, "q2": {"N": "9.55"}, "q3":{"S": "information"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J1_TBL --item $'{"ID": {"N": "5"}, "q1": {"N": "2889"}, "q2": {"N": "45.2"}, "q3":{"S": "help"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J1_TBL --item $'{"ID": {"N": "6"}, "q1": {"N": "3887"}, "q2": {"N": "59.54"}, "q3":{"S": "wontfix"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J1_TBL --item $'{"ID": {"N": "7"}, "q1": {"N": "2891"}, "q2": {"N": "45.97"}, "q3":{"S": "enhancement"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J1_TBL --item $'{"ID": {"N": "8"}, "q1": {"N": "274"}, "q2": {"NULL": true}, "q3":{"S": "documentation"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J1_TBL --item $'{"ID": {"N": "9"}, "q1": {"NULL": true}, "q2": {"N": "920.1"}, "q3":{"NULL": true}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J1_TBL --item $'{"ID": {"N": "10"}, "q1": {"N": "123"}, "q2": {"N": "456"}, "q3":{"S": "duplicate"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT \
create-table --table-name J2_TBL \
--attribute-definitions AttributeName=ID,AttributeType=N \
--key-schema AttributeName=ID,KeyType=HASH \
--provisioned-throughput ReadCapacityUnits=1,WriteCapacityUnits=1
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J2_TBL --item $'{"ID": {"N": "1"}, "q1": {"N": "212"}, "q2": {"N": "656.32"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J2_TBL --item $'{"ID": {"N": "2"}, "q1": {"N": "2747"}, "q2": {"N": "-5.636"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J2_TBL --item $'{"ID": {"N": "3"}, "q1": {"N": "273"}, "q2": {"N": "55.22"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J2_TBL --item $'{"ID": {"N": "4"}, "q1": {"N": "3885"}, "q2": {"N": "9.55"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J2_TBL --item $'{"ID": {"N": "5"}, "q1": {"N": "2889"}, "q2": {"N": "-45.2"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J2_TBL --item $'{"ID": {"N": "6"}, "q1": {"N": "3887"}, "q2": {"N": "59.54"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J2_TBL --item $'{"ID": {"N": "7"}, "q1": {"N": "2891"}, "q2": {"N": "45.97"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J2_TBL --item $'{"ID": {"N": "8"}, "q1": {"N": "274"}, "q2": {"NULL": true}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J2_TBL --item $'{"ID": {"N": "9"}, "q1": {"NULL": true}, "q2": {"N": "920.1"}}'
aws dynamodb --endpoint-url $DYNAMODB_ENDPOINT put-item --table-name J2_TBL --item $'{"ID": {"N": "10"}, "q1": {"N": "123"}, "q2": {"N": "456"}}'