mirror of
https://github.com/Kingsrook/qqq.git
synced 2025-07-18 13:10:44 +00:00
CE-882 - Add toString
This commit is contained in:
@ -417,4 +417,20 @@ public class QueryJoin
|
|||||||
return (this);
|
return (this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
/*******************************************************************************
|
||||||
|
**
|
||||||
|
*******************************************************************************/
|
||||||
|
@Override
|
||||||
|
public String toString()
|
||||||
|
{
|
||||||
|
return "QueryJoin{base="
|
||||||
|
+ baseTableOrAlias + ", joinTable='"
|
||||||
|
+ joinTable + ", joinMetaData="
|
||||||
|
+ (joinMetaData == null ? null : joinMetaData.getName()) + ", alias='"
|
||||||
|
+ alias + ", select="
|
||||||
|
+ select + ", type="
|
||||||
|
+ type + '}';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user