mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
* src/odbc/ejabberd_odbc.erl: Fixed processing of UPDATE results
with pgsql SVN Revision: 1808
This commit is contained in:
parent
f09509502e
commit
562e6c8d39
@ -1,3 +1,8 @@
|
||||
2009-01-12 Alexey Shchepin <alexey@process-one.net>
|
||||
|
||||
* src/odbc/ejabberd_odbc.erl: Fixed processing of UPDATE results
|
||||
with pgsql
|
||||
|
||||
2009-01-12 Badlop <badlop@process-one.net>
|
||||
|
||||
* doc/guide.tex: Update copyright date 2008 to 2009 (EJAB-842)
|
||||
|
@ -326,6 +326,8 @@ pgsql_item_to_odbc("INSERT " ++ OIDN) ->
|
||||
{updated, list_to_integer(N)};
|
||||
pgsql_item_to_odbc("DELETE " ++ N) ->
|
||||
{updated, list_to_integer(N)};
|
||||
pgsql_item_to_odbc("UPDATE " ++ N) ->
|
||||
{updated, list_to_integer(N)};
|
||||
pgsql_item_to_odbc({error, Error}) ->
|
||||
{error, Error};
|
||||
pgsql_item_to_odbc(_) ->
|
||||
|
Loading…
Reference in New Issue
Block a user