QL HB: Expand bindingset example [SD-3863]

This commit is contained in:
Shati Patel 2019-09-09 15:35:13 +01:00
Родитель acca48bd8f
Коммит 4f2c9fa3cb
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -262,6 +262,10 @@ multiple binding set annotations, for example::
x + 1 = y
}
from int x, int y
where y = 42 and plusOne(x, y)
select x, y
Multiple binding sets specified this way are independent of each other. The above example means:
- If ``x`` is bound, then ``x`` and ``y`` are bound.
- If ``y`` is bound, then ``x`` and ``y`` are bound.