Add DISTINCT operator support

This commit is contained in:
go-jet 2022-01-10 16:43:17 +01:00
parent 6fe9c26d30
commit a506a96d6a
7 changed files with 197 additions and 0 deletions

View file

@ -7,3 +7,6 @@ var NOT = jet.NOT
// BIT_NOT inverts every bit in integer expression result
var BIT_NOT = jet.BIT_NOT
// DISTINCT operator can be used to return distinct values of expr
var DISTINCT = jet.DISTINCT