SQL: remove all remaining NOCOMMITs

relates elastic/x-pack-elasticsearch#2873

Original commit: elastic/x-pack-elasticsearch@68b206efd2
This commit is contained in:
Igor Motov 2017-11-21 14:37:59 -05:00
parent 2fe4da80ad
commit a4915a5714
12 changed files with 23 additions and 19 deletions

View File

@ -53,12 +53,11 @@ case $key in
GRADLE_CLI_ARGS=( GRADLE_CLI_ARGS=(
"--info" "--info"
"check" "check"
"-xforbiddenPatterns" # NOCOMMIT this is required *for now* but will be removed when we remove the NOCOMMITs
"-Dtests.network=true" "-Dtests.network=true"
"-Dtests.badapples=true" "-Dtests.badapples=true"
) )
;; ;;
smokeTestSql) # NOCOMMIT remove this once we are ready to merge sql down smokeTestSql) # TODO remove this once we are ready to merge sql down
GRADLE_CLI_ARGS=( GRADLE_CLI_ARGS=(
"--info" "--info"
"-psql" "-psql"
@ -68,10 +67,6 @@ case $key in
":x-pack-elasticsearch:qa:sql:multinode:check" ":x-pack-elasticsearch:qa:sql:multinode:check"
":x-pack-elasticsearch:qa:sql:no-security:check" ":x-pack-elasticsearch:qa:sql:no-security:check"
":x-pack-elasticsearch:qa:sql:security:check" ":x-pack-elasticsearch:qa:sql:security:check"
"-x:x-pack-elasticsearch:sql:cli:forbiddenPatterns"
"-x:x-pack-elasticsearch:sql:jdbc:forbiddenPatterns"
"-x:x-pack-elasticsearch:sql:server:forbiddenPatterns"
"-x:x-pack-elasticsearch:qa:sql:forbiddenPatterns"
) )
;; ;;
releaseTest) releaseTest)

View File

@ -28,7 +28,8 @@ include::sql/index.asciidoc[]
include::monitoring/index.asciidoc[] include::monitoring/index.asciidoc[]
include::rest-api/index.asciidoc[] include::rest-api/index.asciidoc[]
# NOCOMMIT before merging SQL we need to fiddle with this to make sure it is right # TODO before merging SQL we need to fiddle with this to make sure it is right
# Tracked by https://github.com/elastic/x-pack-elasticsearch/issues/3084
include::commands/index.asciidoc[] include::commands/index.asciidoc[]

View File

@ -24,7 +24,7 @@ CREATE TABLE mock (
IS_GENERATEDCOLUMN VARCHAR IS_GENERATEDCOLUMN VARCHAR
) AS ) AS
SELECT '', 'test1', 'name', 12, 'VARCHAR', 2147483647, null, null, SELECT '', 'test1', 'name', 12, 'VARCHAR', 2147483647, null, null,
10, -- NOCOMMIT 10 seem wrong to hard code for stuff like strings 10, -- TODO 10 seem wrong to hard code for non-numbers see https://github.com/elastic/x-pack-elasticsearch/issues/3085
1, -- columnNullable 1, -- columnNullable
null, null, null, null, null, 1, 'YES', null, null, null, null, '', '' null, null, null, null, null, 1, 'YES', null, null, null, null, '', ''
FROM DUAL FROM DUAL

View File

