Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convert WITH(NO VARIANT) to IMMUTABLE for PostgreSQL target #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 27 additions & 1 deletion sqlparser/statements.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -9478,7 +9478,33 @@ bool SqlParser::ParseFunctionOptions()
exists = true;
continue;
}

// WITH ( options ) in PostgreSQL
if(next->Compare("WITH", L"WITH", 4) == true)
{
if(_target == SQL_POSTGRESQL)
{
Token *open = GetNextCharToken('(', L'(');
if ( open )
{
Token *negate = GetNextWordToken("NOT", L"NOT", 3);
if ( negate ) {
Token *variant = GetNextWordToken("VARIANT", L"VARIANT", 7);
if ( variant )
{
Token::Remove(next, negate);
Token::Change(variant, "IMMUTABLE", L"IMMUTABLE", 9);
}
}
Token *close = GetNextCharToken(')', L')');
Token *semicolon = GetNextCharToken(';', L';');
Token::Remove(close, semicolon);
}
}

exists = true;
continue;
}

// Not a function option
PushBack(next);
break;
Expand Down