| 237 | } |
| 238 | |
| 239 | static void query_tbl_name(const char *name, char *n1, char *sep, char *n2) |
| 240 | { |
| 241 | two_part_tbl_name(name, n1, n2); |
| 242 | if (strcmp(n1, "") == 0) |
| 243 | strcpy(sep, ""); |
| 244 | else |
| 245 | strcpy(sep, "."); |
| 246 | } |
| 247 | |
| 248 | ////////////////////////////////// |
| 249 | // Borrowed from sqlite/shell.c // |
no test coverage detected