NaturalJoinExpression

data class NaturalJoinExpression(val left: QuerySourceExpression, val right: QuerySourceExpression, val isLeafNode: Boolean = false, val extraProperties: Map<String, Any> = emptyMap()) : QuerySourceExpression(source)

MySQL natural join expression.

Constructors

Link copied to clipboard
constructor(left: QuerySourceExpression, right: QuerySourceExpression, isLeafNode: Boolean = false, extraProperties: Map<String, Any> = emptyMap())

Properties

Link copied to clipboard
open override val extraProperties: Map<String, Any>
Link copied to clipboard
open override val isLeafNode: Boolean = false
Link copied to clipboard

the left table.

Link copied to clipboard

the right table.