ddbcli 0.4.1 → 0.4.2.beta

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e22c773139b9f7d5b5db91ab0fdaaacce305d2d1
4
- data.tar.gz: ced168e9cffdc8c44771c1296b401b64320874cf
3
+ metadata.gz: 01fc5a4fd21da4c491034cb2107d0f62bc0b187a
4
+ data.tar.gz: 1c13b3a7c99d8390f129b0b721ac2e6d761d793d
5
5
  SHA512:
6
- metadata.gz: a939abf03cbb06476d190bdc6e1b5436bf28995e0f6f31d4caef735e6fc6bf7444d1e8127417db60b979e619633144d96ad976c3ca32efa23a1091be2222ffaa
7
- data.tar.gz: 1479787aa997ab15b5570ed96199a31d30d376fdb8b4dc84975ff75d164a091258ed48c6f91b16e0529acdb0c3202d75eeb1e1b5a6aa8fad73354c0cc59104a2
6
+ metadata.gz: aea8a39b09e8bbb146cada15b173929f22a3ae1ba645c7c543d6eb1cac0c4648aff19591170b43c0d7bd3486763e90022dea90f656c6ba1929d91880ad6de47b
7
+ data.tar.gz: a4c1c0c5eaa6e0470570f880f6ea6a1950bee10a6c929df921d26159f0d954f0fe532de6bdf616462fefb18395b91f3186a51bc30a74fe7a6756f15df753a594
data/README.md CHANGED
@@ -9,7 +9,7 @@ ddbcli is an interactive command-line client of Amazon DynamoDB.
9
9
 
10
10
  $ gem install ddbcli
11
11
 
12
- If you are not using RubyGems, you can use the script files that depend on only Ruby.
12
+ If you are not using RubyGems, you can use the script file that depend on only Ruby.
13
13
 
14
14
  [ddbcli (all-in-one script version)](https://github.com/winebarrel/ddbcli/releases)
15
15
 
@@ -89,16 +89,16 @@ CREATE TABLE table_name (
89
89
  [, GLOBAL INDEX index1_name (hash_attr1 {STRING|NUMBER|BINARY} [, range_attr1 {STRING|NUMBER|BINARY}]) {ALL|KEYS_ONLY|INCLUDE (attr, ...)} [READ = num WRITE = num]
90
90
  , GLOBAL INDEX index2_name (hash_attr2 {STRING|NUMBER|BINARY} [, range_attr2 {STRING|NUMBER|BINARY}]) {ALL|KEYS_ONLY|INCLUDE (attr, ...)} [READ = num WRITE = num]
91
91
  , ...]
92
- ) READ = num WRITE = num
92
+ ) READ = num WRITE = num [STREAM = {true|false|NEW_IMAGE|OLD_IMAGE|NEW_AND_OLD_IMAGES|KEYS_ONLY}]
93
93
  creates a table
94
94
 
95
- CREATE TABLE table_name LIKE another_table_name [READ = num WRITE = num]
95
+ CREATE TABLE table_name LIKE another_table_name [READ = num WRITE = num] [STREAM = {true|false|NEW_IMAGE|OLD_IMAGE|NEW_AND_OLD_IMAGES|KEYS_ONLY}]
96
96
  creates a table like another table
97
97
 
98
98
  DROP TABLE table_name [, table_name2, ...]
99
99
  deletes tables
100
100
 
101
- ALTER TABLE table_name READ = num WRITE = num
101
+ ALTER TABLE table_name {READ = num WRITE = num|STREAM = {true|false|NEW_IMAGE|OLD_IMAGE|NEW_AND_OLD_IMAGES|KEYS_ONLY}}
102
102
  updates the provisioned throughput
103
103
 
104
104
  ALTER TABLE table_name CHANGE INDEX index_name READ = num WRITE = num
@@ -234,7 +234,7 @@ Append
234
234
 
235
235
  ```sh
236
236
  # http://dynamodb-local.s3-website-us-west-2.amazonaws.com/dynamodb_local_latest
237
- java -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar
237
+ java -Djava.library.path=./DynamoDBLocal_lib -jar DynamoDBLocal.jar &
238
238
  bundle install
239
239
  bundle exec rake
240
240
  ```
data/bin/ddbcli CHANGED
@@ -1,6 +1,7 @@
1
1
  #!/usr/bin/env ruby
2
2
  $LOAD_PATH << File.join(File.dirname(__FILE__), '..', 'lib')
3
3
 
4
+ Version = DynamoDB::VERSION
4
5
  HISTORY_FILE = File.join((ENV['HOME'] || ENV['USERPROFILE'] || '.'), '.ddbcli_history')
5
6
  HISTSIZE = 500
6
7
 
data/ddbcli.gemspec CHANGED
@@ -22,4 +22,5 @@ Gem::Specification.new do |spec|
22
22
  spec.add_development_dependency 'bundler', '~> 1.3'
23
23
  spec.add_development_dependency 'rake'
24
24
  spec.add_development_dependency 'rspec', '>= 2.14.1'
25
+ spec.add_development_dependency 'racc'
25
26
  end
@@ -25,16 +25,17 @@ CREATE TABLE table_name (
25
25
  [, GLOBAL INDEX index1_name (hash_attr1 {STRING|NUMBER|BINARY} [, range_attr1 {STRING|NUMBER|BINARY}]) {ALL|KEYS_ONLY|INCLUDE (attr, ...)} [READ = num WRITE = num]
26
26
  , GLOBAL INDEX index2_name (hash_attr2 {STRING|NUMBER|BINARY} [, range_attr2 {STRING|NUMBER|BINARY}]) {ALL|KEYS_ONLY|INCLUDE (attr, ...)} [READ = num WRITE = num]
27
27
  , ...]
28
- ) READ = num WRITE = num
28
+ ) READ = num WRITE = num [STREAM = {true|false|NEW_IMAGE|OLD_IMAGE|NEW_AND_OLD_IMAGES|KEYS_ONLY}]
29
29
  creates a table
30
30
 
31
- CREATE TABLE table_name LIKE another_table_name [READ = num WRITE = num]
31
+ CREATE TABLE table_name LIKE another_table_name [READ = num WRITE = num] [STREAM = {true|false|NEW_IMAGE|OLD_IMAGE|NEW_AND_OLD_IMAGES|KEYS_ONLY}]
32
32
  creates a table like another table
33
33
 
34
34
  DROP TABLE table_name [, table_name2, ...]
35
35
  deletes tables
36
36
 
37
- ALTER TABLE table_name READ = num WRITE = num
37
+ ALTER TABLE table_name {READ = num WRITE = num|STREAM = {true|false|NEW_IMAGE|OLD_IMAGE|NEW_AND_OLD_IMAGES|KEYS_ONLY}}
38
+
38
39
  updates the provisioned throughput
39
40
 
40
41
  ALTER TABLE table_name CHANGE INDEX index_name READ = num WRITE = num
@@ -38,7 +38,16 @@ module DynamoDB
38
38
  def set_endpoint_and_region(endpoint_or_region)
39
39
  if endpoint_or_region.kind_of?(URI)
40
40
  @endpoint = endpoint_or_region
41
- @region = [@endpoint.host, @endpoint.port].join(':')
41
+
42
+ aws_endpoint, region = DynamoDB::Endpoint::ENDPOINTS.find do |k, v|
43
+ @endpoint.host[k]
44
+ end
45
+
46
+ if region
47
+ @region = region
48
+ else
49
+ @region = [@endpoint.host, @endpoint.port].join(':')
50
+ end
42
51
  else
43
52
  host, @region = DynamoDB::Endpoint.endpoint_and_region(endpoint_or_region)
44
53
  @endpoint = URI.parse("https://#{host}")
@@ -306,6 +306,8 @@ module DynamoDB
306
306
  :write => throughput['WriteCapacityUnits'],
307
307
  }
308
308
 
309
+ stream = table_info['StreamSpecification']
310
+
309
311
  quote = lambda {|i| '`' + i.gsub('`', '``') + '`' } # `
310
312
 
311
313
  buf = "CREATE TABLE #{quote[table_name]} ("
@@ -344,6 +346,11 @@ module DynamoDB
344
346
 
345
347
  buf << "\n)"
346
348
  buf << ' ' + throughput.map {|k, v| "#{k}=#{v}" }.join(' ')
349
+
350
+ if stream and stream['StreamEnabled']
351
+ buf << " stream=#{stream['StreamViewType']}"
352
+ end
353
+
347
354
  buf << "\n\n"
348
355
 
349
356
  return buf
@@ -351,10 +358,6 @@ module DynamoDB
351
358
 
352
359
  def do_alter_table(parsed)
353
360
  req_hash = {'TableName' => parsed.table}
354
- throughput = {
355
- 'ReadCapacityUnits' => parsed.capacity[:read],
356
- 'WriteCapacityUnits' => parsed.capacity[:write]
357
- }
358
361
 
359
362
  if parsed.index_name
360
363
  req_hash['GlobalSecondaryIndexUpdates'] = [{
@@ -364,7 +367,25 @@ module DynamoDB
364
367
  },
365
368
  }]
366
369
  else
367
- req_hash['ProvisionedThroughput'] = throughput
370
+ if parsed.capacity
371
+ req_hash['ProvisionedThroughput'] = {
372
+ 'ReadCapacityUnits' => parsed.capacity[:read],
373
+ 'WriteCapacityUnits' => parsed.capacity[:write],
374
+ }
375
+ end
376
+
377
+ unless parsed.stream.nil?
378
+ if parsed.stream
379
+ view_type = (parsed.stream == true) ? 'KEYS_ONLY' : parsed.stream.to_s.upcase
380
+
381
+ req_hash['StreamSpecification'] = {
382
+ 'StreamEnabled' => true,
383
+ 'StreamViewType' => view_type,
384
+ }
385
+ else
386
+ req_hash['StreamSpecification'] = {'StreamEnabled' => false}
387
+ end
388
+ end
368
389
  end
369
390
 
370
391
  @client.query('UpdateTable', req_hash)
@@ -396,6 +417,15 @@ module DynamoDB
396
417
  },
397
418
  }
398
419
 
420
+ if parsed.stream
421
+ view_type = (parsed.stream == true) ? 'KEYS_ONLY' : parsed.stream.to_s.upcase
422
+
423
+ req_hash['StreamSpecification'] = {
424
+ 'StreamEnabled' => true,
425
+ 'StreamViewType' => view_type,
426
+ }
427
+ end
428
+
399
429
  # hash key
