-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
kafka + sql storage variant, reusing streams variant datamodel (#1012)
* kafka + sql storage variant, reusing streams variant datamodel * ksql - integration tests * fix streams storage
- Loading branch information
Showing
20 changed files
with
696 additions
and
685 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,19 +13,13 @@ | |
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package io.apicurio.registry.storage.impl.ksql; | ||
package io.apicurio.registry.storage; | ||
|
||
/** | ||
* @author [email protected] | ||
* @author Fabian Martinez | ||
*/ | ||
public class TestTypes { | ||
|
||
public static void main(String[] args) { | ||
System.out.println(long.class); | ||
System.out.println(Long.class); | ||
System.out.println(Long.class == long.class); | ||
System.out.println(Long.class.equals(long.class)); | ||
} | ||
public interface RegistryStorageProvider { | ||
|
||
RegistryStorage storage(); | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
121 changes: 0 additions & 121 deletions
121
storage/ksql/src/main/java/io/apicurio/registry/storage/impl/ksql/JournalRecord.java
This file was deleted.
Oops, something went wrong.
63 changes: 0 additions & 63 deletions
63
storage/ksql/src/main/java/io/apicurio/registry/storage/impl/ksql/JournalRecordArgument.java
This file was deleted.
Oops, something went wrong.
46 changes: 0 additions & 46 deletions
46
.../ksql/src/main/java/io/apicurio/registry/storage/impl/ksql/JournalRecordDeserializer.java
This file was deleted.
Oops, something went wrong.
43 changes: 0 additions & 43 deletions
43
...ge/ksql/src/main/java/io/apicurio/registry/storage/impl/ksql/JournalRecordSerializer.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.