Skip to content

Commit

Permalink
more changes
Browse files Browse the repository at this point in the history
  • Loading branch information
KirillKurdyukov committed Aug 22, 2024
1 parent 140351d commit 13b570e
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package tech.ydb.data.core.convert;

import java.sql.JDBCType;
import java.sql.SQLType;
import tech.ydb.jdbc.YdbConst;
import tech.ydb.table.values.PrimitiveType;

/**
Expand All @@ -20,6 +20,6 @@ public String getVendor() {

@Override
public Integer getVendorTypeNumber() {
return JDBCType.JAVA_OBJECT.getVendorTypeNumber();
return YdbConst.SQL_KIND_PRIMITIVE + type.ordinal();
}
}

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package tech.ydb.data.repository;

/**
* @author Kirill Kurdyukov
*/
public @interface ViewIndex {

String name = "";
}

0 comments on commit 13b570e

Please sign in to comment.