| 95 | } |
| 96 | |
| 97 | static void ClusterToString(String & ret, const bool clause, const Cluster & cl) |
| 98 | { |
| 99 | if (cl.has_cluster()) |
| 100 | { |
| 101 | if (clause) |
| 102 | { |
| 103 | ret += " ON CLUSTER "; |
| 104 | } |
| 105 | appendSQLStringLiteral(ret, cl.cluster()); |
| 106 | if (!clause) |
| 107 | { |
| 108 | ret += ", "; |
| 109 | } |
| 110 | } |
| 111 | } |
| 112 | |
| 113 | CONV_FN(Window, win) |
| 114 | { |
no test coverage detected