400
430
  req_hash['AttributeDefinitions'] = [
401
431
  {
@@ -584,6 +614,21 @@ module DynamoDB
584
614
  }
585
615
  end
586
616
 
617
+ if not parsed.stream.nil?
618
+ if parsed.stream
619
+ view_type = (parsed.stream == true) ? 'KEYS_ONLY' : parsed.stream.to_s.upcase
620
+
621
+ req_hash['StreamSpecification'] = {
622
+ 'StreamEnabled' => true,
623
+ 'StreamViewType' => view_type,
624
+ }
625
+ else
626
+ req_hash['StreamSpecification'] = {'StreamEnabled' => false}
627
+ end
628
+ elsif table_info['StreamSpecification']
629
+ req_hash['StreamSpecification'] = table_info['StreamSpecification']
630
+ end
631
+
587
632
  @client.query('CreateTable', req_hash)
588
633
  nil
589
634
  end
@@ -3,14 +3,16 @@ require 'ddbcli/ddb-error'
3
3
  module DynamoDB
4
4
  class Endpoint
5
5
 
6
+ # http://docs.aws.amazon.com/general/latest/gr/rande.html#ddb_region
6
7
  ENDPOINTS = {
7
8
  'dynamodb.us-east-1.amazonaws.com' => 'us-east-1',
8
- 'dynamodb.us-west-1.amazonaws.com' => 'us-west-1',
9
9
  'dynamodb.us-west-2.amazonaws.com' => 'us-west-2',
10
+ 'dynamodb.us-west-1.amazonaws.com' => 'us-west-1',
10
11
  'dynamodb.eu-west-1.amazonaws.com' => 'eu-west-1',
11
- 'dynamodb.ap-northeast-1.amazonaws.com' => 'ap-northeast-1',
12
+ 'dynamodb.eu-central-1.amazonaws.com' => 'eu-central-1',
12
13
  'dynamodb.ap-southeast-1.amazonaws.com' => 'ap-southeast-1',
13
14
  'dynamodb.ap-southeast-2.amazonaws.com' => 'ap-southeast-2',
15
+ 'dynamodb.ap-northeast-1.amazonaws.com' => 'ap-northeast-1',
14
16
  'dynamodb.sa-east-1.amazonaws.com' => 'sa-east-1',
15
17
  }
16
18
 
@@ -1,6 +1,6 @@
1
1
  #
2
2
  # DO NOT MODIFY!!!!
3
- # This file is automatically generated by Racc 1.4.11
3
+ # This file is automatically generated by Racc 1.4.12
4
4
  # from Racc grammer file "".
5
5
  #
6
6
 
@@ -15,7 +15,7 @@ module DynamoDB
15
15
 
16
16
  class Parser < Racc::Parser
17
17
 
18
- module_eval(<<'...end ddb-parser.y/module_eval...', 'ddb-parser.y', 622)
18
+ module_eval(<<'...end ddb-parser.y/module_eval...', 'ddb-parser.y', 664)
19
19
 
20
20
  KEYWORDS = %w(
21
21
  ADD
@@ -49,9 +49,12 @@ KEYWORDS = %w(
49
49
  KEYS_ONLY
50
50
  LIKE
51
51
  LIMIT
52
+ NEW_AND_OLD_IMAGES
53
+ NEW_IMAGE
52
54
  NEXT
53
55
  NOT
54
56
  NUMBER
57
+ OLD_IMAGE
55
58
  ORDER
56
59
  RANGE
57
60
  READ
@@ -60,6 +63,7 @@ KEYWORDS = %w(
60
63
  SET
61
64
  SHOW
62
65
  STATUS
66
+ STREAM
63
67
  STRING
64
68
  TABLES
65
69
  TABLE
@@ -196,424 +200,445 @@ end
196
200
  ##### State transition tables begin ###
197
201
 
198
202
  racc_action_table = [
199
- 175, 258, 227, 211, 175, 256, 55, 53, 175, 53,
200
- 190, 210, 175, 188, 191, 177, 175, 216, 100, 177,
201
- 189, 211, 136, 177, 174, 56, 223, 177, 174, 210,
202
- 330, 177, 174, 53, 175, 51, 174, 51, 175, 144,
203
- 174, 215, 284, 114, 249, 224, 225, 226, 228, 177,
204
- 284, 171, 257, 177, 255, 171, 285, 131, 174, 171,
205
- 74, 51, 174, 171, 285, 170, 172, 171, 173, 170,
206
- 172, 176, 173, 170, 172, 176, 173, 170, 172, 176,
207
- 173, 170, 172, 176, 173, 171, 175, 176, 217, 171,
208
- 207, 58, 261, 175, 262, 288, 114, 175, 57, 170,
209
- 172, 177, 173, 170, 172, 176, 173, 136, 177, 176,
210
- 174, 94, 177, 53, 100, 175, 287, 174, 117, 175,
211
- 153, 174, 95, 175, 130, 96, 154, 155, 144, 50,
212
- 177, 175, 49, 137, 177, 114, 25, 171, 177, 174,
213
- 48, 51, 348, 174, 171, 349, 177, 174, 171, 282,
214
- 41, 170, 172, 284, 173, 174, 42, 176, 170, 172,
215
- 204, 173, 170, 172, 176, 173, 171, 285, 176, 153,
216
- 171, 263, 153, 264, 171, 154, 155, 175, 154, 155,
217
- 170, 172, 171, 173, 170, 172, 176, 173, 170, 172,
218
- 176, 173, 177, 129, 176, 95, 170, 172, 96, 173,
219
- 99, 174, 176, 3, 4, 153, 98, 227, 18, 273,
220
- 272, 154, 155, 21, 153, 95, 19, 110, 96, 20,
221
- 154, 155, 32, 33, 34, 265, 35, 266, 171, 36,
222
- 37, 223, 38, 39, 70, 143, 22, 23, 24, 25,
223
- 144, 70, 170, 172, 26, 173, 148, 149, 176, 231,
224
- 224, 225, 226, 228, 230, 232, 235, 236, 237, 333,
225
- 95, 320, 27, 96, 319, 28, 320, 29, 150, 151,
226
- 30, 80, 81, 82, 83, 80, 81, 82, 83, 342,
227
- 343, 344, 342, 343, 344, 357, 127, 358, 126, 158,
228
- 159, 160, 144, 162, 163, 110, 61, 125, 123, 180,
229
- 181, 184, 64, 186, 100, 122, 121, 120, 116, 193,
230
- 195, 198, 199, 200, 64, 202, 203, 60, 59, 114,
231
- 64, 64, 143, 70, 222, 110, 238, 239, 240, 241,
232
- 242, 243, 245, 184, 247, 107, 251, 129, 253, 144,
233
- 106, 105, 259, 260, 104, 103, 102, 184, 101, 177,
234
- 100, 92, 274, 276, 277, 278, 279, 280, 89, 64,
235
- 90, 222, 198, 46, 45, 292, 158, 144, 64, 44,
236
- 89, 43, 87, 300, 301, 302, 303, 304, 305, 40,
237
- 308, 309, 310, 86, 312, 313, 314, 195, 64, 85,
238
- 318, 84, 77, 322, 323, 324, 76, 245, 62, 31,
239
- 329, 132, 331, 64, 75, 64, 72, 337, 310, 338,
240
- 339, 71, 70, 68, 346, 347, 67, 351, 353, 354,
241
- 355, 66, 65, 359, 360, 361, 189, 191 ]
203
+ 188, 188, 274, 304, 119, 232, 272, 188, 55, 53,
204
+ 218, 201, 53, 188, 53, 190, 190, 202, 53, 183,
205
+ 183, 227, 190, 116, 303, 188, 183, 25, 190, 226,
206
+ 187, 187, 183, 56, 188, 231, 50, 187, 300, 49,
207
+ 190, 74, 51, 187, 183, 51, 48, 51, 300, 190,
208
+ 273, 51, 271, 183, 101, 187, 184, 184, 301, 227,
209
+ 100, 136, 298, 184, 187, 277, 300, 226, 301, 184,
210
+ 185, 185, 186, 186, 278, 189, 189, 185, 220, 186,
211
+ 233, 184, 189, 185, 188, 186, 301, 142, 189, 335,
212
+ 184, 102, 188, 188, 223, 185, 243, 186, 336, 190,
213
+ 189, 188, 188, 183, 185, 141, 186, 190, 190, 189,
214
+ 116, 183, 183, 164, 187, 239, 190, 190, 135, 95,
215
+ 183, 183, 187, 187, 116, 96, 165, 166, 164, 349,
216
+ 112, 187, 187, 141, 102, 70, 188, 97, 336, 98,
217
+ 184, 165, 166, 265, 240, 241, 242, 244, 184, 184,
218
+ 148, 190, 149, 149, 185, 183, 186, 184, 184, 189,
219
+ 188, 149, 185, 185, 186, 186, 187, 189, 189, 188,
220
+ 188, 185, 185, 186, 186, 190, 189, 189, 70, 183,
221
+ 41, 96, 96, 153, 190, 190, 42, 359, 183, 183,
222
+ 187, 164, 184, 97, 97, 98, 98, 358, 360, 187,
223
+ 187, 164, 359, 58, 165, 166, 185, 164, 186, 57,
224
+ 134, 189, 358, 360, 165, 166, 184, 160, 3, 4,
225
+ 165, 166, 161, 18, 243, 184, 184, 279, 21, 281,
226
+ 185, 19, 186, 162, 20, 189, 280, 373, 282, 185,
227
+ 185, 186, 186, 239, 189, 189, 374, 36, 37, 203,
228
+ 38, 39, 97, 204, 98, 132, 22, 23, 24, 25,
229
+ 80, 81, 82, 83, 26, 154, 156, 157, 158, 159,
230
+ 131, 247, 240, 241, 242, 244, 246, 248, 251, 252,
231
+ 253, 97, 27, 98, 97, 28, 98, 29, 289, 288,
232
+ 30, 32, 33, 34, 171, 35, 80, 81, 82, 83,
233
+ 364, 97, 365, 98, 172, 173, 149, 175, 176, 112,
234
+ 130, 128, 127, 193, 194, 197, 64, 199, 102, 126,
235
+ 125, 96, 122, 207, 118, 96, 211, 214, 215, 216,
236
+ 64, 137, 219, 116, 70, 112, 64, 64, 148, 109,
237
+ 238, 108, 254, 255, 256, 257, 258, 107, 259, 261,
238
+ 197, 263, 106, 267, 134, 269, 149, 105, 104, 275,
239
+ 276, 103, 102, 92, 197, 89, 190, 90, 89, 290,
240
+ 292, 293, 294, 295, 296, 87, 64, 86, 238, 214,
241
+ 85, 84, 308, 171, 149, 64, 77, 76, 75, 72,
242
+ 316, 317, 318, 319, 320, 321, 71, 324, 325, 326,
243
+ 70, 328, 329, 330, 211, 64, 68, 334, 67, 66,
244
+ 338, 339, 340, 65, 261, 64, 62, 345, 346, 347,
245
+ 64, 61, 60, 59, 353, 326, 354, 355, 46, 45,
246
+ 44, 362, 363, 43, 367, 369, 370, 371, 40, 31,
247
+ 375, 376, 377, 202, 204 ]
242
248
 
243
249
  racc_action_check = [
244
- 318, 208, 198, 258, 320, 205, 27, 105, 314, 26,
245
- 150, 258, 303, 149, 150, 318, 276, 177, 140, 320,
246
- 149, 173, 108, 314, 318, 27, 198, 303, 320, 173,
247
- 323, 276, 314, 49, 260, 105, 303, 26, 259, 140,
248
- 276, 177, 310, 108, 198, 198, 198, 198, 198, 260,
249
- 329, 318, 208, 259, 205, 320, 310, 103, 260, 314,
250
- 49, 49, 259, 303, 329, 318, 318, 276, 318, 320,
251
- 320, 318, 320, 314, 314, 320, 314, 303, 303, 314,
252
- 303, 276, 276, 303, 276, 260, 256, 276, 177, 259,
253
- 173, 28, 212, 172, 212, 245, 107, 248, 28, 260,
254
- 260, 256, 260, 259, 259, 260, 259, 139, 172, 259,
255
- 256, 67, 248, 25, 111, 231, 245, 172, 87, 229,
256
- 282, 248, 67, 181, 102, 67, 282, 282, 139, 25,
257
- 231, 137, 25, 110, 229, 111, 87, 256, 181, 231,
258
- 25, 25, 345, 229, 172, 345, 137, 181, 248, 243,
259
- 20, 256, 256, 243, 256, 137, 20, 256, 172, 172,
260
- 172, 172, 248, 248, 172, 248, 231, 243, 248, 125,
261
- 229, 213, 337, 213, 181, 125, 125, 249, 337, 337,
262
- 231, 231, 137, 231, 229, 229, 231, 229, 181, 181,
263
- 229, 181, 249, 101, 181, 151, 137, 137, 151, 137,
264
- 68, 249, 137, 0, 0, 351, 68, 184, 0, 232,
265
- 232, 351, 351, 0, 330, 148, 0, 112, 148, 0,
266
- 330, 330, 2, 2, 2, 214, 2, 214, 249, 18,
267
- 18, 184, 18, 18, 113, 114, 0, 0, 0, 0,
268
- 116, 117, 249, 249, 0, 249, 121, 122, 249, 184,
269
- 184, 184, 184, 184, 184, 184, 184, 184, 184, 327,
270
- 126, 327, 0, 126, 306, 0, 306, 0, 123, 124,
271
- 0, 84, 84, 84, 84, 55, 55, 55, 55, 338,
272
- 338, 338, 339, 339, 339, 352, 100, 352, 99, 128,
273
- 129, 130, 131, 132, 133, 136, 34, 98, 96, 141,
274
- 143, 144, 145, 146, 147, 95, 94, 89, 86, 152,
275
- 157, 158, 159, 160, 161, 162, 163, 31, 29, 85,
276
- 178, 179, 180, 79, 182, 78, 186, 188, 189, 190,
277
- 191, 193, 194, 195, 196, 77, 199, 200, 202, 203,
278
- 76, 75, 210, 211, 74, 73, 72, 222, 71, 230,
279
- 69, 66, 237, 238, 239, 240, 241, 242, 65, 244,
280
- 64, 246, 247, 24, 23, 251, 252, 253, 254, 22,
281
- 63, 21, 59, 262, 264, 266, 270, 273, 275, 19,
282
- 277, 279, 281, 58, 284, 285, 291, 293, 294, 57,
283
- 305, 56, 54, 311, 312, 313, 52, 315, 35, 1,
284
- 322, 104, 324, 326, 50, 36, 48, 331, 334, 335,
285
- 336, 47, 44, 43, 340, 344, 40, 346, 347, 348,
286
- 349, 39, 37, 354, 355, 358, 359, 360 ]
250
+ 292, 142, 224, 261, 87, 190, 221, 185, 27, 49,
251
+ 175, 160, 26, 319, 25, 292, 142, 160, 107, 292,
252
+ 142, 186, 185, 109, 261, 194, 185, 87, 319, 186,
253
+ 292, 142, 319, 27, 275, 190, 25, 185, 326, 25,
254
+ 194, 49, 49, 319, 194, 26, 25, 25, 345, 275,
255
+ 224, 107, 221, 275, 68, 194, 292, 142, 326, 274,
256
+ 68, 105, 259, 185, 275, 228, 259, 274, 345, 319,
257
+ 292, 142, 292, 142, 228, 292, 142, 185, 185, 185,
258
+ 190, 194, 185, 319, 272, 319, 259, 112, 319, 322,
259
+ 275, 113, 330, 334, 186, 194, 214, 194, 322, 272,
260
+ 194, 336, 265, 272, 275, 110, 275, 330, 334, 275,
261
+ 113, 330, 334, 346, 272, 214, 336, 265, 104, 67,
262
+ 336, 265, 330, 334, 110, 67, 346, 346, 130, 343,
263
+ 114, 336, 265, 144, 145, 115, 264, 67, 343, 67,
264
+ 272, 130, 130, 214, 214, 214, 214, 214, 330, 334,
265
+ 116, 264, 144, 145, 272, 264, 272, 336, 265, 272,
266
+ 247, 118, 330, 334, 330, 334, 264, 330, 334, 276,
267
+ 245, 336, 265, 336, 265, 247, 336, 265, 119, 247,
268
+ 20, 162, 131, 125, 276, 245, 20, 354, 276, 245,
269
+ 247, 367, 264, 162, 131, 162, 131, 354, 354, 276,
270
+ 245, 353, 355, 28, 367, 367, 264, 298, 264, 28,
271
+ 103, 264, 355, 355, 353, 353, 247, 127, 0, 0,
272
+ 298, 298, 128, 0, 197, 276, 245, 229, 0, 230,
273
+ 247, 0, 247, 129, 0, 247, 229, 368, 230, 276,
274
+ 245, 276, 245, 197, 276, 245, 368, 18, 18, 161,
275
+ 18, 18, 94, 161, 94, 102, 0, 0, 0, 0,
276
+ 84, 84, 84, 84, 0, 126, 126, 126, 126, 126,
277
+ 101, 197, 197, 197, 197, 197, 197, 197, 197, 197,
278
+ 197, 153, 0, 153, 206, 0, 206, 0, 248, 248,
279
+ 0, 2, 2, 2, 133, 2, 55, 55, 55, 55,
280
+ 361, 167, 361, 167, 134, 135, 136, 137, 138, 141,
281
+ 100, 98, 97, 146, 148, 149, 150, 151, 152, 96,
282
+ 95, 93, 89, 163, 86, 169, 170, 171, 172, 173,
283
+ 174, 106, 176, 85, 79, 78, 191, 192, 193, 77,
284
+ 195, 76, 199, 201, 202, 203, 204, 75, 207, 210,
285
+ 211, 212, 74, 215, 216, 218, 219, 73, 72, 226,
286
+ 227, 71, 69, 66, 238, 65, 246, 64, 63, 253,
287
+ 254, 255, 256, 257, 258, 59, 260, 58, 262, 263,
288
+ 57, 56, 267, 268, 269, 270, 54, 52, 50, 48,
289
+ 278, 280, 282, 286, 289, 291, 47, 293, 295, 297,
290
+ 44, 300, 301, 307, 309, 310, 43, 321, 40, 39,
291
+ 327, 328, 329, 37, 331, 36, 35, 338, 339, 340,
292
+ 342, 34, 31, 29, 347, 350, 351, 352, 24, 23,
293
+ 22, 356, 360, 21, 362, 363, 364, 365, 19, 1,
294
+ 370, 371, 374, 375, 376 ]
287
295
 
288
296
  racc_action_pointer = [
289
- 201, 399, 220, nil, nil, nil, nil, nil, nil, nil,
290
- nil, nil, nil, nil, nil, nil, nil, nil, 221, 370,
291
- 137, 362, 360, 351, 350, 100, -4, -7, 59, 251,
292
- nil, 317, nil, nil, 291, 393, 346, 412, nil, 412,
293
- 403, nil, nil, 400, 399, nil, nil, 372, 386, 20,
294
- 362, nil, 373, nil, 353, 213, 378, 376, 344, 359,
295
- nil, nil, nil, 356, 331, 344, 338, 95, 186, 327,
296
- nil, 335, 305, 306, 324, 312, 327, 322, 312, 310,
297
- nil, nil, nil, nil, 209, 275, 295, 98, nil, 302,
298
- nil, nil, nil, nil, 289, 277, 270, nil, 284, 275,
299
- 273, 175, 103, 44, 360, -6, nil, 52, -1, nil,
300
- 105, 91, 204, 221, 222, nil, 196, 228, nil, nil,
301
- nil, 233, 218, 239, 248, 150, 233, nil, 245, 273,
302
- 252, 248, 272, 255, nil, nil, 282, 126, nil, 84,
303
- -5, 254, nil, 272, 288, 243, 282, 281, 188, -10,
304
- -13, 168, 287, nil, nil, nil, nil, 250, 298, 292,
305
- 300, 255, 276, 303, nil, nil, nil, nil, nil, nil,
306
- nil, nil, 88, 16, nil, nil, nil, 12, 261, 262,
307
- 309, 118, 279, nil, 203, nil, 258, nil, 297, 300,
308
- 302, 302, nil, 308, 275, 320, 289, nil, -2, 323,
309
- 319, nil, 325, 295, nil, -18, nil, nil, -22, nil,
310
- 267, 268, 71, 150, 204, nil, nil, nil, nil, nil,
311
- nil, nil, 334, nil, nil, nil, nil, nil, nil, 114,
312
- 329, 110, 154, nil, nil, nil, nil, 298, 333, 326,
313
- 326, 328, 328, 136, 300, 58, 316, 349, 92, 172,
314
- nil, 344, 322, 323, 309, nil, 81, nil, -2, 33,
315
- 29, nil, 344, nil, 369, nil, 299, nil, nil, nil,
316
- 331, nil, nil, 321, nil, 355, 11, 351, nil, 352,
317
- nil, 359, 101, nil, 371, 368, nil, nil, nil, nil,
318
- nil, 341, nil, 327, 329, nil, nil, nil, nil, nil,
319
- nil, nil, nil, 7, nil, 370, 243, nil, nil, nil,
320
- 25, 369, 374, 382, 3, 340, nil, nil, -5, nil,
321
- -1, nil, 377, 17, 382, nil, 344, 238, nil, 33,
322
- 195, 394, nil, nil, 385, 388, 389, 153, 247, 250,
323
- 391, nil, nil, nil, 395, 115, 404, 405, 391, 392,
324
- nil, 186, 264, nil, 394, 395, nil, nil, 412, 396,
325
- 400, nil ]
297
+ 216, 439, 289, nil, nil, nil, nil, nil, nil, nil,
298
+ nil, nil, nil, nil, nil, nil, nil, nil, 239, 429,
299
+ 167, 424, 421, 416, 415, 1, -1, -5, 165, 351,
300
+ nil, 422, nil, nil, 416, 411, 351, 403, nil, 400,
301
+ 395, nil, nil, 393, 387, nil, nil, 352, 369, -4,
302
+ 341, nil, 357, nil, 342, 229, 368, 367, 333, 362,
303
+ nil, nil, nil, 354, 332, 351, 350, 103, 40, 332,
304
+ nil, 348, 312, 313, 332, 312, 328, 326, 322, 321,
305
+ nil, nil, nil, nil, 193, 284, 311, -16, nil, 317,
306
+ nil, nil, nil, 299, 218, 303, 296, 289, 288, nil,
307
+ 297, 257, 242, 192, 97, 48, 285, 5, nil, -26,
308
+ 75, nil, 64, 61, 117, 122, 137, nil, 112, 165,
309
+ nil, nil, nil, nil, nil, 170, 241, 182, 187, 212,
310
+ 109, 160, nil, 245, 287, 261, 257, 286, 264, nil,
311
+ nil, 296, -4, nil, 103, 104, 263, nil, 291, 302,
312
+ 252, 296, 288, 247, nil, nil, nil, nil, nil, nil,
313
+ -19, 219, 159, 294, nil, nil, nil, 267, nil, 303,
314
+ 261, 314, 308, 316, 266, -34, 319, nil, nil, nil,
315
+ nil, nil, nil, nil, nil, 2, 16, nil, nil, nil,
316
+ 0, 272, 273, 325, 20, 290, nil, 220, nil, 269,
317
+ nil, 307, 321, 311, 323, nil, 250, 318, nil, nil,
318
+ 287, 337, 301, nil, 92, 340, 336, nil, 342, 307,
319
+ nil, -24, nil, nil, -28, nil, 280, 281, 44, 206,
320
+ 208, nil, nil, nil, nil, nil, nil, nil, 351, nil,
321
+ nil, nil, nil, nil, nil, 165, 346, 155, 228, nil,
322
+ nil, nil, nil, 310, 350, 348, 337, 350, 339, 49,
323
+ 312, -39, 328, 366, 131, 97, nil, 361, 334, 335,
324
+ 321, nil, 79, nil, 54, 29, 164, nil, 355, nil,
325
+ 386, nil, 312, nil, nil, nil, 343, nil, nil, 333,
326
+ nil, 365, -5, 362, nil, 363, nil, 369, 188, nil,
327
+ 388, 385, nil, nil, nil, nil, nil, 353, nil, 339,
328
+ 341, nil, nil, nil, nil, nil, nil, nil, nil, 8,
329
+ nil, 387, 68, nil, nil, nil, 21, 379, 391, 399,
330
+ 87, 352, nil, nil, 88, nil, 96, nil, 387, 405,
331
+ 399, nil, 356, 108, nil, 31, 94, 411, nil, nil,
332
+ 395, 405, 406, 182, 159, 174, 401, nil, nil, nil,
333
+ 412, 266, 421, 422, 413, 414, nil, 172, 216, nil,
334
+ 405, 406, nil, nil, 429, 407, 410, nil ]
326
335
 
327
336
  racc_action_default = [
328
- -164, -164, -1, -6, -7, -8, -9, -10, -11, -12,
329
- -13, -14, -15, -16, -17, -18, -19, -20, -164, -164,
330
- -164, -164, -164, -164, -164, -164, -164, -164, -164, -164,
331
- -133, -164, -2, -3, -164, -164, -104, -164, -23, -164,
332
- -164, -29, -30, -164, -164, -59, -60, -164, -164, -164,
333
- -164, -67, -68, -69, -164, -164, -164, -164, -164, -164,
334
- 362, -4, -5, -25, -164, -25, -164, -164, -164, -58,
335
- -162, -164, -164, -164, -164, -164, -164, -164, -164, -164,
336
- -112, -113, -114, -115, -164, -164, -164, -164, -21, -164,
337
- -105, -22, -24, -27, -164, -164, -164, -43, -164, -164,
338
- -164, -71, -164, -164, -164, -164, -70, -164, -164, -116,
339
- -164, -164, -164, -164, -164, -123, -86, -164, -126, -127,
340
- -26, -164, -164, -164, -164, -164, -32, -163, -73, -164,
341
- -164, -86, -164, -164, -66, -108, -164, -164, -110, -86,
342
- -86, -119, -120, -164, -164, -104, -164, -128, -164, -164,
343
- -164, -164, -164, -38, -39, -40, -33, -106, -164, -164,
344
- -164, -104, -164, -164, -117, -118, -134, -135, -136, -137,
345
- -138, -139, -164, -164, -150, -151, -152, -164, -104, -104,
346
- -164, -164, -87, -88, -164, -124, -164, -28, -164, -164,
347
- -164, -164, -31, -34, -101, -164, -74, -75, -164, -164,
348
- -71, -63, -164, -86, -140, -164, -142, -144, -164, -146,
349
- -164, -164, -164, -164, -164, -156, -158, -160, -109, -111,
350
- -121, -122, -164, -80, -81, -82, -83, -84, -85, -164,
351
- -164, -164, -164, -94, -95, -96, -97, -164, -164, -164,
352
- -164, -164, -164, -164, -104, -164, -107, -164, -164, -164,
353
- -79, -164, -73, -86, -104, -141, -164, -145, -164, -164,
354
- -164, -153, -164, -154, -164, -155, -164, -89, -90, -91,
355
- -164, -93, -99, -164, -98, -125, -164, -164, -44, -164,
356
- -45, -35, -164, -46, -164, -164, -61, -102, -103, -76,
357
- -77, -164, -72, -106, -104, -65, -143, -147, -148, -149,
358
- -157, -159, -161, -164, -100, -164, -164, -131, -41, -42,
359
- -164, -164, -164, -164, -164, -101, -64, -92, -164, -129,
360
- -164, -47, -36, -164, -164, -78, -104, -164, -132, -164,
361
- -164, -164, -62, -130, -37, -164, -164, -164, -164, -164,
362
- -51, -48, -53, -54, -164, -49, -164, -164, -164, -164,
363
- -50, -164, -164, -56, -164, -164, -52, -55, -164, -164,
364
- -164, -57 ]
337
+ -177, -177, -1, -6, -7, -8, -9, -10, -11, -12,
338
+ -13, -14, -15, -16, -17, -18, -19, -20, -177, -177,
339
+ -177, -177, -177, -177, -177, -177, -177, -177, -177, -177,
340
+ -146, -177, -2, -3, -177, -177, -117, -177, -23, -177,
341
+ -177, -32, -33, -177, -177, -72, -73, -177, -177, -177,
342
+ -177, -80, -81, -82, -177, -177, -177, -177, -177, -177,
343
+ 378, -4, -5, -25, -177, -25, -177, -177, -177, -71,
344
+ -175, -177, -177, -177, -177, -177, -177, -177, -177, -177,
345
+ -125, -126, -127, -128, -177, -177, -177, -177, -21, -177,
346
+ -118, -22, -24, -27, -28, -177, -177, -177, -177, -56,
347
+ -177, -177, -177, -84, -177, -177, -177, -177, -83, -177,
348
+ -177, -129, -177, -177, -177, -177, -177, -136, -99, -177,
349
+ -139, -140, -26, -29, -30, -177, -177, -177, -177, -177,
350
+ -177, -35, -176, -86, -177, -177, -99, -177, -177, -79,
351
+ -121, -177, -177, -123, -99, -99, -132, -133, -177, -177,
352
+ -117, -177, -141, -177, -41, -42, -43, -44, -45, -46,
353
+ -177, -177, -177, -177, -51, -52, -53, -36, -37, -38,
354
+ -119, -177, -177, -177, -117, -177, -177, -130, -131, -147,
355
+ -148, -149, -150, -151, -152, -177, -177, -163, -164, -165,
356
+ -177, -117, -117, -177, -177, -100, -101, -177, -137, -177,
357
+ -31, -177, -177, -177, -177, -34, -177, -47, -40, -39,
358
+ -114, -177, -87, -88, -177, -177, -84, -76, -177, -99,
359
+ -153, -177, -155, -157, -177, -159, -177, -177, -177, -177,
360
+ -177, -169, -171, -173, -122, -124, -134, -135, -177, -93,
361
+ -94, -95, -96, -97, -98, -177, -177, -177, -177, -107,
362
+ -108, -109, -110, -177, -177, -177, -177, -177, -177, -177,
363
+ -117, -177, -120, -177, -177, -177, -92, -177, -86, -99,
364
+ -117, -154, -177, -158, -177, -177, -177, -166, -177, -167,
365
+ -177, -168, -177, -102, -103, -104, -177, -106, -112, -177,
366
+ -111, -138, -177, -177, -57, -177, -58, -48, -177, -59,
367
+ -177, -177, -74, -115, -116, -89, -90, -177, -85, -119,
368
+ -117, -78, -156, -160, -161, -162, -170, -172, -174, -177,
369
+ -113, -177, -177, -144, -54, -55, -177, -177, -177, -177,
370
+ -177, -114, -77, -105, -177, -142, -177, -60, -49, -177,
371
+ -177, -91, -117, -177, -145, -177, -177, -177, -75, -143,
372
+ -50, -177, -177, -177, -177, -177, -64, -61, -66, -67,
373
+ -177, -62, -177, -177, -177, -177, -63, -177, -177, -69,
374
+ -177, -177, -65, -68, -177, -177, -177, -70 ]
365
375
 
