| 1790 | } |
| 1791 | |
| 1792 | static void |
| 1793 | getQueryParams(CState *st, const Command *command, const char **params) |
| 1794 | { |
| 1795 | int i; |
| 1796 | |
| 1797 | for (i = 0; i < command->argc - 1; i++) |
| 1798 | params[i] = getVariable(st, command->argv[i + 1]); |
| 1799 | } |
| 1800 | |
| 1801 | static char * |
| 1802 | valueTypeName(PgBenchValue *pval) |
no test coverage detected