ddbcli 0.3.7 → 0.3.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -69,7 +69,12 @@ rule
69
69
 
70
70
  alter_stmt : ALTER TABLE IDENTIFIER capacity_clause
71
71
  {
72
- struct(:ALTER_TABLE, :table => val[2], :capacity => val[3])
72
+ struct(:ALTER_TABLE, :table => val[2], :index_name => nil, :capacity => val[3])
73
+ }
74
+
75
+ | ALTER TABLE IDENTIFIER CHANGE INDEX IDENTIFIER capacity_clause
76
+ {
77
+ struct(:ALTER_TABLE, :table => val[2], :index_name => val[5], :capacity => val[6])
73
78
  }
74
79
 
75
80
  use_stmt : USE IDENTIFIER
@@ -556,6 +561,7 @@ KEYWORDS = %w(
556
561
  BEGINS_WITH
557
562
  BETWEEN
558
563
  BINARY
564
+ CHANGE
559
565
  CREATE
560
566
  CONTAINS
561
567
  COUNT
@@ -1,5 +1,5 @@
1
1
  module DynamoDB
2
- VERSION = "0.3.7"
2
+ VERSION = "0.3.8"
3
3
  end
4
4
 
5
5
  Version = DynamoDB::VERSION
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ddbcli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.7
4
+ version: 0.3.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Genki Sugawara