366
376
  racc_goto_table = [
367
- 63, 152, 145, 244, 165, 194, 157, 128, 197, 281,
368
- 93, 142, 12, 11, 69, 182, 209, 161, 306, 108,
369
- 233, 78, 47, 54, 1, 178, 179, 79, 88, 115,
370
- 91, 341, 345, 336, 250, 321, 350, 352, 124, 206,
371
- 17, 16, 196, 15, 248, 14, 73, 13, 221, 111,
372
- 112, 134, 135, 139, 10, 138, 113, 267, 229, 269,
373
- 327, 271, 234, 9, 8, 7, 246, 164, 141, 156,
374
- 6, 146, 275, 5, 205, 208, 2, 220, 212, 213,
375
- 214, nil, nil, 140, nil, nil, nil, 147, nil, 254,
376
- nil, 187, nil, nil, 192, 334, 268, 289, 270, 119,
377
- 118, 297, 133, nil, nil, nil, 252, nil, nil, 185,
378
- nil, nil, nil, nil, nil, 290, 291, nil, nil, nil,
379
- nil, nil, nil, 296, 326, 201, 298, 299, nil, nil,
380
- 293, nil, nil, nil, nil, nil, nil, nil, nil, 294,
381
- nil, 315, 218, 219, nil, nil, nil, nil, nil, nil,
382
- nil, nil, nil, nil, nil, nil, nil, nil, 311, nil,
377
+ 63, 178, 163, 210, 170, 260, 150, 133, 93, 213,
378
+ 94, 225, 297, 12, 147, 11, 195, 69, 322, 110,
379
+ 168, 47, 54, 249, 174, 79, 88, 78, 91, 357,
380
+ 361, 1, 191, 192, 117, 124, 123, 352, 337, 368,
381
+ 266, 366, 155, 129, 222, 73, 17, 16, 212, 15,
382
+ 264, 205, 113, 237, 115, 144, 114, 14, 139, 140,
383
+ 343, 13, 143, 10, 283, 245, 285, 287, 250, 9,
384
+ 8, 7, 177, 146, 167, 6, 151, 291, 262, 5,
385
+ 221, 224, 2, 228, 229, 230, nil, nil, 145, nil,
386
+ nil, 236, 152, nil, 200, nil, nil, nil, 350, 313,
387
+ 121, 305, 120, 138, 284, 206, 286, 270, 208, nil,
388
+ nil, nil, 209, nil, 198, nil, nil, nil, nil, nil,
389
+ 268, nil, nil, 306, 307, nil, 342, nil, nil, nil,
390
+ nil, 312, nil, nil, 314, 315, nil, nil, 217, 309,
391
+ nil, nil, 331, nil, nil, nil, nil, 208, nil, nil,
392
+ nil, nil, nil, nil, nil, 234, 235, 310, nil, nil,
383
393
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
384
- 317, nil, nil, nil, nil, nil, nil, nil, nil, nil,
385
- nil, 325, nil, nil, nil, nil, nil, 328, nil, nil,
394
+ 327, nil, nil, nil, nil, nil, nil, nil, 333, nil,
395
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, 341,
396
+ nil, nil, nil, nil, nil, 344, nil, nil, nil, nil,
386
397
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
387
- nil, nil, nil, nil, nil, nil, 335, nil, 286, nil,
388
- nil, nil, nil, 340, nil, nil, nil, nil, 295, nil,
389
- nil, nil, nil, nil, nil, nil, nil, 356, nil, nil,
398
+ nil, nil, nil, nil, nil, nil, nil, nil, 351, nil,
399
+ nil, nil, nil, nil, 302, 356, nil, nil, nil, nil,
400
+ nil, nil, nil, nil, 311, nil, nil, nil, nil, 372,
390
401
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
391
402
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
392
- nil, nil, nil, nil, nil, nil, nil, nil, 316, nil,
393
403
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
404
+ nil, nil, nil, nil, 332, nil, nil, nil, nil, nil,
394
405
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
395
406
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
396
- 332 ]
407
+ nil, nil, nil, nil, nil, nil, 348 ]
397
408
 
