Skip to content

Commit e8d7046

Browse files
committed
Update README to reflect new features
1 parent f5214f7 commit e8d7046

File tree

1 file changed

+23
-16
lines changed

1 file changed

+23
-16
lines changed

README.md

Lines changed: 23 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -25,37 +25,44 @@ and installing it only requires oneself to
2525
Now you can start setting up your environment to access git repositories:
2626

2727
λ psql
28-
psql (9.3.5)
28+
psql (9.4.1)
2929
Type "help" for help.
30-
30+
3131
franck=# CREATE EXTENSION git_fdw;
3232
CREATE EXTENSION
3333

3434
franck=# CREATE SERVER git_fdw_server FOREIGN DATA WRAPPER git_fdw;
3535
CREATE SERVER
3636

37-
franck=# CREATE FOREIGN TABLE rails_repository (message text, author text)
37+
franck=# CREATE FOREIGN TABLE
38+
rails_repository (
39+
sha1 text,
40+
message text,
41+
name text,
42+
email text,
43+
commit_date timestamp with time zone
44+
)
3845
SERVER git_fdw_server
3946
OPTIONS (path '/home/franck/rails/.git');
4047
CREATE FOREIGN TABLE
4148

42-
franck=# SELECT * FROM rails_repository LIMIT 10;
43-
message | author
44-
----------------------------------------------------------+----------------------------------------------------------
45-
Revert "Merge pull request #15312 from JuanitoFatas/acti | Matthew Draper <matthew@[REDACTED].net>
46-
Merge pull request #16908 from y-yagi/change_activejob_t | Abdelkader Boudih <terminale@[REDACTED].com>
47-
Change ActiveJob test directory to "test/jobs" +| yuuji.yaginuma <yuuji.yaginuma@[REDACTED].com>
49+
franck=# SELECT message, name FROM rails_repository LIMIT 10;
50+
message | name
51+
----------------------------------------------------------+------------------------
52+
Revert "Merge pull request #15312 from JuanitoFatas/acti | Matthew Draper
53+
Merge pull request #16908 from y-yagi/change_activejob_t | Abdelkader Boudih
54+
Change ActiveJob test directory to "test/jobs" +| yuuji.yaginuma
4855
|
49-
Merge pull request #16669 from aantix/dangerous_attribut | Rafael Mendonça França <rafaelmfranca@[REDACTED].com>
50-
Changed the DangerousAttributeError exception message to | Jim Jones <jjones@[REDACTED].com>
51-
Prepare maintenance policy for 4.2 release [ci skip] +| Rafael Mendonça França <rafaelmfranca@[REDACTED].com>
56+
Merge pull request #16669 from aantix/dangerous_attribut | Rafael Mendonça França
57+
Changed the DangerousAttributeError exception message to | Jim Jones
58+
Prepare maintenance policy for 4.2 release [ci skip] +| Rafael Mendonça França
5259
|
53-
Se the test order of activejob tests +| Rafael Mendonça França <rafaelmfranca@[REDACTED].com>
60+
Se the test order of activejob tests +| Rafael Mendonça França
5461
|
55-
Change gid calls to to_gid +| Rafael Mendonça França <rafaelmfranca@[REDACTED].com>
62+
Change gid calls to to_gid +| Rafael Mendonça França
5663
|
57-
Merge pull request #16897 from kostia/message-varifier-r | Rafael Mendonça França <rafaelmfranca@[REDACTED].com>
58-
Changes "if secret.nil?" to unless secret in MessageVerf | Kostiantyn Kahanskyi <kostiantyn.kahanskyi@[REDACTED].co
64+
Merge pull request #16897 from kostia/message-varifier-r | Rafael Mendonça França
65+
Changes "if secret.nil?" to unless secret in MessageVerf | Kostiantyn Kahanskyi
5966
(10 rows)
6067

6168

0 commit comments

Comments
 (0)