-
Notifications
You must be signed in to change notification settings - Fork 606
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
YDB FQ: avoid outdated syntax "SELECT * FROM cluster.db.table
"
#6901
Conversation
⚪
🟡
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪
🟡
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪
🟡
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
⚪
🟢
*please be aware that the difference is based on comparing your commit and the last completed build from the post-commit, check comparation |
default: | ||
// FIXME: remove me after debug | ||
Cout << "CRAB: " << ::Ydb::StatusIds::StatusCode_Name(error.status()) << Endl; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Это нужно убрать
@@ -37,7 +37,11 @@ namespace NYql::NConnector { | |||
return NDqProto::StatusIds::StatusCode::StatusIds_StatusCode_UNSUPPORTED; | |||
case ::Ydb::StatusIds::StatusCode::StatusIds_StatusCode_NOT_FOUND: | |||
return NDqProto::StatusIds::StatusCode::StatusIds_StatusCode_BAD_REQUEST; | |||
case ::Ydb::StatusIds::StatusCode::StatusIds_StatusCode_SCHEME_ERROR: | |||
return NDqProto::StatusIds::StatusCode::StatusIds_StatusCode_BAD_REQUEST; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Нужно в NDqProto::StatusIds::StatusCode::StatusIds_StatusCode_SCHEME_ERROR
мапить
@@ -140,12 +140,12 @@ def _primitive_types(self) -> Sequence[TestCase]: | |||
# Don't be surprised - binary types look like UTF8 strings in Go | |||
Column( | |||
name='col_22_binary', | |||
ydb_type=makeOptionalYdbTypeFromTypeID(Type.UTF8), | |||
ydb_type=makeOptionalYdbTypeFromTypeID(Type.STRING), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Интересно как это связано с текущим ревью. Или это просто рефакторинг?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Тип MySQL Binary мапится в тип YDB String
Исправлено в рамках: #6945 (review) |
…of PR ydb-platform#6901) (ydb-platform#6945) Co-authored-by: Vitaly Isaev <vitalyisaev@ydb.tech>
…of PR ydb-platform#6901) (ydb-platform#6945) Co-authored-by: Vitaly Isaev <vitalyisaev@ydb.tech>
Changelog entry
db.table
" (now database name is always within cluster).Changelog category
Additional information
...