match

expect fun match(index: IndexExpression, query: String): Expression(source)

Creates a full-text match() function with the given full-text index expression and the query text

Return

The full-text match() function expression.

Parameters

index

The full-text index expression.

query

The query string.


expect fun match(indexName: String, query: String): Expression(source)

Deprecated

Use FullTextFunction.match(IndexExpression)

Replace with

FullTextFunction.match(Expression.fullTextIndex(indexName), query)

Creates a full-text expression with the given full-text index name and search text.

Return

The full-text match expression

Parameters

indexName

The full-text index name.

query

The query string.

actual fun match(index: IndexExpression, query: String): Expression(source)

actual fun match(indexName: String, query: String): Expression(source)

Deprecated

Use FullTextFunction.match(IndexExpression)

Replace with

FullTextFunction.match(Expression.fullTextIndex(indexName), query)
actual fun match(index: IndexExpression, query: String): Expression(source)

actual fun match(indexName: String, query: String): Expression(source)

Deprecated

Use FullTextFunction.match(IndexExpression)

Replace with

FullTextFunction.match(Expression.fullTextIndex(indexName), query)