Column types refactoring.

This commit is contained in:
zer0sub 2019-03-31 14:07:58 +02:00
parent 38007810c1
commit 033ab1d0da
19 changed files with 746 additions and 396 deletions

View file

@ -97,7 +97,7 @@ func TestUnaryIsTrueExpression(t *testing.T) {
}
func TestBoolLiteral(t *testing.T) {
literal := NewBoolLiteralExpression(true)
literal := newBoolLiteralExpression(true)
out := bytes.Buffer{}
err := literal.SerializeSql(&out)