398
409
  racc_goto_check = [
399
- 16, 20, 33, 32, 39, 31, 30, 29, 37, 21,
400
- 18, 52, 10, 9, 27, 41, 61, 33, 55, 48,
401
- 40, 47, 28, 28, 1, 33, 33, 49, 17, 34,
402
- 17, 24, 24, 25, 40, 23, 22, 26, 19, 39,
403
- 15, 14, 36, 13, 38, 12, 28, 11, 39, 27,
404
- 47, 34, 34, 48, 8, 34, 49, 42, 43, 44,
405
- 55, 45, 46, 7, 6, 5, 41, 50, 51, 18,
406
- 4, 53, 54, 3, 59, 60, 2, 52, 62, 63,
407
- 64, nil, nil, 27, nil, nil, nil, 27, nil, 33,
408
- nil, 18, nil, nil, 18, 21, 39, 37, 39, 10,
409
- 9, 61, 28, nil, nil, nil, 29, nil, nil, 16,
410
- nil, nil, nil, nil, nil, 39, 39, nil, nil, nil,
411
- nil, nil, nil, 39, 32, 16, 39, 39, nil, nil,
412
- 30, nil, nil, nil, nil, nil, nil, nil, nil, 33,
413
- nil, 31, 16, 16, nil, nil, nil, nil, nil, nil,
414
- nil, nil, nil, nil, nil, nil, nil, nil, 20, nil,
410
+ 16, 42, 23, 34, 33, 35, 36, 32, 18, 40,
411
+ 19, 64, 24, 10, 55, 9, 44, 30, 58, 51,
412
+ 21, 31, 31, 43, 36, 52, 17, 50, 17, 27,
413
+ 27, 1, 36, 36, 37, 18, 19, 28, 26, 29,
414
+ 43, 25, 22, 20, 42, 31, 15, 14, 39, 13,
415
+ 41, 21, 30, 42, 52, 51, 50, 12, 37, 37,
416
+ 58, 11, 37, 8, 45, 46, 47, 48, 49, 7,
417
+ 6, 5, 53, 54, 19, 4, 56, 57, 44, 3,
418
+ 62, 63, 2, 65, 66, 67, nil, nil, 30, nil,
419
+ nil, 55, 30, nil, 18, nil, nil, nil, 24, 64,
420
+ 10, 40, 9, 31, 42, 19, 42, 36, 18, nil,
421
+ nil, nil, 19, nil, 16, nil, nil, nil, nil, nil,
422
+ 32, nil, nil, 42, 42, nil, 35, nil, nil, nil,
423
+ nil, 42, nil, nil, 42, 42, nil, nil, 16, 33,
424
+ nil, nil, 34, nil, nil, nil, nil, 18, nil, nil,
425
+ nil, nil, nil, nil, nil, 16, 16, 36, nil, nil,
415
426
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
416
- 39, nil, nil, nil, nil, nil, nil, nil, nil, nil,
417
- nil, 39, nil, nil, nil, nil, nil, 39, nil, nil,
427
+ 23, nil, nil, nil, nil, nil, nil, nil, 42, nil,
428
+ nil, nil, nil, nil, nil, nil, nil, nil, nil, 42,
429
+ nil, nil, nil, nil, nil, 42, nil, nil, nil, nil,
418
430
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
419
- nil, nil, nil, nil, nil, nil, 20, nil, 16, nil,
420
- nil, nil, nil, 20, nil, nil, nil, nil, 16, nil,
421
- nil, nil, nil, nil, nil, nil, nil, 20, nil, nil,
431
+ nil, nil, nil, nil, nil, nil, nil, nil, 23, nil,
432
+ nil, nil, nil, nil, 16, 23, nil, nil, nil, nil,
433
+ nil, nil, nil, nil, 16, nil, nil, nil, nil, 23,
422
434
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
423
435
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
424
- nil, nil, nil, nil, nil, nil, nil, nil, 16, nil,
425
436
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
437
+ nil, nil, nil, nil, 16, nil, nil, nil, nil, nil,
426
438
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
427
439
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
428
- 16 ]
440
+ nil, nil, nil, nil, nil, nil, 16 ]
429
441
 
430
442
  racc_goto_pointer = [
431
- nil, 24, 76, 73, 70, 65, 64, 63, 54, 13,
432
- 12, 47, 45, 43, 41, 40, -36, -35, -57, -60,
433
- -124, -234, -309, -275, -307, -298, -310, -30, -3, -94,
434
- -122, -152, -191, -114, -56, nil, -116, -150, -154, -133,
435
- -164, -129, -165, -126, -171, -171, -122, -34, -59, -28,
436
- -69, -46, -103, -46, -166, -258, nil, nil, nil, -98,
437
- -98, -157, -99, -98, -97 ]
443
+ nil, 31, 82, 79, 75, 71, 70, 69, 63, 15,
444
+ 13, 61, 57, 49, 47, 46, -36, -37, -59, -57,
445
+ -57, -111, -84, -128, -247, -320, -288, -325, -310, -324,
446
+ -27, -4, -96, -129, -167, -205, -112, -51, nil, -123,
447
+ -162, -164, -141, -174, -133, -174, -132, -180, -181, -129,
448
+ -28, -59, -30, -69, -43, -102, -43, -177, -274, nil,
449
+ nil, nil, -105, -105, -175, -107, -106, -105 ]
438
450
 
439
451
  racc_goto_default = [
440
452
  nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
441
- nil, nil, nil, nil, nil, nil, nil, nil, nil, nil,
442
- nil, nil, 97, 283, nil, nil, nil, nil, nil, nil,
443
- nil, nil, nil, nil, nil, 52, nil, nil, nil, 307,
444
- nil, nil, 183, nil, 167, nil, nil, nil, nil, nil,
445
- 109, nil, nil, nil, nil, nil, 166, 168, 169, nil,
446
- nil, nil, nil, nil, nil ]
453
+ nil, nil, nil, nil, nil, nil, nil, nil, 169, nil,
454
+ nil, nil, nil, nil, nil, 99, 299, nil, nil, nil,
455
+ nil, nil, nil, nil, nil, nil, nil, nil, 52, nil,
456
+ nil, nil, 323, nil, nil, 196, nil, 180, nil, nil,
457
+ nil, nil, nil, 111, nil, nil, nil, nil, nil, 179,
458
+ 181, 182, nil, nil, nil, nil, nil, nil ]
447
459
 
448
460
  racc_reduce_table = [
449
461
  0, 0, :racc_error,
450
- 1, 78, :_reduce_1,
451
- 2, 78, :_reduce_2,
452
- 2, 78, :_reduce_3,
453
- 3, 78, :_reduce_4,
454
- 3, 78, :_reduce_5,
455
- 1, 78, :_reduce_6,
456
- 1, 78, :_reduce_7,
457
- 1, 79, :_reduce_none,
458
- 1, 79, :_reduce_none,
459
- 1, 79, :_reduce_none,
460
- 1, 79, :_reduce_none,
461
- 1, 79, :_reduce_none,
462
- 1, 79, :_reduce_none,
463
- 1, 79, :_reduce_none,
464
- 1, 79, :_reduce_none,
465
- 1, 79, :_reduce_none,
466
- 1, 79, :_reduce_none,
467
- 1, 79, :_reduce_none,
468
- 1, 79, :_reduce_none,
469
- 1, 79, :_reduce_none,
470
- 4, 80, :_reduce_21,
471
- 4, 80, :_reduce_22,
472
- 2, 80, :_reduce_23,
473
- 4, 80, :_reduce_24,
474
- 0, 94, :_reduce_none,
475
- 2, 94, :_reduce_26,
476
- 4, 81, :_reduce_27,
477
- 7, 81, :_reduce_28,
478
- 2, 82, :_reduce_29,
479
- 2, 82, :_reduce_30,
480
- 7, 83, :_reduce_31,
481
- 5, 83, :_reduce_32,
482
- 6, 83, :_reduce_33,
483
- 3, 96, :_reduce_34,
484
- 5, 96, :_reduce_35,
485
- 7, 96, :_reduce_36,
486
- 9, 96, :_reduce_37,
487
- 1, 97, :_reduce_38,
488
- 1, 97, :_reduce_39,
489
- 1, 97, :_reduce_40,
490
- 7, 95, :_reduce_41,
491
- 7, 95, :_reduce_42,
492
- 1, 95, :_reduce_none,
493
- 6, 99, :_reduce_44,
494
- 6, 99, :_reduce_45,
495
- 1, 98, :_reduce_46,
496
- 3, 98, :_reduce_47,
497
- 7, 100, :_reduce_48,
498
- 7, 100, :_reduce_49,
499
- 8, 100, :_reduce_50,
500
- 2, 102, :_reduce_51,
501
- 5, 102, :_reduce_52,
502
- 1, 101, :_reduce_53,
503
- 1, 101, :_reduce_54,
504
- 4, 101, :_reduce_55,
505
- 1, 103, :_reduce_56,
506
- 3, 103, :_reduce_57,
507
- 3, 84, :_reduce_58,
508
- 2, 85, :_reduce_59,
509
- 2, 85, :_reduce_60,
510
- 9, 86, :_reduce_61,
511
- 12, 86, :_reduce_62,
512
- 7, 87, :_reduce_63,
513
- 10, 87, :_reduce_64,
514
- 9, 87, :_reduce_65,
515
- 5, 88, :_reduce_66,
516
- 1, 105, :_reduce_67,
517
- 1, 105, :_reduce_68,
518
- 1, 112, :_reduce_69,
519
- 3, 112, :_reduce_70,
520
- 0, 106, :_reduce_none,
521
- 5, 106, :_reduce_72,
522
- 0, 107, :_reduce_none,
523
- 2, 107, :_reduce_74,
524
- 1, 113, :_reduce_75,
525
- 3, 113, :_reduce_76,
526
- 3, 114, :_reduce_77,
527
- 5, 114, :_reduce_78,
528
- 1, 115, :_reduce_none,
529
- 1, 117, :_reduce_80,
530
- 1, 117, :_reduce_81,
531
- 1, 117, :_reduce_82,
532
- 1, 117, :_reduce_83,
533
- 1, 117, :_reduce_84,
534
- 1, 117, :_reduce_none,
535
- 0, 110, :_reduce_none,
536
- 2, 110, :_reduce_87,
537
- 1, 118, :_reduce_88,
538
- 3, 118, :_reduce_89,
539
- 3, 119, :_reduce_90,
540
- 3, 119, :_reduce_91,
541
- 5, 119, :_reduce_92,
542
- 3, 119, :_reduce_93,
543
- 1, 120, :_reduce_none,
544
- 1, 120, :_reduce_none,
545
- 1, 120, :_reduce_96,
546
- 1, 123, :_reduce_none,
547
- 2, 123, :_reduce_98,
548
- 1, 122, :_reduce_99,
549
- 2, 122, :_reduce_100,
550
- 0, 109, :_reduce_none,
551
- 2, 109, :_reduce_102,
552
- 2, 109, :_reduce_103,
553
- 0, 93, :_reduce_none,
554
- 2, 93, :_reduce_105,
555
- 0, 108, :_reduce_none,
556
- 2, 108, :_reduce_107,
557
- 5, 89, :_reduce_108,
558
- 7, 89, :_reduce_109,
559
- 5, 89, :_reduce_110,
560
- 7, 89, :_reduce_111,
561
- 1, 124, :_reduce_112,
562
- 1, 124, :_reduce_113,
563
- 1, 126, :_reduce_114,
564
- 1, 126, :_reduce_115,
565
- 1, 125, :_reduce_116,
566
- 3, 125, :_reduce_117,
567
- 3, 127, :_reduce_118,
568
- 2, 111, :_reduce_119,
569
- 1, 128, :_reduce_120,
570
- 3, 128, :_reduce_121,
571
- 3, 129, :_reduce_122,
572
- 4, 90, :_reduce_123,
573
- 6, 90, :_reduce_124,
574
- 8, 91, :_reduce_125,
575
- 4, 91, :_reduce_126,
576
- 4, 91, :_reduce_127,
462
+ 1, 82, :_reduce_1,
463
+ 2, 82, :_reduce_2,
464
+ 2, 82, :_reduce_3,
465
+ 3, 82, :_reduce_4,
466
+ 3, 82, :_reduce_5,
467
+ 1, 82, :_reduce_6,
468
+ 1, 82, :_reduce_7,
469
+ 1, 83, :_reduce_none,
470
+ 1, 83, :_reduce_none,
471
+ 1, 83, :_reduce_none,
472
+ 1, 83, :_reduce_none,
473
+ 1, 83, :_reduce_none,
474
+ 1, 83, :_reduce_none,
475
+ 1, 83, :_reduce_none,
476
+ 1, 83, :_reduce_none,
477
+ 1, 83, :_reduce_none,
478
+ 1, 83, :_reduce_none,
479
+ 1, 83, :_reduce_none,
480
+ 1, 83, :_reduce_none,
481
+ 1, 83, :_reduce_none,
482
+ 4, 84, :_reduce_21,
483
+ 4, 84, :_reduce_22,
484
+ 2, 84, :_reduce_23,
485
+ 4, 84, :_reduce_24,
486
+ 0, 98, :_reduce_none,
487
+ 2, 98, :_reduce_26,
488
+ 4, 85, :_reduce_27,
489
+ 4, 85, :_reduce_28,
490
+ 5, 85, :_reduce_29,
491
+ 5, 85, :_reduce_30,
492
+ 7, 85, :_reduce_31,
493
+ 2, 86, :_reduce_32,
494
+ 2, 86, :_reduce_33,
495
+ 7, 87, :_reduce_34,
496
+ 5, 87, :_reduce_35,
497
+ 6, 87, :_reduce_36,
498
+ 6, 87, :_reduce_37,
499
+ 1, 102, :_reduce_38,
500
+ 2, 102, :_reduce_39,
501
+ 2, 102, :_reduce_40,
502
+ 3, 100, :_reduce_41,
503
+ 3, 100, :_reduce_42,
504
+ 1, 103, :_reduce_none,
505
+ 1, 103, :_reduce_none,
506
+ 1, 103, :_reduce_none,
507
+ 1, 103, :_reduce_none,
508
+ 3, 101, :_reduce_47,
509
+ 5, 101, :_reduce_48,
510
+ 7, 101, :_reduce_49,
511
+ 9, 101, :_reduce_50,
512
+ 1, 104, :_reduce_51,
513
+ 1, 104, :_reduce_52,
514
+ 1, 104, :_reduce_53,
515
+ 7, 99, :_reduce_54,
516
+ 7, 99, :_reduce_55,
517
+ 1, 99, :_reduce_none,
518
+ 6, 106, :_reduce_57,
519
+ 6, 106, :_reduce_58,
520
+ 1, 105, :_reduce_59,
521
+ 3, 105, :_reduce_60,
522
+ 7, 107, :_reduce_61,
523
+ 7, 107, :_reduce_62,
524
+ 8, 107, :_reduce_63,
525
+ 2, 109, :_reduce_64,
526
+ 5, 109, :_reduce_65,
527
+ 1, 108, :_reduce_66,
528
+ 1, 108, :_reduce_67,
529
+ 4, 108, :_reduce_68,
530
+ 1, 110, :_reduce_69,
531
+ 3, 110, :_reduce_70,
532
+ 3, 88, :_reduce_71,
533
+ 2, 89, :_reduce_72,
534
+ 2, 89, :_reduce_73,
535
+ 9, 90, :_reduce_74,
536
+ 12, 90, :_reduce_75,
537
+ 7, 91, :_reduce_76,
538
+ 10, 91, :_reduce_77,
539
+ 9, 91, :_reduce_78,
540
+ 5, 92, :_reduce_79,
541
+ 1, 112, :_reduce_80,
542
+ 1, 112, :_reduce_81,
543
+ 1, 119, :_reduce_82,
544
+ 3, 119, :_reduce_83,
545
+ 0, 113, :_reduce_none,
546
+ 5, 113, :_reduce_85,
547
+ 0, 114, :_reduce_none,
548
+ 2, 114, :_reduce_87,
549
+ 1, 120, :_reduce_88,
550
+ 3, 120, :_reduce_89,
551
+ 3, 121, :_reduce_90,
552
+ 5, 121, :_reduce_91,
553
+ 1, 122, :_reduce_none,
554
+ 1, 124, :_reduce_93,
555
+ 1, 124, :_reduce_94,
556
+ 1, 124, :_reduce_95,
557
+ 1, 124, :_reduce_96,
558
+ 1, 124, :_reduce_97,
559
+ 1, 124, :_reduce_none,
560
+ 0, 117, :_reduce_none,
561
+ 2, 117, :_reduce_100,
562
+ 1, 125, :_reduce_101,
563
+ 3, 125, :_reduce_102,
564
+ 3, 126, :_reduce_103,
565
+ 3, 126, :_reduce_104,
566
+ 5, 126, :_reduce_105,
567
+ 3, 126, :_reduce_106,
568
+ 1, 127, :_reduce_none,
569
+ 1, 127, :_reduce_none,
570
+ 1, 127, :_reduce_109,
577
571
  1, 130, :_reduce_none,
578
- 3, 131, :_reduce_129,
579
- 5, 131, :_reduce_130,
580
- 1, 132, :_reduce_131,
581
- 3, 132, :_reduce_132,
582
- 1, 92, :_reduce_133,
583
- 1, 116, :_reduce_none,
584
- 1, 116, :_reduce_none,
585
- 1, 116, :_reduce_none,
586
- 1, 116, :_reduce_none,
587
- 1, 116, :_reduce_none,
588
- 1, 116, :_reduce_none,
589
- 2, 134, :_reduce_none,
590
- 3, 134, :_reduce_141,
591
- 1, 136, :_reduce_142,
592
- 3, 136, :_reduce_143,
593
- 2, 135, :_reduce_144,
594
- 3, 135, :_reduce_145,
572
+ 2, 130, :_reduce_111,
573
+ 1, 129, :_reduce_112,
574
+ 2, 129, :_reduce_113,
575
+ 0, 116, :_reduce_none,
576
+ 2, 116, :_reduce_115,
577
+ 2, 116, :_reduce_116,
578
+ 0, 97, :_reduce_none,
579
+ 2, 97, :_reduce_118,
580
+ 0, 115, :_reduce_none,
581
+ 2, 115, :_reduce_120,
582
+ 5, 93, :_reduce_121,
583
+ 7, 93, :_reduce_122,
584
+ 5, 93, :_reduce_123,
585
+ 7, 93, :_reduce_124,
586
+ 1, 131, :_reduce_125,
587
+ 1, 131, :_reduce_126,
588
+ 1, 133, :_reduce_127,
589
+ 1, 133, :_reduce_128,
590
+ 1, 132, :_reduce_129,
591
+ 3, 132, :_reduce_130,
592
+ 3, 134, :_reduce_131,
593
+ 2, 118, :_reduce_132,
594
+ 1, 135, :_reduce_133,
595
+ 3, 135, :_reduce_134,
596
+ 3, 136, :_reduce_135,
597
+ 4, 94, :_reduce_136,
598
+ 6, 94, :_reduce_137,
599
+ 8, 95, :_reduce_138,
600
+ 4, 95, :_reduce_139,
601
+ 4, 95, :_reduce_140,
595
602
  1, 137, :_reduce_none,
596
- 3, 137, :_reduce_147,
597
- 3, 138, :_reduce_148,
598
- 3, 138, :_reduce_149,
599
- 1, 133, :_reduce_none,
600
- 1, 133, :_reduce_none,
601
- 1, 133, :_reduce_none,
602
- 3, 121, :_reduce_153,
603
- 3, 121, :_reduce_154,
604
- 3, 121, :_reduce_155,
605
- 1, 139, :_reduce_156,
606
- 3, 139, :_reduce_157,
607
- 1, 140, :_reduce_158,
608
- 3, 140, :_reduce_159,
609
- 1, 141, :_reduce_160,
610
- 3, 141, :_reduce_161,
611
- 1, 104, :_reduce_162,
612
- 3, 104, :_reduce_163 ]
613
-
614
- racc_reduce_n = 164
615
-
616
- racc_shift_n = 362
603
+ 3, 138, :_reduce_142,
604
+ 5, 138, :_reduce_143,
605
+ 1, 139, :_reduce_144,
606
+ 3, 139, :_reduce_145,
607
+ 1, 96, :_reduce_146,
608
+ 1, 123, :_reduce_none,
609
+ 1, 123, :_reduce_none,
610
+ 1, 123, :_reduce_none,
611
+ 1, 123, :_reduce_none,
612
+ 1, 123, :_reduce_none,
613
+ 1, 123, :_reduce_none,
614
+ 2, 141, :_reduce_none,
615
+ 3, 141, :_reduce_154,
616
+ 1, 143, :_reduce_155,
617
+ 3, 143, :_reduce_156,
618
+ 2, 142, :_reduce_157,
619
+ 3, 142, :_reduce_158,
620
+ 1, 144, :_reduce_none,
621
+ 3, 144, :_reduce_160,
622
+ 3, 145, :_reduce_161,
623
+ 3, 145, :_reduce_162,
624
+ 1, 140, :_reduce_none,
625
+ 1, 140, :_reduce_none,
626
+ 1, 140, :_reduce_none,
627
+ 3, 128, :_reduce_166,
628
+ 3, 128, :_reduce_167,
629
+ 3, 128, :_reduce_168,
630
+ 1, 146, :_reduce_169,
631
+ 3, 146, :_reduce_170,
632
+ 1, 147, :_reduce_171,
633
+ 3, 147, :_reduce_172,
634
+ 1, 148, :_reduce_173,
635
+ 3, 148, :_reduce_174,
636
+ 1, 111, :_reduce_175,
637
+ 3, 111, :_reduce_176 ]
638
+
639
+ racc_reduce_n = 177
640
+
641
+ racc_shift_n = 378
617
642
 
