(t *testing.T)
| 31 | } |
| 32 | |
| 33 | func TestEscapeName(t *testing.T) { |
| 34 | names := []string{"my_table", `"my_table"`, "`my_table`"} |
| 35 | for _, name := range names { |
| 36 | escaped := EscapeName(name) |
| 37 | require.Equal(t, "`my_table`", escaped) |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | func TestBuildEqualsComparison(t *testing.T) { |
| 42 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…