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

feat: add basic support for key syntax #3034

Merged
merged 7 commits into from
Jul 14, 2019

Commits on Jul 1, 2019

  1. feat: add basic support for key syntax

    Adds ability to explicitly include key fields in C* statements so long as:
    - the key field is named `ROWKEY`
    - it of type `STRING`.
    
    i.e. you can now do:
    
    `CREATE STREAM FOO AS (ROWKEY STRING KEY, ...) ...;`
    big-andy-coates committed Jul 1, 2019
    Configuration menu
    Copy the full SHA
    f0d150b View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2019

  1. Configuration menu
    Copy the full SHA
    7a78298 View commit details
    Browse the repository at this point in the history
  2. fix: test

    big-andy-coates committed Jul 2, 2019
    Configuration menu
    Copy the full SHA
    78db7b8 View commit details
    Browse the repository at this point in the history

Commits on Jul 11, 2019

  1. chore: merge from master

    Conflicting files
    ksql-engine/src/test/java/io/confluent/ksql/ddl/commands/CommandFactoriesTest.java
    ksql-engine/src/test/java/io/confluent/ksql/ddl/commands/CreateSourceCommandTest.java
    ksql-engine/src/test/java/io/confluent/ksql/ddl/commands/CreateStreamCommandTest.java
    ksql-engine/src/test/java/io/confluent/ksql/ddl/commands/CreateTableCommandTest.java
    ksql-engine/src/test/java/io/confluent/ksql/schema/ksql/inference/DefaultSchemaInjectorTest.java
    ksql-parser/src/test/java/io/confluent/ksql/parser/KsqlParserTest.java
    ksql-parser/src/test/java/io/confluent/ksql/parser/SchemaParserTest.java
    ksql-parser/src/test/java/io/confluent/ksql/parser/SqlFormatterTest.java
    ksql-parser/src/test/java/io/confluent/ksql/parser/rewrite/StatementRewriterTest.java
    ksql-parser/src/test/java/io/confluent/ksql/parser/tree/CreateStreamTest.java
    ksql-parser/src/test/java/io/confluent/ksql/parser/tree/CreateTableTest.java
    ksql-parser/src/test/java/io/confluent/ksql/parser/tree/TableElementTest.java
    ksql-parser/src/test/java/io/confluent/ksql/parser/tree/TableElementsTest.java
    ksql-rest-app/src/test/java/io/confluent/ksql/rest/server/StandaloneExecutorTest.java
    ksql-rest-app/src/test/java/io/confluent/ksql/rest/server/resources/KsqlResourceTest.java
    big-andy-coates committed Jul 11, 2019
    Configuration menu
    Copy the full SHA
    b11718a View commit details
    Browse the repository at this point in the history
  2. fix: formatting test

    big-andy-coates committed Jul 11, 2019
    Configuration menu
    Copy the full SHA
    56e8d95 View commit details
    Browse the repository at this point in the history

Commits on Jul 12, 2019

  1. chore: merge from master

    Conflicting files
    ksql-engine/src/test/java/io/confluent/ksql/ddl/commands/CommandFactoriesTest.java
    ksql-parser/src/test/java/io/confluent/ksql/parser/tree/CreateStreamTest.java
    ksql-parser/src/test/java/io/confluent/ksql/parser/tree/CreateTableTest.java
    big-andy-coates committed Jul 12, 2019
    Configuration menu
    Copy the full SHA
    7243e3f View commit details
    Browse the repository at this point in the history
  2. fix: grammar

    big-andy-coates committed Jul 12, 2019
    Configuration menu
    Copy the full SHA
    502d494 View commit details
    Browse the repository at this point in the history