618
643
  racc_token_table = {
619
644
  false => 0,
@@ -638,63 +663,67 @@ racc_token_table = {
638
663
  :STRING => 19,
639
664
  "(" => 20,
640
665
  ")" => 21,
641
- :HASH => 22,
642
- "," => 23,
643
- :RANGE => 24,
644
- :NUMBER => 25,
645
- :BINARY => 26,
646
- :READ => 27,
647
- :EQ => 28,
648
- :NUMBER_VALUE => 29,
649
- :WRITE => 30,
650
- :GLOBAL => 31,
651
- :ALL => 32,
652
- :KEYS_ONLY => 33,
653
- :INCLUDE => 34,
654
- :DROP => 35,
655
- :DESCRIBE => 36,
656
- :DESC => 37,
657
- :SELECT => 38,
658
- :FROM => 39,
659
- :COUNT => 40,
660
- "*" => 41,
661
- "/" => 42,
662
- :GET => 43,
663
- :WHERE => 44,
664
- :AND => 45,
665
- :BETWEEN => 46,
666
- :LE => 47,
667
- :LT => 48,
668
- :GE => 49,
669
- :BEGINS_WITH => 50,
670
- :IN => 51,
671
- :IS => 52,
672
- :NE => 53,
673
- :CONTAINS => 54,
674
- :NOT => 55,
675
- :NULL => 56,
676
- :ORDER => 57,
677
- :ASC => 58,
678
- :LIMIT => 59,
679
- :HAVING => 60,
680
- :UPDATE => 61,
681
- :SET => 62,
682
- :ADD => 63,
683
- :DELETE => 64,
684
- :DEL => 65,
685
- :INSERT => 66,
686
- :INTO => 67,
687
- :VALUES => 68,
688
- :NEXT => 69,
689
- :BOOL => 70,
690
- "[" => 71,
691
- "]" => 72,
692
- "{" => 73,
693
- "}" => 74,
694
- ":" => 75,
695
- :BINARY_VALUE => 76 }
696
-
697
- racc_nt_base = 77
666
+ :STREAM => 22,
667
+ :EQ => 23,
668
+ :BOOL => 24,
669
+ :NEW_IMAGE => 25,
670
+ :OLD_IMAGE => 26,
671
+ :NEW_AND_OLD_IMAGES => 27,
672
+ :KEYS_ONLY => 28,
673
+ :HASH => 29,
674
+ "," => 30,
675
+ :RANGE => 31,
676
+ :NUMBER => 32,
677
+ :BINARY => 33,
678
+ :READ => 34,
679
+ :NUMBER_VALUE => 35,
680
+ :WRITE => 36,
681
+ :GLOBAL => 37,
682
+ :ALL => 38,
683
+ :INCLUDE => 39,
684
+ :DROP => 40,
685
+ :DESCRIBE => 41,
686
+ :DESC => 42,
687
+ :SELECT => 43,
688
+ :FROM => 44,
689
+ :COUNT => 45,
690
+ "*" => 46,
691
+ "/" => 47,
692
+ :GET => 48,
693
+ :WHERE => 49,
694
+ :AND => 50,
695
+ :BETWEEN => 51,
696
+ :LE => 52,
697
+ :LT => 53,
698
+ :GE => 54,
699
+ :BEGINS_WITH => 55,
700
+ :IN => 56,
701
+ :IS => 57,
702
+ :NE => 58,
703
+ :CONTAINS => 59,
704
+ :NOT => 60,
705
+ :NULL => 61,
706
+ :ORDER => 62,
707
+ :ASC => 63,
708
+ :LIMIT => 64,
709
+ :HAVING => 65,
710
+ :UPDATE => 66,
711
+ :SET => 67,
712
+ :ADD => 68,
713
+ :DELETE => 69,
714
+ :DEL => 70,
715
+ :INSERT => 71,
716
+ :INTO => 72,
717
+ :VALUES => 73,
718
+ :NEXT => 74,
719
+ "[" => 75,
720
+ "]" => 76,
721
+ "{" => 77,
722
+ "}" => 78,
723
+ ":" => 79,
724
+ :BINARY_VALUE => 80 }
725
+
726
+ racc_nt_base = 81
698
727
 
699
728
  racc_use_result_var = false
700
729
 
