One of d1, d2 is time, the other is date
| 14014 | |
| 14015 | // One of d1, d2 is time, the other is date |
| 14016 | static bool isDateAndTime(const dsc& d1, const dsc& d2) |
| 14017 | { |
| 14018 | return ((d1.isTime() && d2.isDate()) || (d2.isTime() && d1.isDate())); |
| 14019 | } |
| 14020 | |
| 14021 | // Set parameter info based on a context. |
| 14022 | static void setParameterInfo(dsql_par* parameter, const dsql_ctx* context) |
no test coverage detected