MySQL expression operators tests.

This commit is contained in:
go-jet 2019-08-01 11:15:38 +02:00
parent c342f296ca
commit dfb72c06a7
4 changed files with 136 additions and 6 deletions

View file

@ -1,5 +1,14 @@
package common
type ExpressionTestResult struct {
IsNull *bool
IsNotNull *bool
In *bool
InSelect *bool
NotIn *bool
NotInSelect *bool
}
type EqualityExpResult struct {
Eq1 *bool
Eq2 *bool