@@ -737,18 +766,23 @@ Racc_token_to_s_table = [
737
766
  "STRING",
738
767
  "\"(\"",
739
768
  "\")\"",
769
+ "STREAM",
770
+ "EQ",
771
+ "BOOL",
772
+ "NEW_IMAGE",
773
+ "OLD_IMAGE",
774
+ "NEW_AND_OLD_IMAGES",
775
+ "KEYS_ONLY",
740
776
  "HASH",
741
777
  "\",\"",
742
778
  "RANGE",
743
779
  "NUMBER",
744
780
  "BINARY",
745
781
  "READ",
746
- "EQ",
747
782
  "NUMBER_VALUE",
748
783
  "WRITE",
749
784
  "GLOBAL",
750
785
  "ALL",
751
- "KEYS_ONLY",
752
786
  "INCLUDE",
753
787
  "DROP",
754
788
  "DESCRIBE",
@@ -785,7 +819,6 @@ Racc_token_to_s_table = [
785
819
  "INTO",
786
820
  "VALUES",
787
821
  "NEXT",
788
- "BOOL",
789
822
  "\"[\"",
790
823
  "\"]\"",
791
824
  "\"{\"",
@@ -811,7 +844,10 @@ Racc_token_to_s_table = [
811
844
  "limit_clause",
812
845
  "like_clause",
813
846
  "capacity_clause",
847
+ "stream_clause",
814
848
  "create_definition",
849
+ "capacity_stream_clause",
850
+ "stream_view_type",
815
851
  "attr_type_list",
816
852
  "index_definition_list",
817
853
  "strict_capacity_clause",
@@ -978,176 +1014,247 @@ module_eval(<<'.,.,', 'ddb-parser.y', 66)
978
1014
 
979
1015
  module_eval(<<'.,.,', 'ddb-parser.y', 71)
980
1016
  def _reduce_27(val, _values)
981
- struct(:ALTER_TABLE, :table => val[2], :index_name => nil, :capacity => val[3])
1017
+ struct(:ALTER_TABLE, :table => val[2], :index_name => nil, :capacity => val[3], :stream => nil)
982
1018
 
983
1019
  end
984
1020
  .,.,
985
1021
 
986
- module_eval(<<'.,.,', 'ddb-parser.y', 76)
1022
+ module_eval(<<'.,.,', 'ddb-parser.y', 75)
987
1023
  def _reduce_28(val, _values)
988
- struct(:ALTER_TABLE, :table => val[2], :index_name => val[5], :capacity => val[6])
1024
+ struct(:ALTER_TABLE, :table => val[2], :index_name => nil, :capacity => nil, :stream => val[3])
989
1025
 
990
1026
  end
991
1027
  .,.,
992
1028
 
993
- module_eval(<<'.,.,', 'ddb-parser.y', 81)
1029
+ module_eval(<<'.,.,', 'ddb-parser.y', 79)
994
1030
  def _reduce_29(val, _values)
1031
+ struct(:ALTER_TABLE, :table => val[2], :index_name => nil, :capacity => val[3], :stream => val[4])
1032
+
1033
+ end
1034
+ .,.,
1035
+
1036
+ module_eval(<<'.,.,', 'ddb-parser.y', 83)
1037
+ def _reduce_30(val, _values)
1038
+ struct(:ALTER_TABLE, :table => val[2], :index_name => nil, :capacity => val[4], :stream => val[3])
1039
+
1040
+ end
1041
+ .,.,
1042
+
1043
+ module_eval(<<'.,.,', 'ddb-parser.y', 87)
1044
+ def _reduce_31(val, _values)
1045
+ struct(:ALTER_TABLE, :table => val[2], :index_name => val[5], :capacity => val[6])
1046
+
1047
+ end
1048
+ .,.,
1049
+
1050
+ module_eval(<<'.,.,', 'ddb-parser.y', 92)
1051
+ def _reduce_32(val, _values)
995
1052
  struct(:USE, :endpoint_or_region => val[1])
996
1053
 
997
1054
  end
998
1055
  .,.,
999
1056
 
1000
- module_eval(<<'.,.,', 'ddb-parser.y', 86)
1001
- def _reduce_30(val, _values)
1057
+ module_eval(<<'.,.,', 'ddb-parser.y', 97)
1058
+ def _reduce_33(val, _values)
1002
1059
  struct(:USE, :endpoint_or_region => val[1])
1003
1060
 
1004
1061
  end
1005
1062
  .,.,
1006
1063
 
1007
- module_eval(<<'.,.,', 'ddb-parser.y', 91)
1008
- def _reduce_31(val, _values)
1009
- struct(:CREATE, val[4].merge(:table => val[2], :capacity => val[6]))
1064
+ module_eval(<<'.,.,', 'ddb-parser.y', 102)
1065
+ def _reduce_34(val, _values)
1066
+ struct(:CREATE, val[4].merge(:table => val[2], :capacity => val[6][:capacity], :stream => val[6][:stream]))
1010
1067
 
1011
1068
  end
1012
1069
  .,.,
1013
1070
 
1014
- module_eval(<<'.,.,', 'ddb-parser.y', 95)
1015
- def _reduce_32(val, _values)
1016
- struct(:CREATE_LIKE, :table => val[2], :like => val[4], :capacity => nil)
1071
+ module_eval(<<'.,.,', 'ddb-parser.y', 106)
1072
+ def _reduce_35(val, _values)
1073
+ struct(:CREATE_LIKE, :table => val[2], :like => val[4], :capacity => nil, :stream => nil)
1017
1074
 
1018
1075
  end
1019
1076
  .,.,
1020
1077
 
1021
- module_eval(<<'.,.,', 'ddb-parser.y', 99)
1022
- def _reduce_33(val, _values)
1023
- struct(:CREATE_LIKE, :table => val[2], :like => val[4], :capacity => val[5])
1078
+ module_eval(<<'.,.,', 'ddb-parser.y', 110)
1079
+ def _reduce_36(val, _values)
1080
+ struct(:CREATE_LIKE, :table => val[2], :like => val[4], :capacity => nil, :stream => val[5])
1024
1081
 
1025
1082
  end
1026
1083
  .,.,
1027
1084
 
1028
- module_eval(<<'.,.,', 'ddb-parser.y', 104)
1029
- def _reduce_34(val, _values)
1085
+ module_eval(<<'.,.,', 'ddb-parser.y', 114)
1086
+ def _reduce_37(val, _values)
1087
+ struct(:CREATE_LIKE, :table => val[2], :like => val[4], :capacity => val[5][:capacity], :stream => val[5][:stream])
1088
+
1089
+ end
1090
+ .,.,
1091
+
1092
+ module_eval(<<'.,.,', 'ddb-parser.y', 119)
1093
+ def _reduce_38(val, _values)
1094
+ {:capacity => val[0], :stream => nil}
1095
+
1096
+ end
1097
+ .,.,
1098
+
1099
+ module_eval(<<'.,.,', 'ddb-parser.y', 123)
1100
+ def _reduce_39(val, _values)
1101
+ {:capacity => val[0], :stream => val[1]}
1102
+
1103
+ end
1104
+ .,.,
1105
+
1106
+ module_eval(<<'.,.,', 'ddb-parser.y', 127)
1107
+ def _reduce_40(val, _values)
1108
+ {:capacity => val[1], :stream => val[0]}
1109
+
1110
+ end
1111
+ .,.,
1112
+
1113
+ module_eval(<<'.,.,', 'ddb-parser.y', 132)
1114
+ def _reduce_41(val, _values)
1115
+ val[2]
1116
+
1117
+ end
1118
+ .,.,
1119
+
1120
+ module_eval(<<'.,.,', 'ddb-parser.y', 136)
1121
+ def _reduce_42(val, _values)
1122
+ val[2]
1123
+
1124
+ end
1125
+ .,.,
1126
+
1127
+ # reduce 43 omitted
1128
+
1129
+ # reduce 44 omitted
1130
+
1131
+ # reduce 45 omitted
1132
+
1133
+ # reduce 46 omitted
1134
+
1135
+ module_eval(<<'.,.,', 'ddb-parser.y', 146)
1136
+ def _reduce_47(val, _values)
1030
1137
  {:hash => {:name => val[0], :type => val[1]}, :range => nil, :indices => nil}
1031
1138
 
1032
1139
  end
1033
1140
  .,.,
1034
1141
 
1035
- module_eval(<<'.,.,', 'ddb-parser.y', 108)
1036
- def _reduce_35(val, _values)
1142
+ module_eval(<<'.,.,', 'ddb-parser.y', 150)
1143
+ def _reduce_48(val, _values)
1037
1144
  {:hash => {:name => val[0], :type => val[1]}, :range => nil, :indices => val[4]}
1038
1145
 
1039
1146
  end
1040
1147
  .,.,
1041
1148
 
1042
- module_eval(<<'.,.,', 'ddb-parser.y', 112)
1043
- def _reduce_36(val, _values)
1149
+ module_eval(<<'.,.,', 'ddb-parser.y', 154)
1150
+ def _reduce_49(val, _values)
1044
1151
  {:hash => {:name => val[0], :type => val[1]}, :range => {:name => val[4], :type => val[5]}, :indices => nil}
1045
1152
 
1046
1153
  end
1047
1154
  .,.,
1048
1155
 
1049
- module_eval(<<'.,.,', 'ddb-parser.y', 116)
1050
- def _reduce_37(val, _values)
1156
+ module_eval(<<'.,.,', 'ddb-parser.y', 158)
1157
+ def _reduce_50(val, _values)
1051
1158
  {:hash => {:name => val[0], :type => val[1]}, :range => {:name => val[4], :type => val[5]}, :indices => val[8]}
1052
1159
 
1053
1160
  end
1054
1161
  .,.,
1055
1162
 
1056
- module_eval(<<'.,.,', 'ddb-parser.y', 121)
1057
- def _reduce_38(val, _values)
1163
+ module_eval(<<'.,.,', 'ddb-parser.y', 163)
1164
+ def _reduce_51(val, _values)
1058
1165
  'S'
1059
1166
 
1060
1167
  end
1061
1168
  .,.,
1062
1169
 
1063
- module_eval(<<'.,.,', 'ddb-parser.y', 125)
1064
- def _reduce_39(val, _values)
1170
+ module_eval(<<'.,.,', 'ddb-parser.y', 167)
1171
+ def _reduce_52(val, _values)
1065
1172
  'N'
1066
1173
 
1067
1174
  end
1068
1175
  .,.,
1069
1176
 
1070
- module_eval(<<'.,.,', 'ddb-parser.y', 129)
1071
- def _reduce_40(val, _values)
1177
+ module_eval(<<'.,.,', 'ddb-parser.y', 171)
1178
+ def _reduce_53(val, _values)
1072
1179
  'B'
1073
1180
 
1074
1181
  end
1075
1182
  .,.,
1076
1183
 
1077
- module_eval(<<'.,.,', 'ddb-parser.y', 134)
1078
- def _reduce_41(val, _values)
1184
+ module_eval(<<'.,.,', 'ddb-parser.y', 176)
1185
+ def _reduce_54(val, _values)
1079
1186
  {:read => val[2], :write => val[6]}
1080
1187
 
1081
1188
  end
1082
1189
  .,.,
1083
1190
 
1084
- module_eval(<<'.,.,', 'ddb-parser.y', 138)
1085
- def _reduce_42(val, _values)
1191
+ module_eval(<<'.,.,', 'ddb-parser.y', 180)
1192
+ def _reduce_55(val, _values)
1086
1193
  {:read => val[6], :write => val[2]}
1087
1194
 
1088
1195
  end
1089
1196
  .,.,
1090
1197
 
1091
- # reduce 43 omitted
1198
+ # reduce 56 omitted
1092
1199
 
1093
- module_eval(<<'.,.,', 'ddb-parser.y', 144)
1094
- def _reduce_44(val, _values)
1200
+ module_eval(<<'.,.,', 'ddb-parser.y', 186)
1201
+ def _reduce_57(val, _values)
1095
1202
  {:read => val[2], :write => val[5]}
1096
1203
 
1097
1204
  end
1098
1205
  .,.,
1099
1206
 
1100
- module_eval(<<'.,.,', 'ddb-parser.y', 148)
1101
- def _reduce_45(val, _values)
1207
+ module_eval(<<'.,.,', 'ddb-parser.y', 190)
1208
+ def _reduce_58(val, _values)
1102
1209
  {:read => val[5], :write => val[2]}
1103
1210
 
1104
1211
  end
1105
1212
  .,.,
1106
1213
 
1107
- module_eval(<<'.,.,', 'ddb-parser.y', 153)
1108
- def _reduce_46(val, _values)
1214
+ module_eval(<<'.,.,', 'ddb-parser.y', 195)
1215
+ def _reduce_59(val, _values)
1109
1216
  [val[0]]
1110
1217
 
1111
1218
  end
1112
1219
  .,.,
1113
1220
 
1114
- module_eval(<<'.,.,', 'ddb-parser.y', 157)
1115
- def _reduce_47(val, _values)
1221
+ module_eval(<<'.,.,', 'ddb-parser.y', 199)
1222
+ def _reduce_60(val, _values)
1116
1223
  val[0] + [val[2]]
1117
1224
 
1118
1225
  end
1119
1226
  .,.,
1120
1227
 
1121
- module_eval(<<'.,.,', 'ddb-parser.y', 162)
1122
- def _reduce_48(val, _values)
1228
+ module_eval(<<'.,.,', 'ddb-parser.y', 204)
1229
+ def _reduce_61(val, _values)
1123
1230
  {:name => val[1], :key => val[3], :type => val[4], :projection => val[6]}
1124
1231
 
1125
1232
  end
1126
1233
  .,.,
1127
1234
 
1128
- module_eval(<<'.,.,', 'ddb-parser.y', 166)
1129
- def _reduce_49(val, _values)
1235
+ module_eval(<<'.,.,', 'ddb-parser.y', 208)
1236
+ def _reduce_62(val, _values)
1130
1237
  {:name => val[2], :keys => val[4], :projection => val[6], :global => true}
1131
1238
 
1132
1239
  end
1133
1240
  .,.,
1134
1241
 
1135
- module_eval(<<'.,.,', 'ddb-parser.y', 170)
1136
- def _reduce_50(val, _values)
1242
+ module_eval(<<'.,.,', 'ddb-parser.y', 212)
1243
+ def _reduce_63(val, _values)
1137
1244
  {:name => val[2], :keys => val[4], :projection => val[6], :capacity => val[7], :global => true}
1138
1245
 
1139
1246
  end
1140
1247
  .,.,
1141
1248
 
1142
- module_eval(<<'.,.,', 'ddb-parser.y', 175)
1143
- def _reduce_51(val, _values)
1249
+ module_eval(<<'.,.,', 'ddb-parser.y', 217)
1250
+ def _reduce_64(val, _values)
1144
1251
  {:hash => {:key => val[0], :type => val[1]}}
1145
1252
 
1146
1253
  end
1147
1254
  .,.,
1148
1255
 
1149
- module_eval(<<'.,.,', 'ddb-parser.y', 179)
1150
- def _reduce_52(val, _values)
1256
+ module_eval(<<'.,.,', 'ddb-parser.y', 221)
1257
+ def _reduce_65(val, _values)
1151
1258
  {
1152
1259
  :hash => {:key => val[0], :type => val[1]},
1153
1260
  :range => {:key => val[3], :type => val[4]},
@@ -1156,352 +1263,352 @@ module_eval(<<'.,.,', 'ddb-parser.y', 179)
1156
1263
  end
1157
1264
  .,.,
1158
1265
 
1159
- module_eval(<<'.,.,', 'ddb-parser.y', 187)
1160
- def _reduce_53(val, _values)
1266
+ module_eval(<<'.,.,', 'ddb-parser.y', 229)
1267
+ def _reduce_66(val, _values)
1161
1268
  {:type => 'ALL'}
1162
1269
 
1163
1270
  end
1164
1271
  .,.,
1165
1272
 
1166
- module_eval(<<'.,.,', 'ddb-parser.y', 191)
1167
- def _reduce_54(val, _values)
1273
+ module_eval(<<'.,.,', 'ddb-parser.y', 233)
1274
+ def _reduce_67(val, _values)
1168
1275
  {:type => 'KEYS_ONLY'}
1169
1276
 
1170
1277
  end
1171
1278
  .,.,
1172
1279
 
1173
- module_eval(<<'.,.,', 'ddb-parser.y', 195)
1174
- def _reduce_55(val, _values)
1280
+ module_eval(<<'.,.,', 'ddb-parser.y', 237)
1281
+ def _reduce_68(val, _values)
1175
1282
  {:type => 'INCLUDE', :attrs => val[2]}
1176
1283
 
1177
1284
  end
1178
1285
  .,.,
1179
1286
 
1180
- module_eval(<<'.,.,', 'ddb-parser.y', 200)
1181
- def _reduce_56(val, _values)
1287
+ module_eval(<<'.,.,', 'ddb-parser.y', 242)
1288
+ def _reduce_69(val, _values)
1182
1289
  [val[0]]
1183
1290
 
1184
1291
  end
1185
1292
  .,.,
1186
1293
 
1187
- module_eval(<<'.,.,', 'ddb-parser.y', 204)
1188
- def _reduce_57(val, _values)
1294
+ module_eval(<<'.,.,', 'ddb-parser.y', 246)
1295
+ def _reduce_70(val, _values)
1189
1296
  val[0] + [val[2]]
1190
1297
 
1191
1298
  end
1192
1299
  .,.,
1193
1300
 
1194
- module_eval(<<'.,.,', 'ddb-parser.y', 209)
1195
- def _reduce_58(val, _values)
1301
+ module_eval(<<'.,.,', 'ddb-parser.y', 251)
1302
+ def _reduce_71(val, _values)
1196
1303
  struct(:DROP, :tables => val[2])
1197
1304
 
1198
1305
  end
1199
1306
  .,.,
1200
1307
 
1201
- module_eval(<<'.,.,', 'ddb-parser.y', 214)
1202
- def _reduce_59(val, _values)
1308
+ module_eval(<<'.,.,', 'ddb-parser.y', 256)
1309
+ def _reduce_72(val, _values)
1203
1310
  struct(:DESCRIBE, :table => val[1])
1204
1311
 
1205
1312
  end
1206
1313
  .,.,
1207
1314
 
1208
- module_eval(<<'.,.,', 'ddb-parser.y', 218)
1209
- def _reduce_60(val, _values)
1315
+ module_eval(<<'.,.,', 'ddb-parser.y', 260)
1316
+ def _reduce_73(val, _values)
1210
1317
  struct(:DESCRIBE, :table => val[1])
1211
1318
 
1212
1319
  end
1213
1320
  .,.,
1214
1321
 
1215
- module_eval(<<'.,.,', 'ddb-parser.y', 223)
1216
- def _reduce_61(val, _values)
1322
+ module_eval(<<'.,.,', 'ddb-parser.y', 265)
1323
+ def _reduce_74(val, _values)
1217
1324
  struct(:SELECT, :attrs => val[1], :table => val[3], :index => val[4], :conds => val[5], :having => val[6], :order_asc => val[7], :limit => val[8], :count => false)
1218
1325
 
1219
1326
  end
1220
1327
  .,.,
1221
1328
 
1222
- module_eval(<<'.,.,', 'ddb-parser.y', 227)
1223
- def _reduce_62(val, _values)
1329
+ module_eval(<<'.,.,', 'ddb-parser.y', 269)
1330
+ def _reduce_75(val, _values)
1224
1331
  struct(:SELECT, :attrs => [], :table => val[6], :index => val[7], :conds => val[8], :having => val[9], :order_asc => val[10], :limit => val[11], :count => true)
1225
1332
 
1226
1333
  end
1227
1334
  .,.,
1228
1335
 
1229
- module_eval(<<'.,.,', 'ddb-parser.y', 232)
1230
- def _reduce_63(val, _values)
1336
+ module_eval(<<'.,.,', 'ddb-parser.y', 274)
1337
+ def _reduce_76(val, _values)
1231
1338
  struct(:SCAN, :attrs => val[2], :table => val[4], :conds => val[5], :limit => val[6], :count => false, :segment => nil, :total_segments => nil)
1232
1339
 
1233
1340
  end
1234
1341
  .,.,
1235
1342
 
1236
- module_eval(<<'.,.,', 'ddb-parser.y', 236)
1237
- def _reduce_64(val, _values)
1343
+ module_eval(<<'.,.,', 'ddb-parser.y', 278)
1344
+ def _reduce_77(val, _values)
1238
1345
  struct(:SCAN, :attrs => [], :table => val[7], :conds => val[8], :limit => val[9], :count => true, :segment => nil, :total_segments => nil)
1239
1346
 
1240
1347
  end
1241
1348
  .,.,
1242
1349
 
1243
- module_eval(<<'.,.,', 'ddb-parser.y', 240)
1244
- def _reduce_65(val, _values)
1350
+ module_eval(<<'.,.,', 'ddb-parser.y', 282)
1351
+ def _reduce_78(val, _values)
1245
1352
  struct(:SCAN, :attrs => val[4], :table => val[6], :conds => val[7], :limit => val[8], :count => false, :segment => val[1], :total_segments => val[3])
1246
1353
 
1247
1354
  end
1248
1355
  .,.,
1249
1356
 
1250
- module_eval(<<'.,.,', 'ddb-parser.y', 245)
1251
- def _reduce_66(val, _values)
1357
+ module_eval(<<'.,.,', 'ddb-parser.y', 287)
1358
+ def _reduce_79(val, _values)
1252
1359
  struct(:GET, :attrs => val[1], :table => val[3], :conds => val[4])
1253
1360
 
1254
1361
  end
1255
1362
  .,.,
1256
1363
 
1257
- module_eval(<<'.,.,', 'ddb-parser.y', 250)
1258
- def _reduce_67(val, _values)
1364
+ module_eval(<<'.,.,', 'ddb-parser.y', 292)
1365
+ def _reduce_80(val, _values)
1259
1366
  []
1260
1367
 
1261
1368
  end
1262
1369
  .,.,
1263
1370
 
1264
- module_eval(<<'.,.,', 'ddb-parser.y', 254)
1265
- def _reduce_68(val, _values)
1371
+ module_eval(<<'.,.,', 'ddb-parser.y', 296)
1372
+ def _reduce_81(val, _values)
1266
1373
  val[0]
1267
1374
 
1268
1375
  end
1269
1376
  .,.,
1270
1377
 
1271
- module_eval(<<'.,.,', 'ddb-parser.y', 259)
1272
- def _reduce_69(val, _values)
1378
+ module_eval(<<'.,.,', 'ddb-parser.y', 301)
1379
+ def _reduce_82(val, _values)
1273
1380
  [val[0]]
1274
1381
 
1275
1382
  end
1276
1383
  .,.,
1277
1384
 
1278
- module_eval(<<'.,.,', 'ddb-parser.y', 263)
1279
- def _reduce_70(val, _values)
1385
+ module_eval(<<'.,.,', 'ddb-parser.y', 305)
1386
+ def _reduce_83(val, _values)
1280
1387
  val[0] + [val[2]]
1281
1388
 
1282
1389
  end
1283
1390
  .,.,
1284
1391
 
1285
- # reduce 71 omitted
1392
+ # reduce 84 omitted
1286
1393
 
1287
- module_eval(<<'.,.,', 'ddb-parser.y', 269)
1288
- def _reduce_72(val, _values)
1394
+ module_eval(<<'.,.,', 'ddb-parser.y', 311)
1395
+ def _reduce_85(val, _values)
1289
1396
  val[3]
1290
1397
 
1291
1398
  end
1292
1399
  .,.,
1293
1400
 
1294
- # reduce 73 omitted
1401
+ # reduce 86 omitted
1295
1402
 
1296
- module_eval(<<'.,.,', 'ddb-parser.y', 275)
1297
- def _reduce_74(val, _values)
1403
+ module_eval(<<'.,.,', 'ddb-parser.y', 317)
1404
+ def _reduce_87(val, _values)
1298
1405
  val[1]
1299
1406
 
1300
1407
  end
1301
1408
  .,.,
1302
1409
 
1303
- module_eval(<<'.,.,', 'ddb-parser.y', 280)
1304
- def _reduce_75(val, _values)
1410
+ module_eval(<<'.,.,', 'ddb-parser.y', 322)
1411
+ def _reduce_88(val, _values)
1305
1412
  [val[0]]
1306
1413
 
1307
1414
  end
1308
1415
  .,.,
1309
1416
 
1310
- module_eval(<<'.,.,', 'ddb-parser.y', 284)
1311
- def _reduce_76(val, _values)
1417
+ module_eval(<<'.,.,', 'ddb-parser.y', 326)
1418
+ def _reduce_89(val, _values)
1312
1419
  val[0] + [val[2]]
1313
1420
 
1314
1421
  end
1315
1422
  .,.,
1316
1423
 
1317
- module_eval(<<'.,.,', 'ddb-parser.y', 289)
1318
- def _reduce_77(val, _values)
1424
+ module_eval(<<'.,.,', 'ddb-parser.y', 331)
1425
+ def _reduce_90(val, _values)
1319
1426
  [val[0], val[1].to_s.upcase.to_sym, [val[2]]]
1320
1427
 
1321
1428
  end
1322
1429
  .,.,
1323
1430
 
1324
- module_eval(<<'.,.,', 'ddb-parser.y', 293)
1325
- def _reduce_78(val, _values)
1431
+ module_eval(<<'.,.,', 'ddb-parser.y', 335)
1432
+ def _reduce_91(val, _values)
1326
1433
  [val[0], val[1].to_s.upcase.to_sym, [val[2], val[4]]]
1327
1434
 
1328
1435
  end
1329
1436
  .,.,
1330
1437
 
1331
- # reduce 79 omitted
1438
+ # reduce 92 omitted
1332
1439
 
1333
- module_eval(<<'.,.,', 'ddb-parser.y', 300)
1334
- def _reduce_80(val, _values)
1440
+ module_eval(<<'.,.,', 'ddb-parser.y', 342)
1441
+ def _reduce_93(val, _values)
1335
1442
  :EQ
1336
1443
 
1337
1444
  end
1338
1445
  .,.,
1339
1446
 
1340
- module_eval(<<'.,.,', 'ddb-parser.y', 304)
1341
- def _reduce_81(val, _values)
1447
+ module_eval(<<'.,.,', 'ddb-parser.y', 346)
1448
+ def _reduce_94(val, _values)
1342
1449
  :LE
1343
1450
 
1344
1451
  end
1345
1452
  .,.,
1346
1453
 
1347
- module_eval(<<'.,.,', 'ddb-parser.y', 308)
1348
- def _reduce_82(val, _values)
1454
+ module_eval(<<'.,.,', 'ddb-parser.y', 350)
1455
+ def _reduce_95(val, _values)
1349
1456
  :LT
1350
1457
 
1351
1458
  end
1352
1459
  .,.,
1353
1460
 
1354
- module_eval(<<'.,.,', 'ddb-parser.y', 312)
1355
- def _reduce_83(val, _values)
1461
+ module_eval(<<'.,.,', 'ddb-parser.y', 354)
1462
+ def _reduce_96(val, _values)
1356
1463
  :GE
1357
1464
 
1358
1465
  end
1359
1466
  .,.,
1360
1467
 
1361
- module_eval(<<'.,.,', 'ddb-parser.y', 316)
1362
- def _reduce_84(val, _values)
1468
+ module_eval(<<'.,.,', 'ddb-parser.y', 358)
1469
+ def _reduce_97(val, _values)
1363
1470
  :GT
1364
1471
 
1365
1472
  end
1366
1473
  .,.,
1367
1474
 
1368
- # reduce 85 omitted
1475
+ # reduce 98 omitted
1369
1476
 
1370
- # reduce 86 omitted
1477
+ # reduce 99 omitted
1371
1478
 
1372
- module_eval(<<'.,.,', 'ddb-parser.y', 323)
1373
- def _reduce_87(val, _values)
1479
+ module_eval(<<'.,.,', 'ddb-parser.y', 365)
1480
+ def _reduce_100(val, _values)
1374
1481
  val[1]
1375
1482
 
1376
1483
  end
1377
1484
  .,.,
1378
1485
 
1379
- module_eval(<<'.,.,', 'ddb-parser.y', 328)
1380
- def _reduce_88(val, _values)
1486
+ module_eval(<<'.,.,', 'ddb-parser.y', 370)
1487
+ def _reduce_101(val, _values)
1381
1488
  [val[0]]
1382
1489
 
1383
1490
  end
1384
1491
  .,.,
1385
1492
 
1386
- module_eval(<<'.,.,', 'ddb-parser.y', 332)
1387
- def _reduce_89(val, _values)
1493
+ module_eval(<<'.,.,', 'ddb-parser.y', 374)
1494
+ def _reduce_102(val, _values)
1388
1495
  val[0] + [val[2]]
1389
1496
 
1390
1497
  end
1391
1498
  .,.,
1392
1499
 
1393
- module_eval(<<'.,.,', 'ddb-parser.y', 337)
1394
- def _reduce_90(val, _values)
1500
+ module_eval(<<'.,.,', 'ddb-parser.y', 379)
1501
+ def _reduce_103(val, _values)
1395
1502
  [val[0], val[1].to_s.upcase.to_sym, [val[2]]]
1396
1503
 
1397
1504
  end
1398
1505
  .,.,
1399
1506
 
1400
- module_eval(<<'.,.,', 'ddb-parser.y', 341)
1401
- def _reduce_91(val, _values)
1507
+ module_eval(<<'.,.,', 'ddb-parser.y', 383)
1508
+ def _reduce_104(val, _values)
1402
1509
  [val[0], val[1].to_s.upcase.to_sym, val[2]]
1403
1510
 
1404
1511
  end
1405
1512
  .,.,
1406
1513
 
1407
- module_eval(<<'.,.,', 'ddb-parser.y', 345)
1408
- def _reduce_92(val, _values)
1514
+ module_eval(<<'.,.,', 'ddb-parser.y', 387)
1515
+ def _reduce_105(val, _values)
1409
1516
  [val[0], val[1].to_s.upcase.to_sym, [val[2], val[4]]]
1410
1517
 
1411
1518
  end
1412
1519
  .,.,
1413
1520
 
1414
- module_eval(<<'.,.,', 'ddb-parser.y', 349)
1415
- def _reduce_93(val, _values)
1521
+ module_eval(<<'.,.,', 'ddb-parser.y', 391)
1522
+ def _reduce_106(val, _values)
1416
1523
  [val[0], val[2].to_s.upcase.to_sym, []]
1417
1524
 
1418
1525
  end
1419
1526
  .,.,
1420
1527
 
1421
- # reduce 94 omitted
1528
+ # reduce 107 omitted
1422
1529
 
1423
- # reduce 95 omitted
1530
+ # reduce 108 omitted
1424
1531
 
1425
- module_eval(<<'.,.,', 'ddb-parser.y', 355)
1426
- def _reduce_96(val, _values)
1532
+ module_eval(<<'.,.,', 'ddb-parser.y', 397)
1533
+ def _reduce_109(val, _values)
1427
1534
  :NE
1428
1535
 
1429
1536
  end
1430
1537
  .,.,
1431
1538
 
1432
- # reduce 97 omitted
1539
+ # reduce 110 omitted
1433
1540
 
1434
- module_eval(<<'.,.,', 'ddb-parser.y', 361)
1435
- def _reduce_98(val, _values)
1541
+ module_eval(<<'.,.,', 'ddb-parser.y', 403)
1542
+ def _reduce_111(val, _values)
1436
1543
  :NOT_CONTAINS
1437
1544
 
1438
1545
  end
1439
1546
  .,.,
1440
1547
 
1441
- module_eval(<<'.,.,', 'ddb-parser.y', 365)
1442
- def _reduce_99(val, _values)
1548
+ module_eval(<<'.,.,', 'ddb-parser.y', 407)
1549
+ def _reduce_112(val, _values)
1443
1550
  :NULL
1444
1551
 
1445
1552
  end
1446
1553
  .,.,
1447
1554
 
1448
- module_eval(<<'.,.,', 'ddb-parser.y', 369)
1449
- def _reduce_100(val, _values)
1555
+ module_eval(<<'.,.,', 'ddb-parser.y', 411)
1556
+ def _reduce_113(val, _values)
1450
1557
  :NOT_NULL
1451
1558
 
1452
1559
  end
1453
1560
  .,.,
1454
1561
 
1455
- # reduce 101 omitted
1562
+ # reduce 114 omitted
1456
1563
 
1457
- module_eval(<<'.,.,', 'ddb-parser.y', 375)
1458
- def _reduce_102(val, _values)
1564
+ module_eval(<<'.,.,', 'ddb-parser.y', 417)
1565
+ def _reduce_115(val, _values)
1459
1566
  true
1460
1567
 
1461
1568
  end
1462
1569
  .,.,
1463
1570
 
1464
- module_eval(<<'.,.,', 'ddb-parser.y', 379)
1465
- def _reduce_103(val, _values)
1571
+ module_eval(<<'.,.,', 'ddb-parser.y', 421)
1572
+ def _reduce_116(val, _values)
1466
1573
  false
1467
1574
 
1468
1575
  end
1469
1576
  .,.,
1470
1577
 
1471
- # reduce 104 omitted
1578
+ # reduce 117 omitted
1472
1579
 
1473
- module_eval(<<'.,.,', 'ddb-parser.y', 385)
1474
- def _reduce_105(val, _values)
1580
+ module_eval(<<'.,.,', 'ddb-parser.y', 427)
1581
+ def _reduce_118(val, _values)
1475
1582
  val[1]
1476
1583
 
1477
1584
  end
1478
1585
  .,.,
1479
1586
 
1480
- # reduce 106 omitted
1587
+ # reduce 119 omitted
1481
1588
 
1482
- module_eval(<<'.,.,', 'ddb-parser.y', 391)
1483
- def _reduce_107(val, _values)
1589
+ module_eval(<<'.,.,', 'ddb-parser.y', 433)
1590
+ def _reduce_120(val, _values)
1484
1591
  val[1]
1485
1592
 
1486
1593
  end
1487
1594
  .,.,
1488
1595
 
1489
- module_eval(<<'.,.,', 'ddb-parser.y', 396)
1490
- def _reduce_108(val, _values)
1596
+ module_eval(<<'.,.,', 'ddb-parser.y', 438)
1597
+ def _reduce_121(val, _values)
1491
1598
  struct(:UPDATE, :table => val[1], :action => val[2], :attrs => val[3], :conds => val[4])
1492
1599
 
1493
1600
  end
1494
1601
  .,.,
1495
1602
 
1496
- module_eval(<<'.,.,', 'ddb-parser.y', 400)
1497
- def _reduce_109(val, _values)
1603
+ module_eval(<<'.,.,', 'ddb-parser.y', 442)
1604
+ def _reduce_122(val, _values)
1498
1605
  struct(:UPDATE_ALL, :table => val[2], :action => val[3], :attrs => val[4], :conds => val[5], :limit => val[6])
1499
1606
 
1500
1607
  end
1501
1608
  .,.,
1502
1609
 
1503
- module_eval(<<'.,.,', 'ddb-parser.y', 404)
1504
- def _reduce_110(val, _values)
1610
+ module_eval(<<'.,.,', 'ddb-parser.y', 446)
1611
+ def _reduce_123(val, _values)
1505
1612
  attrs = {}
1506
1613
  val[3].each {|i| attrs[i] = true }
1507
1614
  struct(:UPDATE, :table => val[1], :action => val[2], :attrs => attrs, :conds => val[4])
@@ -1509,8 +1616,8 @@ module_eval(<<'.,.,', 'ddb-parser.y', 404)
1509
1616
  end
1510
1617
  .,.,
1511
1618
 
1512
- module_eval(<<'.,.,', 'ddb-parser.y', 410)
1513
- def _reduce_111(val, _values)
1619
+ module_eval(<<'.,.,', 'ddb-parser.y', 452)
1620
+ def _reduce_124(val, _values)
1514
1621
  attrs = {}
1515
1622
  val[4].each {|i| attrs[i] = true }
1516
1623
  struct(:UPDATE_ALL, :table => val[2], :action => val[3], :attrs => attrs, :conds => val[5], :limit => val[6])
@@ -1518,305 +1625,305 @@ module_eval(<<'.,.,', 'ddb-parser.y', 410)
1518
1625
  end
1519
1626
  .,.,
1520
1627
 
1521
- module_eval(<<'.,.,', 'ddb-parser.y', 417)
1522
- def _reduce_112(val, _values)
1628
+ module_eval(<<'.,.,', 'ddb-parser.y', 459)
1629
+ def _reduce_125(val, _values)
1523
1630
  :PUT
1524
1631
 
1525
1632
  end
1526
1633
  .,.,
1527
1634
 
1528
- module_eval(<<'.,.,', 'ddb-parser.y', 421)
1529
- def _reduce_113(val, _values)
1635
+ module_eval(<<'.,.,', 'ddb-parser.y', 463)
1636
+ def _reduce_126(val, _values)
1530
1637
  :ADD
1531
1638
 
1532
1639
  end
1533
1640
  .,.,
1534
1641
 
1535
- module_eval(<<'.,.,', 'ddb-parser.y', 426)
1536
- def _reduce_114(val, _values)
1642
+ module_eval(<<'.,.,', 'ddb-parser.y', 468)
1643
+ def _reduce_127(val, _values)
1537
1644
  :DELETE
1538
1645
 
1539
1646
  end
1540
1647
  .,.,
1541
1648
 
1542
- module_eval(<<'.,.,', 'ddb-parser.y', 430)
1543
- def _reduce_115(val, _values)
1649
+ module_eval(<<'.,.,', 'ddb-parser.y', 472)
1650
+ def _reduce_128(val, _values)
1544
1651
  :DELETE
1545
1652
 
1546
1653
  end
1547
1654
  .,.,
1548
1655
 
1549
- module_eval(<<'.,.,', 'ddb-parser.y', 435)
1550
- def _reduce_116(val, _values)
1656
+ module_eval(<<'.,.,', 'ddb-parser.y', 477)
1657
+ def _reduce_129(val, _values)
1551
1658
  [val[0]]
1552
1659
 
1553
1660
  end
1554
1661
  .,.,
1555
1662
 
1556
- module_eval(<<'.,.,', 'ddb-parser.y', 439)
1557
- def _reduce_117(val, _values)
1663
+ module_eval(<<'.,.,', 'ddb-parser.y', 481)
1664
+ def _reduce_130(val, _values)
1558
1665
  val[0] + [val[2]]
1559
1666
 
1560
1667
  end
1561
1668
  .,.,
1562
1669
 
1563
- module_eval(<<'.,.,', 'ddb-parser.y', 444)
1564
- def _reduce_118(val, _values)
1670
+ module_eval(<<'.,.,', 'ddb-parser.y', 486)
1671
+ def _reduce_131(val, _values)
1565
1672
  [val[0], val[2]]
1566
1673
 
1567
1674
  end
1568
1675
  .,.,
1569
1676
 
1570
- module_eval(<<'.,.,', 'ddb-parser.y', 449)
1571
- def _reduce_119(val, _values)
1677
+ module_eval(<<'.,.,', 'ddb-parser.y', 491)
1678
+ def _reduce_132(val, _values)
1572
1679
  val[1]
1573
1680
 
1574
1681
  end
1575
1682
  .,.,
1576
1683
 
1577
- module_eval(<<'.,.,', 'ddb-parser.y', 454)
1578
- def _reduce_120(val, _values)
1684
+ module_eval(<<'.,.,', 'ddb-parser.y', 496)
1685
+ def _reduce_133(val, _values)
1579
1686
  [val[0]]
1580
1687
 
1581
1688
  end
1582
1689
  .,.,
1583
1690
 
1584
- module_eval(<<'.,.,', 'ddb-parser.y', 458)
1585
- def _reduce_121(val, _values)
1691
+ module_eval(<<'.,.,', 'ddb-parser.y', 500)
1692
+ def _reduce_134(val, _values)
1586
1693
  val[0] + [val[2]]
1587
1694
 
1588
1695
  end
1589
1696
  .,.,
1590
1697
 
1591
- module_eval(<<'.,.,', 'ddb-parser.y', 463)
1592
- def _reduce_122(val, _values)
1698
+ module_eval(<<'.,.,', 'ddb-parser.y', 505)
1699
+ def _reduce_135(val, _values)
1593
1700
  [val[0], val[2]]
1594
1701
 
1595
1702
  end
1596
1703
  .,.,
1597
1704
 
1598
- module_eval(<<'.,.,', 'ddb-parser.y', 468)
1599
- def _reduce_123(val, _values)
1705
+ module_eval(<<'.,.,', 'ddb-parser.y', 510)
1706
+ def _reduce_136(val, _values)
1600
1707
  struct(:DELETE, :table => val[2], :conds => val[3])
1601
1708
 
1602
1709
  end
1603
1710
  .,.,
1604
1711
 
1605
- module_eval(<<'.,.,', 'ddb-parser.y', 472)
1606
- def _reduce_124(val, _values)
1712
+ module_eval(<<'.,.,', 'ddb-parser.y', 514)
1713
+ def _reduce_137(val, _values)
1607
1714
  struct(:DELETE_ALL, :table => val[3], :conds => val[4], :limit => val[5])
1608
1715
 
1609
1716
  end
1610
1717
  .,.,
1611
1718
 
1612
- module_eval(<<'.,.,', 'ddb-parser.y', 477)
1613
- def _reduce_125(val, _values)
1719
+ module_eval(<<'.,.,', 'ddb-parser.y', 519)
1720
+ def _reduce_138(val, _values)
1614
1721
  struct(:INSERT, :table => val[2], :attrs => val[4], :values => val[7])
1615
1722
 
1616
1723
  end
1617
1724
  .,.,
1618
1725
 
1619
- module_eval(<<'.,.,', 'ddb-parser.y', 481)
1620
- def _reduce_126(val, _values)
1726
+ module_eval(<<'.,.,', 'ddb-parser.y', 523)
1727
+ def _reduce_139(val, _values)
1621
1728
  struct(:INSERT_SELECT, :table => val[2], :select => val[3])
1622
1729
 
1623
1730
  end
1624
1731
  .,.,
1625
1732
 
1626
- module_eval(<<'.,.,', 'ddb-parser.y', 485)
1627
- def _reduce_127(val, _values)
1733
+ module_eval(<<'.,.,', 'ddb-parser.y', 527)
1734
+ def _reduce_140(val, _values)
1628
1735
  struct(:INSERT_SCAN, :table => val[2], :select => val[3])
1629
1736
 
1630
1737
  end
1631
1738
  .,.,
1632
1739
 
1633
- # reduce 128 omitted
1740
+ # reduce 141 omitted
1634
1741
 
1635
- module_eval(<<'.,.,', 'ddb-parser.y', 492)
1636
- def _reduce_129(val, _values)
1742
+ module_eval(<<'.,.,', 'ddb-parser.y', 534)
1743
+ def _reduce_142(val, _values)
1637
1744
  [val[1]]
1638
1745
 
1639
1746
  end
1640
1747
  .,.,
1641
1748
 
1642
- module_eval(<<'.,.,', 'ddb-parser.y', 496)
1643
- def _reduce_130(val, _values)
1749
+ module_eval(<<'.,.,', 'ddb-parser.y', 538)
1750
+ def _reduce_143(val, _values)
1644
1751
  val[0] + [val[3]]
1645
1752
 
1646
1753
  end
1647
1754
  .,.,
1648
1755
 
1649
- module_eval(<<'.,.,', 'ddb-parser.y', 501)
1650
- def _reduce_131(val, _values)
1756
+ module_eval(<<'.,.,', 'ddb-parser.y', 543)
1757
+ def _reduce_144(val, _values)
1651
1758
  [val[0]]
1652
1759
 
1653
1760
  end
1654
1761
  .,.,
1655
1762
 
1656
- module_eval(<<'.,.,', 'ddb-parser.y', 505)
1657
- def _reduce_132(val, _values)
1763
+ module_eval(<<'.,.,', 'ddb-parser.y', 547)
1764
+ def _reduce_145(val, _values)
1658
1765
  val[0] + [val[2]]
1659
1766
 
1660
1767
  end
1661
1768
  .,.,
1662
1769
 
1663
- module_eval(<<'.,.,', 'ddb-parser.y', 510)
1664
- def _reduce_133(val, _values)
1770
+ module_eval(<<'.,.,', 'ddb-parser.y', 552)
1771
+ def _reduce_146(val, _values)
1665
1772
  struct(:NEXT)
1666
1773
 
1667
1774
  end
1668
1775
  .,.,
1669
1776
 
1670
- # reduce 134 omitted
1777
+ # reduce 147 omitted
1671
1778
 
1672
- # reduce 135 omitted
1779
+ # reduce 148 omitted
1673
1780
 
1674
- # reduce 136 omitted
1781
+ # reduce 149 omitted
1675
1782
 
1676
- # reduce 137 omitted
1783
+ # reduce 150 omitted
1677
1784
 
1678
- # reduce 138 omitted
1785
+ # reduce 151 omitted
1679
1786
 
1680
- # reduce 139 omitted
1787
+ # reduce 152 omitted
1681
1788
 
1682
- # reduce 140 omitted
1789
+ # reduce 153 omitted
1683
1790
 
1684
- module_eval(<<'.,.,', 'ddb-parser.y', 523)
1685
- def _reduce_141(val, _values)
1791
+ module_eval(<<'.,.,', 'ddb-parser.y', 565)
1792
+ def _reduce_154(val, _values)
1686
1793
  val[1]
1687
1794
 
1688
1795
  end
1689
1796
  .,.,
1690
1797
 
1691
- module_eval(<<'.,.,', 'ddb-parser.y', 528)
1692
- def _reduce_142(val, _values)
1798
+ module_eval(<<'.,.,', 'ddb-parser.y', 570)
1799
+ def _reduce_155(val, _values)
1693
1800
  [val[0]]
1694
1801
 
1695
1802
  end
1696
1803
  .,.,
1697
1804
 
1698
- module_eval(<<'.,.,', 'ddb-parser.y', 532)
1699
- def _reduce_143(val, _values)
1805
+ module_eval(<<'.,.,', 'ddb-parser.y', 574)
1806
+ def _reduce_156(val, _values)
1700
1807
  val[0] + [val[2]]
1701
1808
 
1702
1809
  end
1703
1810
  .,.,
1704
1811
 
1705
- module_eval(<<'.,.,', 'ddb-parser.y', 537)
1706
- def _reduce_144(val, _values)
1812
+ module_eval(<<'.,.,', 'ddb-parser.y', 579)
1813
+ def _reduce_157(val, _values)
1707
1814
  {}
1708
1815
 
1709
1816
  end
1710
1817
  .,.,
1711
1818
 
1712
- module_eval(<<'.,.,', 'ddb-parser.y', 541)
1713
- def _reduce_145(val, _values)
1819
+ module_eval(<<'.,.,', 'ddb-parser.y', 583)
1820
+ def _reduce_158(val, _values)
1714
1821
  val[1]
1715
1822
 
1716
1823
  end
1717
1824
  .,.,
1718
1825
 
1719
- # reduce 146 omitted
1826
+ # reduce 159 omitted
1720
1827
 
1721
- module_eval(<<'.,.,', 'ddb-parser.y', 547)
1722
- def _reduce_147(val, _values)
1828
+ module_eval(<<'.,.,', 'ddb-parser.y', 589)
1829
+ def _reduce_160(val, _values)
1723
1830
  val[0].merge(val[2])
1724
1831
 
1725
1832
  end
1726
1833
  .,.,
1727
1834
 
1728
- module_eval(<<'.,.,', 'ddb-parser.y', 552)
1729
- def _reduce_148(val, _values)
1835
+ module_eval(<<'.,.,', 'ddb-parser.y', 594)
1836
+ def _reduce_161(val, _values)
1730
1837
  {val[0] => val[2]}
1731
1838
 
1732
1839
  end
1733
1840
  .,.,
1734
1841
 
1735
- module_eval(<<'.,.,', 'ddb-parser.y', 556)
1736
- def _reduce_149(val, _values)
1842
+ module_eval(<<'.,.,', 'ddb-parser.y', 598)
1843
+ def _reduce_162(val, _values)
1737
1844
  {val[0] => val[2]}
1738
1845
 
1739
1846
  end
1740
1847
  .,.,
1741
1848
 
1742
- # reduce 150 omitted
1849
+ # reduce 163 omitted
1743
1850
 
1744
- # reduce 151 omitted
1851
+ # reduce 164 omitted
1745
1852
 
1746
- # reduce 152 omitted
1853
+ # reduce 165 omitted
1747
1854
 
1748
- module_eval(<<'.,.,', 'ddb-parser.y', 565)
1749
- def _reduce_153(val, _values)
1855
+ module_eval(<<'.,.,', 'ddb-parser.y', 607)
1856
+ def _reduce_166(val, _values)
1750
1857
  val[1]
1751
1858
 
1752
1859
  end
1753
1860
  .,.,
1754
1861
 
1755
- module_eval(<<'.,.,', 'ddb-parser.y', 569)
1756
- def _reduce_154(val, _values)
1862
+ module_eval(<<'.,.,', 'ddb-parser.y', 611)
1863
+ def _reduce_167(val, _values)
1757
1864
  val[1]
1758
1865
 
1759
1866
  end
1760
1867
  .,.,
1761
1868
 
1762
- module_eval(<<'.,.,', 'ddb-parser.y', 573)
1763
- def _reduce_155(val, _values)
1869
+ module_eval(<<'.,.,', 'ddb-parser.y', 615)
1870
+ def _reduce_168(val, _values)
1764
1871
  val[1]
1765
1872
 
1766
1873
  end
1767
1874
  .,.,
1768
1875
 
1769
- module_eval(<<'.,.,', 'ddb-parser.y', 578)
1770
- def _reduce_156(val, _values)
1876
+ module_eval(<<'.,.,', 'ddb-parser.y', 620)
1877
+ def _reduce_169(val, _values)
1771
1878
  Set[val[0]]
1772
1879
 
1773
1880
  end
1774
1881
  .,.,
1775
1882
 
1776
- module_eval(<<'.,.,', 'ddb-parser.y', 582)
1777
- def _reduce_157(val, _values)
1883
+ module_eval(<<'.,.,', 'ddb-parser.y', 624)
1884
+ def _reduce_170(val, _values)
1778
1885
  val[0] + Set[val[2]]
1779
1886
 
1780
1887
  end
1781
1888
  .,.,
1782
1889
 
1783
- module_eval(<<'.,.,', 'ddb-parser.y', 587)
1784
- def _reduce_158(val, _values)
1890
+ module_eval(<<'.,.,', 'ddb-parser.y', 629)
1891
+ def _reduce_171(val, _values)
1785
1892
  Set[val[0]]
1786
1893
 
1787
1894
  end
1788
1895
  .,.,
1789
1896
 
1790
- module_eval(<<'.,.,', 'ddb-parser.y', 591)
1791
- def _reduce_159(val, _values)
1897
+ module_eval(<<'.,.,', 'ddb-parser.y', 633)
1898
+ def _reduce_172(val, _values)
1792
1899
  val[0] + Set[val[2]]
1793
1900
 
1794
1901
  end
1795
1902
  .,.,
1796
1903
 
1797
- module_eval(<<'.,.,', 'ddb-parser.y', 596)
1798
- def _reduce_160(val, _values)
1904
+ module_eval(<<'.,.,', 'ddb-parser.y', 638)
1905
+ def _reduce_173(val, _values)
1799
1906
  Set[val[0]]
1800
1907
 
1801
1908
  end
1802
1909
  .,.,
1803
1910
 
1804
- module_eval(<<'.,.,', 'ddb-parser.y', 600)
1805
- def _reduce_161(val, _values)
1911
+ module_eval(<<'.,.,', 'ddb-parser.y', 642)
1912
+ def _reduce_174(val, _values)
1806
1913
  val[0] + Set[val[2]]
1807
1914
 
1808
1915
  end
1809
1916
  .,.,
1810
1917
 
1811
- module_eval(<<'.,.,', 'ddb-parser.y', 605)
1812
- def _reduce_162(val, _values)
1918
+ module_eval(<<'.,.,', 'ddb-parser.y', 647)
1919
+ def _reduce_175(val, _values)
1813
1920
  [val[0]]
1814
1921
 
1815
1922
  end
1816
1923
  .,.,
1817
1924
 
1818
- module_eval(<<'.,.,', 'ddb-parser.y', 609)
1819
- def _reduce_163(val, _values)
1925
+ module_eval(<<'.,.,', 'ddb-parser.y', 651)
1926
+ def _reduce_176(val, _values)
1820
1927
  val[0] + [val[2]]
1821
1928
 
1822
1929
  end