(runtime *common.RuntimeContext)
| 221 | } |
| 222 | |
| 223 | func baseCreateFirstTableName(runtime *common.RuntimeContext) string { |
| 224 | if name := strings.TrimSpace(runtime.Str("table-name")); name != "" { |
| 225 | return name |
| 226 | } |
| 227 | return "Table 1" |
| 228 | } |
| 229 | |
| 230 | func findCreatedBaseDefaultTableID(runtime *common.RuntimeContext, baseToken string, base map[string]interface{}, flag string) (string, error) { |
| 231 | if tableIDValue := tableIDFromCreateBaseResponse(base); tableIDValue != "" { |
no test coverage detected