File tree Expand file tree Collapse file tree
lance-namespace-hive2/src/main/java/org/lance/namespace/hive2
lance-namespace-hive3/src/main/java/org/lance/namespace/hive3 Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -467,11 +467,11 @@ protected void doCreateTable(
467467 StorageDescriptor sd = new StorageDescriptor ();
468468 sd .setLocation (location );
469469 sd .setCols (Lists .newArrayList ());
470- sd .setInputFormat ("com.lancedb .lance.mapred.LanceInputFormat" );
471- sd .setOutputFormat ("com.lancedb .lance.mapred.LanceOutputFormat" );
470+ sd .setInputFormat ("org .lance.mapred.LanceInputFormat" );
471+ sd .setOutputFormat ("org .lance.mapred.LanceOutputFormat" );
472472 org .apache .hadoop .hive .metastore .api .SerDeInfo serdeInfo =
473473 new org .apache .hadoop .hive .metastore .api .SerDeInfo ();
474- serdeInfo .setSerializationLib ("com.lancedb .lance.mapred.LanceSerDe" );
474+ serdeInfo .setSerializationLib ("org .lance.mapred.LanceSerDe" );
475475 sd .setSerdeInfo (serdeInfo );
476476 table .setSd (sd );
477477
Original file line number Diff line number Diff line change @@ -512,8 +512,8 @@ protected void doCreateTable(
512512 StorageDescriptor sd = new StorageDescriptor ();
513513 sd .setLocation (location );
514514 sd .setCols (Lists .newArrayList ());
515- sd .setInputFormat ("com.lancedb .lance.mapred.LanceInputFormat" );
516- sd .setOutputFormat ("com.lancedb .lance.mapred.LanceOutputFormat" );
515+ sd .setInputFormat ("org .lance.mapred.LanceInputFormat" );
516+ sd .setOutputFormat ("org .lance.mapred.LanceOutputFormat" );
517517 sd .setSerdeInfo (new org .apache .hadoop .hive .metastore .api .SerDeInfo ());
518518 table .setSd (sd );
519519
You can’t perform that action at this time.
0 commit comments