mini\Table\Wrappers\InnerJoinTable class

Documentation

Inner join of two tables with equi-join condition

Yields rows where the join condition matches between left and right tables. Uses property-based binding: left table must have 'bind' property with Predicate.

Basic nested loop: iterate right, probe left with eq() for each row.

Inheritance

Extends: mini\Table\AbstractTable

Implements: mini\Table\Contracts\SetInterface IteratorAggregate Countable Traversable mini\Table\Contracts\TableInterface

Properties (7)

private string $leftCol
private string $rightCol
protected ?Closure $compareFn
protected ?int $limit
protected int $offset

Methods (39)

Documentation missing

Documentation missing

Sort-merge join: sort both sides and merge matching runs

Block nested loop join with hash probe

Documentation missing

Documentation missing

Documentation missing

Documentation missing

Documentation missing

Documentation missing

Documentation missing

Documentation missing

Documentation missing

Push a filter operation to the appropriate source table

Create new join with filtered source tables

Hook for subclasses to customize clone behavior

Get column name(s) that the row key represents

Get the string comparison function for sorting

Documentation missing

Documentation missing

Documentation missing

Documentation missing

Documentation missing

Get the current table alias (null if not set)

Documentation missing

Documentation missing

Documentation missing

Filter rows matching any of the given predicates (OR semantics)

Documentation missing

Check if value(s) exist in the table's projected columns

Get the primary key column definition (cached)

Iterate over rows with visible columns only

Get columns available for output

Get all column definitions regardless of projection

Narrow to specific columns

Load a single row by its row ID

Get a property value

Check if a property exists (including null values)

Return table with property set

Source

src/Table/Wrappers/InnerJoinTable.php:22-351