Skip to content

Commit

Permalink
Fix SPI tests for varchar change
Browse files Browse the repository at this point in the history
  • Loading branch information
electrum committed Feb 11, 2016
1 parent 5ca2069 commit 706a6da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class TestingTypeManager
public Type getType(TypeSignature signature)
{
for (Type type : getTypes()) {
if (signature.equals(type.getTypeSignature())) {
if (signature.getBase().equals(type.getTypeSignature().getBase())) {
return type;
}
}
Expand Down

0 comments on commit 706a6da

Please sign in to comment.