The test scenario index of this test case (exact matching field) is a keyword in the Dameng database and cannot exist as a field name. If the data structure previously migrated from mysql has an index (completely matching field), it will also be allowed. However, when processing the index (completel
(t *testing.T)
| 64 | // In principle, such problems will not occur if you directly use Dameng database initialization instead of migrating the data structure from mysql. |
| 65 | // If so, the adapter has also taken care of it. |
| 66 | func TestTablesFalse(t *testing.T) { |
| 67 | gtest.C(t, func(t *gtest.T) { |
| 68 | tables := []string{"A_tables", "A_tables2"} |
| 69 | for _, v := range tables { |
| 70 | _, err := createTableFalse(v) |
| 71 | gtest.Assert(err, fmt.Errorf("createTableFalse")) |
| 72 | // createTable(v) |
| 73 | } |
| 74 | }) |
| 75 | } |
| 76 | |
| 77 | func TestTableFields(t *testing.T) { |
| 78 | tables := "A_tables" |
nothing calls this directly
no test coverage detected
searching dependent graphs…