Add support for date type to cassandra column types (#1176)

This commit is contained in:
victor-meng
2021-12-16 14:51:18 -08:00
committed by GitHub
parent de58f570cd
commit 529202ba7e
4 changed files with 46 additions and 39 deletions

View File

@@ -24,6 +24,7 @@ const {
Ascii,
Bigint,
Blob,
Date: DateType,
Decimal,
Float,
Int,
@@ -41,6 +42,7 @@ export const cassandraOptions = [
{ key: Bigint, text: Bigint },
{ key: Blob, text: Blob },
{ key: Boolean, text: Boolean },
{ key: DateType, text: DateType },
{ key: Decimal, text: Decimal },
{ key: Double, text: Double },
{ key: Float, text: Float },