Skip to content
This repository has been archived by the owner on Mar 7, 2024. It is now read-only.

Dstara/update to TileDB 2.10 #6

Merged
merged 3 commits into from
Jul 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/Examples.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ Create table with all options specified:

```sql
CREATE TABLE region(
regionkey bigint WITH (dimension=true, lower_bound=0L, upper_bound=3000L, extent=50L)
regionkey bigint WITH (dimension=true, lower_bound=0, upper_bound=3000, extent=50),
name varchar,
comment varchar
) WITH (uri = 's3://bucket/region', type = 'SPARSE', cell_order = 'COL_MAJOR', tile_order = 'ROW_MAJOR', capacity = 10L)
) WITH (uri = 's3://bucket/region', type = 'SPARSE', cell_order = 'COL_MAJOR', tile_order = 'ROW_MAJOR', capacity = 10)
```

## Inserting Data
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
<dependency>
<groupId>io.tiledb</groupId>
<artifactId>tiledb-java</artifactId>
<version>0.9.0</version>
<version>0.12.0</version>
ihnorton marked this conversation as resolved.
Show resolved Hide resolved
</dependency>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -773,11 +773,11 @@ public void testTimeTraveling() throws Exception
getQueryRunner().execute(insertSql);

// Retrieve all fragments and sort them in ascending order
String[] dirs = new File(arrayName).list(new FilenameFilter() {
String[] dirs = new File(arrayName + "/__fragments").list(new FilenameFilter() {
@Override
public boolean accept(File dir, String name)
{
return new File(dir, name).isDirectory() && !name.equals("__meta");
return new File(dir, name).isDirectory();
}
});
Arrays.sort(dirs);
Expand Down Expand Up @@ -873,11 +873,11 @@ public void testTimeTravelingEncrypted() throws Exception
}

// Retrieve all fragments and sort them in ascending order
String[] dirs = new File(arrayName).list(new FilenameFilter() {
String[] dirs = new File(arrayName + "/__fragments").list(new FilenameFilter() {
@Override
public boolean accept(File dir, String name)
{
return new File(dir, name).isDirectory() && !name.equals("__meta");
return new File(dir, name).isDirectory();
}
});
Arrays.sort(dirs);
Expand Down