Skip to content

Commit

Permalink
TEIID-3870 using the catalog as the package name
Browse files Browse the repository at this point in the history
  • Loading branch information
shawkins committed Dec 17, 2015
1 parent 30a4885 commit 7a3308d
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,9 @@ record = metadataFactory.addProcedureParameter(columnName, runtimeType, Type.InO
record = metadataFactory.addProcedureParameter(columnName, runtimeType, Type.Out, procedure);
break;
case DatabaseMetaData.procedureColumnReturn:
if (columnName == null) {
columnName = "return"; //$NON-NLS-1$
}
record = metadataFactory.addProcedureParameter(columnName, runtimeType, Type.ReturnValue, procedure);
break;
default:
Expand Down

0 comments on commit 7a3308d

Please sign in to comment.