diff deita/d_query.c @ 260:1f9877b637e9

Add Copilot-powered cyberpunk JRPG chat Integrate the production JRPG chat with Seobeo streaming, Deita persistence, and a Bazel-managed Copilot SDK and LiteLLM inference stack. Co-authored-by: Copilot <[email protected]>
author MrJuneJune <mrjunejune@users.noreply.github.com>
date Wed, 05 Aug 2026 09:19:41 -0700
parents ae6a88e6e484
children
line wrap: on
line diff
--- a/deita/d_query.c	Wed Aug 05 09:19:41 2026 -0700
+++ b/deita/d_query.c	Wed Aug 05 09:19:41 2026 -0700
@@ -75,6 +75,11 @@
   return FALSE;
 }
 
+boolean Deita_Result_Set_Has_Error(Deita_Result_Set *p_result_set)
+{
+  return p_result_set ? p_result_set->has_error : TRUE;
+}
+
 int32 Deita_Result_Set_Get_Column_Count(Deita_Result_Set *p_result_set)
 {
   if (!p_result_set)