[#4731] Add Javadoc warning to Table.equals() to help prevent accidental usage

This commit is contained in:
lukaseder 2015-11-11 12:12:47 +01:00
parent f147e8dc12
commit cd9bba149b

View File

@ -1632,6 +1632,15 @@ public interface Table<R extends Record> extends TableLike<R> {
@Support
Condition equal(Table<R> table);
/**
* {@inheritDoc}
* <p>
* <strong>Watch out! This is {@link Object#equals(Object)}, not a jOOQ DSL
* feature!</strong>
*/
@Override
boolean equals(Object other);
/**
* Create a predicate comparing records from self-non-equi-joined tables.
* <p>