Skip to content

Commit

Permalink
Merge remote-tracking branch 'hobu/issues/46-bytea-read-for-postgis' …
Browse files Browse the repository at this point in the history
…into issue-46
  • Loading branch information
mloskot committed Feb 10, 2013
2 parents d57a3a2 + adcde5f commit 73fe179
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/backends/postgresql/statement.cpp
Expand Up @@ -504,6 +504,7 @@ void postgresql_statement_backend::describe_column(int colNum, data_type & type,
case 18: // char
case 1042: // bpchar
case 142: // xml
case 17: // bytea
type = dt_string;
break;

Expand Down Expand Up @@ -533,7 +534,7 @@ void postgresql_statement_backend::describe_column(int colNum, data_type & type,
case 20: // int8
type = dt_long_long;
break;

default:
{
std::stringstream message;
Expand Down

0 comments on commit 73fe179

Please sign in to comment.