(s string)
| 1435 | } |
| 1436 | |
| 1437 | func escapeString(s string) string { |
| 1438 | return strings.ReplaceAll(s, "`", "``") |
| 1439 | } |
| 1440 | |
| 1441 | // GetPartitionNames get partition names from a specified table |
| 1442 | func GetPartitionNames(tctx *tcontext.Context, db *BaseConn, schema, table string) (partitions []string, err error) { |
no outgoing calls