Skip to content

Commit

Permalink
Fix diff, move test to beginning of read_table
Browse files Browse the repository at this point in the history
  • Loading branch information
OussamaSaoudi-db committed Oct 10, 2024
1 parent 4df19e3 commit 283594b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ffi/examples/read-table/read_table.c
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ PartitionList* get_partition_list(SharedGlobalScanState* state)
int main(int argc, char* argv[])
{
test_kernel_expr();
return -1;

if (argc < 2) {
printf("Usage: %s table/path\n", argv[0]);
return -1;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion ffi/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ use handle::Handle;
extern crate self as delta_kernel_ffi;

pub mod engine_funcs;
pub mod expression;
pub mod expressions;
pub mod scan;
pub mod schema;

Expand Down
2 changes: 1 addition & 1 deletion ffi/src/scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use delta_kernel_ffi_macros::handle_descriptor;
use tracing::debug;
use url::Url;

use crate::expression::{unwrap_kernel_expression, EnginePredicate, KernelExpressionVisitorState};
use crate::expressions::{unwrap_kernel_expression, EnginePredicate, KernelExpressionVisitorState};
use crate::{
AllocateStringFn, ExclusiveEngineData, ExternEngine, ExternResult, IntoExternResult,
KernelBoolSlice, KernelRowIndexArray, KernelStringSlice, NullableCvoid, SharedExternEngine,
Expand Down

0 comments on commit 283594b

Please sign in to comment.