Skip to content

Commit

Permalink
Merge pull request #36 from larskanis/row-coder
Browse files Browse the repository at this point in the history
Add PG::RecordCoder for en/decoding of Composite Types
  • Loading branch information
larskanis authored Oct 9, 2019
2 parents 1cc7f0d + 8acf8fd commit 8fa4377
Show file tree
Hide file tree
Showing 8 changed files with 728 additions and 11 deletions.
1 change: 1 addition & 0 deletions Manifest.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ext/pg_coder.c
ext/pg_connection.c
ext/pg_copy_coder.c
ext/pg_errors.c
ext/pg_record_coder.c
ext/pg_result.c
ext/pg_text_decoder.c
ext/pg_text_encoder.c
Expand Down
1 change: 1 addition & 0 deletions ext/pg.c
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,7 @@ Init_pg_ext()
init_pg_binary_encoder();
init_pg_binary_decoder();
init_pg_copycoder();
init_pg_recordcoder();
init_pg_tuple();
}

1 change: 1 addition & 0 deletions ext/pg.h
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ void init_pg_type_map_by_oid _(( void ));
void init_pg_type_map_in_ruby _(( void ));
void init_pg_coder _(( void ));
void init_pg_copycoder _(( void ));
void init_pg_recordcoder _(( void ));
void init_pg_text_encoder _(( void ));
void init_pg_text_decoder _(( void ));
void init_pg_binary_encoder _(( void ));
Expand Down
Loading

0 comments on commit 8fa4377

Please sign in to comment.