(t *testing.T)
| 9 | ) |
| 10 | |
| 11 | func TestParser(t *testing.T) { |
| 12 | p, err := parser.ParseOne("CREATE TABLE t (a TIMESTAMPTZ DEFAULT CURRENT_TIMESTAMP)") |
| 13 | require.NoError(t, err) |
| 14 | f := tree.DefaultPrettyCfg() |
| 15 | t.Log(f.Pretty(p.AST)) |
| 16 | } |
nothing calls this directly
no test coverage detected
searching dependent graphs…