Index: kaltura_views/kaltura_views.module
===================================================================
--- kaltura_views/kaltura_views.module	(revision 2882)
+++ kaltura_views/kaltura_views.module	(revision 2883)
@@ -29,16 +29,18 @@
   if (module_exists('kaltura_playlist')) {
     $media_id_help = ' '. t('To have this view listed in Kaltura Playlist node, you must add this field to the default fields (can be excluded from display).');
   }
+  
   $data = array();
   $data['node_kaltura'] = array(
     'table' => array(
       'group' => 'kaltura',
       'title' => 'kaltura',
       'help' => t('table that holds kaltura entries'),
-      'base' => array(
-        'field' => 'nid',
-        'title' => 'node id',
-      ),
+      // this is not a base table (eg, node, user, term, etc), remove this section
+//      'base' => array(
+//        'field' => 'nid',
+//        'title' => 'node id',
+//      ),
       'join' => array(
         'node' => array(
           'left_field' => 'nid',
Index: field_kaltura/field_kaltura.module
===================================================================
--- field_kaltura/field_kaltura.module	(revision 2882)
+++ field_kaltura/field_kaltura.module	(revision 2883)
@@ -92,6 +92,22 @@
         $data = content_views_field_views_data($field);
         $db_info = content_database_info($field);
         $table_alias = content_views_tablename($field);
+        
+        //@@TODO: Trying to join on the following fields:
+        //  -- content_type_video.field_kaltura_video ( sQksj2 )
+        //  -- kaltura_node.kaltura_entryId ( sQksj2, <- note the comma... it's comma delimited, not 1NF)
+        // I *cannot* find a way to SQL JOIN these, wether with LIKE, FIND_IN_SET, or anything
+        
+        // Relationship: add a relationship for related node.
+        $data[$table_alias][$field['field_name'] .'_value']['relationship'] = array(
+          'base' => 'node_kaltura',
+          'base field' => 'kaltura_entryId', //$db_info['columns']['value']['column'],
+//          'handler' => 'views_handler_relationship_kaltura_field',
+          'label' => t($field['widget']['label']),
+          'content_field_name' => $field['field_name'],
+//          'join_handler' => 'kaltura_relationship_join',
+        );
 
 
         // Filter: Add a 'many to one' filter.
