init - add project files
This commit is contained in:
14
tools/jet-2.12.0/postgres/lateral_test.go
Normal file
14
tools/jet-2.12.0/postgres/lateral_test.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package postgres
|
||||
|
||||
import "testing"
|
||||
|
||||
func TestLATERAL(t *testing.T) {
|
||||
assertSerialize(t,
|
||||
LATERAL(
|
||||
SELECT(Int(1)),
|
||||
).AS("lat1"),
|
||||
|
||||
`LATERAL (
|
||||
SELECT $1
|
||||
) AS lat1`)
|
||||
}
|
||||
Reference in New Issue
Block a user