@ -69,7 +69,8 @@ public class Cli {
} }
user = parsed.getUserInfo(); user = parsed.getUserInfo();
if (user != null) { if (user != null) {
// NOCOMMIT just use a URI the whole time // TODO just use a URI the whole time
// Tracked by https://github.com/elastic/x-pack-elasticsearch/issues/2882
hostAndPort = parsed.getScheme() + "://" + parsed.getHost() + ":" + parsed.getPort(); hostAndPort = parsed.getScheme() + "://" + parsed.getHost() + ":" + parsed.getPort();
int colonIndex = user.indexOf(':'); int colonIndex = user.indexOf(':');
if (colonIndex >= 0) { if (colonIndex >= 0) {

View File

@ -5,7 +5,6 @@
*/ */
package org.elasticsearch.xpack.sql.jdbc.net.client; package org.elasticsearch.xpack.sql.jdbc.net.client;
import org.elasticsearch.xpack.sql.client.shared.CheckedConsumer;
import org.elasticsearch.xpack.sql.client.shared.ClientException; import org.elasticsearch.xpack.sql.client.shared.ClientException;
import org.elasticsearch.xpack.sql.client.shared.JreHttpUrlConnection; import org.elasticsearch.xpack.sql.client.shared.JreHttpUrlConnection;
import org.elasticsearch.xpack.sql.jdbc.JdbcException; import org.elasticsearch.xpack.sql.jdbc.JdbcException;
@ -37,7 +36,8 @@ class HttpClient {
URL baseUrl = connectionInfo.asUrl(); URL baseUrl = connectionInfo.asUrl();
try { try {
// the baseUrl ends up / so the suffix can be directly appended // the baseUrl ends up / so the suffix can be directly appended
// NOCOMMIT Do something with the error trace. Useful for filing bugs and debugging. // TODO Do something with the error trace. Useful for filing bugs and debugging.
// Tracked by https://github.com/elastic/x-pack-elasticsearch/issues/3079
this.url = new URL(baseUrl, "_sql/jdbc?error_trace=true"); this.url = new URL(baseUrl, "_sql/jdbc?error_trace=true");
} catch (MalformedURLException ex) { } catch (MalformedURLException ex) {
throw new JdbcException(ex, "Cannot connect to JDBC endpoint [" + baseUrl.toString() + "_sql/jdbc]"); throw new JdbcException(ex, "Cannot connect to JDBC endpoint [" + baseUrl.toString() + "_sql/jdbc]");

View File

@ -19,7 +19,7 @@ dependencyLicenses {
ignoreSha 'shared-proto' ignoreSha 'shared-proto'
} }
// NOCOMMIT probably not a good thing to rely on..... // TODO probably not a good thing to rely on. See https://github.com/elastic/x-pack-elasticsearch/issues/2871
compileJava.options.compilerArgs << "-parameters" compileJava.options.compilerArgs << "-parameters"
compileTestJava.options.compilerArgs << "-parameters" compileTestJava.options.compilerArgs << "-parameters"

View File

@ -19,7 +19,8 @@ public class EsIndex {
public static final EsIndex NOT_FOUND = new EsIndex(StringUtils.EMPTY, emptyMap(), emptyList(), Settings.EMPTY); public static final EsIndex NOT_FOUND = new EsIndex(StringUtils.EMPTY, emptyMap(), emptyList(), Settings.EMPTY);
// NOCOMMIT Double check that we need these and that we're securing them properly. // TODO Double check that we need these and that we're securing them properly.
// Tracked by https://github.com/elastic/x-pack-elasticsearch/issues/3076
private final String name; private final String name;
private final Map<String, DataType> mapping; private final Map<String, DataType> mapping;
private final List<String> aliases; private final List<String> aliases;

View File

@ -40,7 +40,8 @@ public class DocValueExtractor implements HitExtractor {
@Override @Override
public Object get(SearchHit hit) { public Object get(SearchHit hit) {
// NOCOMMIT we should think about what to do with multi-valued fields. // TODO we should think about what to do with multi-valued fields.
// Tracked by https://github.com/elastic/x-pack-elasticsearch/issues/2874
DocumentField field = hit.field(fieldName); DocumentField field = hit.field(fieldName);
if (field != null) { if (field != null) {
Object value = field.getValue(); Object value = field.getValue();

View File

@ -37,8 +37,9 @@ public class SourceExtractor implements HitExtractor {
@Override @Override
public Object get(SearchHit hit) { public Object get(SearchHit hit) {
Map<String, Object> source = hit.getSourceAsMap(); Map<String, Object> source = hit.getSourceAsMap();
// NOCOMMIT I think this will not work with dotted field names (objects or actual dots in the names) // TODO I think this will not work with dotted field names (objects or actual dots in the names)
// confusingly, I think this is actually handled by InnerHitExtractor. This needs investigating or renaming // confusingly, I think this is actually handled by InnerHitExtractor. This needs investigating or renaming
// Tracked by https://github.com/elastic/x-pack-elasticsearch/issues/2874
return source != null ? source.get(fieldName) : null; return source != null ? source.get(fieldName) : null;
} }

View File

@ -50,7 +50,8 @@ public abstract class AbstractSqlProtocolRestAction extends BaseRestHandler {
public RestResponse buildResponse(T response) throws Exception { public RestResponse buildResponse(T response) throws Exception {
try (BytesStreamOutput bytesStreamOutput = new BytesStreamOutput()) { try (BytesStreamOutput bytesStreamOutput = new BytesStreamOutput()) {
try (DataOutputStream dataOutputStream = new DataOutputStream(bytesStreamOutput)) { try (DataOutputStream dataOutputStream = new DataOutputStream(bytesStreamOutput)) {
// NOCOMMIT use the version from the client // TODO use the version from the client
// Tracked by https://github.com/elastic/x-pack-elasticsearch/issues/3080
proto.writeResponse(responseBuilder.apply(response), Proto.CURRENT_VERSION, dataOutputStream); proto.writeResponse(responseBuilder.apply(response), Proto.CURRENT_VERSION, dataOutputStream);
} }
return new BytesRestResponse(OK, TEXT_CONTENT_TYPE, bytesStreamOutput.bytes()); return new BytesRestResponse(OK, TEXT_CONTENT_TYPE, bytesStreamOutput.bytes());

View File

@ -42,7 +42,8 @@ public class CliFormatter implements Writeable {
// 2. Expand columns to fit the largest value // 2. Expand columns to fit the largest value
for (List<Object> row : response.rows()) { for (List<Object> row : response.rows()) {
for (int i = 0; i < width.length; i++) { for (int i = 0; i < width.length; i++) {
// NOCOMMIT are we sure toString is correct here? What about dates that come back as longs. // TODO are we sure toString is correct here? What about dates that come back as longs.
// Tracked by https://github.com/elastic/x-pack-elasticsearch/issues/3081
width[i] = Math.max(width[i], Objects.toString(row.get(i)).length()); width[i] = Math.max(width[i], Objects.toString(row.get(i)).length());
} }
} }
@ -115,7 +116,8 @@ public class CliFormatter implements Writeable {
sb.append('|'); sb.append('|');
} }
// NOCOMMIT are we sure toString is correct here? What about dates that come back as longs. // TODO are we sure toString is correct here? What about dates that come back as longs.
// Tracked by https://github.com/elastic/x-pack-elasticsearch/issues/3081
String string = Objects.toString(row.get(i)); String string = Objects.toString(row.get(i));
if (string.length() <= width[i]) { if (string.length() <= width[i]) {
// Pad // Pad

View File

@ -30,8 +30,9 @@ public class InnerHitExtractorTests extends AbstractWireSerializingTestCase<Inne
return new InnerHitExtractor(instance.hitName() + "mustated", instance.fieldName(), true); return new InnerHitExtractor(instance.hitName() + "mustated", instance.fieldName(), true);
} }
@AwaitsFix(bugUrl = "https://github.com/elastic/x-pack-elasticsearch/issues/3082")
public void testGet() throws IOException { public void testGet() throws IOException {
// NOCOMMIT implement after we're sure of the InnerHitExtractor's implementation fail("implement after we're sure of the InnerHitExtractor's implementation");
} }
public void testToString() { public void testToString() {