Transitional representation for a WITH clause being built up.
More...
#include <with.hpp>
|
| WithBuilder | With (std::string name, const VirtualTable &query) && |
| | Adds another CTE: , name AS (query). name must be a valid (optionally dotted) SQL identifier not already used by an earlier CTE in this WITH clause.
|
| |
|
WithQuery | Main (const VirtualTable &query) && |
| | Finalizes the WITH clause with the main query that follows it.
|
| |
Transitional representation for a WITH clause being built up.
- See also
- https://www.postgresql.org/docs/current/queries-with.html
◆ With()
Adds another CTE: , name AS (query). name must be a valid (optionally dotted) SQL identifier not already used by an earlier CTE in this WITH clause.
- Exceptions
-
- Note
- Does not track the CTE's resulting column shape/types, so mismatches when the CTE is later referenced elsewhere are not caught.
◆ With
Handy fabric for WithBuilder. name must be a valid (optionally dotted) SQL identifier.
- Exceptions
-
The documentation for this class was generated from the following file: