File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
- # ExAws.Dynamo
1
+ ExAws.Dynamo
2
+ ============
3
+ [ ![ Hex.pm] ( https://img.shields.io/hexpm/v/ex_aws_dynamo.svg )] ( https://hex.pm/packages/ex_aws_dynamo )
4
+ [ ![ Build Docs] ( https://img.shields.io/badge/hexdocs-release-blue.svg )] ( https://hexdocs.pm/ex_aws_dynamo/ExAws.Dynamo.html )
2
5
3
6
Service module for https://github.com/ex-aws/ex_aws
4
7
Original file line number Diff line number Diff line change @@ -518,12 +518,15 @@ defmodule ExAws.Dynamo do
518
518
table_query [ :keys ]
519
519
|> Enum . map ( & encode_values / 1 )
520
520
521
- dynamized_table_query =
521
+ mapped_table_query =
522
522
table_query
523
523
|> Map . new ( )
524
+
525
+ dynamized_table_query =
526
+ mapped_table_query
524
527
|> Map . drop ( @ special_opts ++ [ :keys ] )
525
528
|> camelize_keys
526
- |> build_expression_attribute_names ( Map . new ( table_query ) )
529
+ |> build_expression_attribute_names ( mapped_table_query )
527
530
|> Map . put ( "Keys" , keys )
528
531
529
532
Map . put ( query , table_name , dynamized_table_query )
Original file line number Diff line number Diff line change 1
1
defmodule ExAws.Dynamo.Mixfile do
2
2
use Mix.Project
3
3
4
- @ version "2.3.2 "
4
+ @ version "2.3.3 "
5
5
@ service "dynamo"
6
6
@ url "https://github.com/ex-aws/ex_aws_#{ @ service } "
7
7
@ name __MODULE__ |> Module . split ( ) |> Enum . take ( 2 ) |> Enum . join ( "." )
You can’t perform that action at this time.
0 commit comments