We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0799c12 commit 1e93268Copy full SHA for 1e93268
src/dsql/DdlNodes.epp
@@ -10628,6 +10628,7 @@ void MappingNode::runInSecurityDb(SecDbContext* secDbContext)
10628
ddl += ' ';
10629
if (from)
10630
{
10631
+ ddl += "_utf8 ";
10632
addItem(ddl, fromUtf8.c_str(), '\'');
10633
10634
}
src/dsql/parse.y
@@ -7448,7 +7448,7 @@ map_from_symbol_name
7448
%type <intlStringPtr> map_logoninfo
7449
map_logoninfo
7450
: sql_string
7451
- | valid_symbol_name { $$ = newNode<IntlString>($1->c_str()); }
+ | valid_symbol_name { $$ = newIntlString($1->c_str(), metadataCharSet->getName()); }
7452
;
7453
7454
%type map_using(<mappingNode>)
0 commit comments