| 1 | #include "duckdb/parser/transformer.hpp" |
|---|---|
| 2 | |
| 3 | using namespace duckdb; |
| 4 | using namespace std; |
| 5 | |
| 6 | string Transformer::TransformAlias(PGAlias *root) { |
| 7 | if (!root) { |
| 8 | return ""; |
| 9 | } |
| 10 | return root->aliasname; |
| 11 | } |
| 12 |
| 1 | #include "duckdb/parser/transformer.hpp" |
|---|---|
| 2 | |
| 3 | using namespace duckdb; |
| 4 | using namespace std; |
| 5 | |
| 6 | string Transformer::TransformAlias(PGAlias *root) { |
| 7 | if (!root) { |
| 8 | return ""; |
| 9 | } |
| 10 | return root->aliasname; |
| 11 | } |
| 12 |