DataGrid: php goes fatal on JSON encode

Time to ask the Masters.
I have been working through Xataface (newbie alarm here) with a rather simple setup based on a few tables.
I using the latest GA version 1.3.2 on OSX 10.8 with the stock install of Apache 2, php 5.3.13.
My particular problem is expressed as follows in the Apache error log:
[Mon Sep 03 21:55:42 2012] [error] [client ::1] PHP Fatal error: Maximum function nesting level of '100' reached, aborting! in ...xataface/lib/Services/JSON.php on line 436, referer: ....index.php?-table=session
[Mon Sep 03 21:55:42 2012] [error] [client ::1] PHP Stack trace:, referer: ..../index.php?-table=session
[Mon Sep 03 21:55:42 2012] [error] [client ::1] PHP 1. {main}() ..../index.php:0, referer: .../index.php?-table=session
[Mon Sep 03 21:55:42 2012] [error] [client ::1] PHP 2. Dataface_Application->display() .../index.php:3, referer: .../index.php?-table=session
[Mon Sep 03 21:55:42 2012] [error] [client ::1] PHP 3. Dataface_Application->handleRequest() /Library/WebServer/Documents/xataface/Dataface/Application.php:1728, referer:.../index.php?-table=session
[Mon Sep 03 21:55:42 2012] [error] [client ::1] PHP 4. actions_DataGrid_view->handle() /Library/WebServer/Documents/xataface/Dataface/Application.php:1222, referer: .../index.php?-table=session
[Mon Sep 03 21:55:42 2012] [error] [client ::1] PHP 5. Services_JSON->encode() ...modules/DataGrid/actions/DataGrid_view.php:38, referer: .../index.php?-table=session
... (goes on essentially repeating the above)
The grid works on all the tables but the one you see referred above: session.
Well, actually it did work fine on this table too until, apparently, I split a field of type DATETIME to two fields, a DATE and a TIME field. Clearly I do not know if the sudden failure of DataGrid (which now refuses to show when clicking on the "grid" tab, again only for this table. It continues to function as expected for the rest of the tables).
I know that the next course of action is probably reversing the change and checking whether this fixes the problem, but it is late now and I am tired. I was hoping that someone out there could shed a bit of light on the problem.
This is the DESCRIBE output on this particular table, in case it helps:
Field Type Null Key Default Extra
id "int(11) unsigned" NO PRI NULL auto_increment
room_id "int(11) unsigned" NO 100
start_date date NO 2012-01-01
start_time time NO 10:00:00
duration_minutes "int(11) unsigned" NO 60
person_id "int(11) unsigned" YES 100
active "tinyint(1) unsigned" YES 1
deleted "tinyint(1) unsigned" YES 0
Thanks in advance.
(This is all running ex locahost and Document Root is the usual, for OSX, Library-WebServer-Documents. I got the "spammy for new user" warning and had to shorten them)
I have been working through Xataface (newbie alarm here) with a rather simple setup based on a few tables.
I using the latest GA version 1.3.2 on OSX 10.8 with the stock install of Apache 2, php 5.3.13.
My particular problem is expressed as follows in the Apache error log:
[Mon Sep 03 21:55:42 2012] [error] [client ::1] PHP Fatal error: Maximum function nesting level of '100' reached, aborting! in ...xataface/lib/Services/JSON.php on line 436, referer: ....index.php?-table=session
[Mon Sep 03 21:55:42 2012] [error] [client ::1] PHP Stack trace:, referer: ..../index.php?-table=session
[Mon Sep 03 21:55:42 2012] [error] [client ::1] PHP 1. {main}() ..../index.php:0, referer: .../index.php?-table=session
[Mon Sep 03 21:55:42 2012] [error] [client ::1] PHP 2. Dataface_Application->display() .../index.php:3, referer: .../index.php?-table=session
[Mon Sep 03 21:55:42 2012] [error] [client ::1] PHP 3. Dataface_Application->handleRequest() /Library/WebServer/Documents/xataface/Dataface/Application.php:1728, referer:.../index.php?-table=session
[Mon Sep 03 21:55:42 2012] [error] [client ::1] PHP 4. actions_DataGrid_view->handle() /Library/WebServer/Documents/xataface/Dataface/Application.php:1222, referer: .../index.php?-table=session
[Mon Sep 03 21:55:42 2012] [error] [client ::1] PHP 5. Services_JSON->encode() ...modules/DataGrid/actions/DataGrid_view.php:38, referer: .../index.php?-table=session
... (goes on essentially repeating the above)
The grid works on all the tables but the one you see referred above: session.
Well, actually it did work fine on this table too until, apparently, I split a field of type DATETIME to two fields, a DATE and a TIME field. Clearly I do not know if the sudden failure of DataGrid (which now refuses to show when clicking on the "grid" tab, again only for this table. It continues to function as expected for the rest of the tables).
I know that the next course of action is probably reversing the change and checking whether this fixes the problem, but it is late now and I am tired. I was hoping that someone out there could shed a bit of light on the problem.
This is the DESCRIBE output on this particular table, in case it helps:
Field Type Null Key Default Extra
id "int(11) unsigned" NO PRI NULL auto_increment
room_id "int(11) unsigned" NO 100
start_date date NO 2012-01-01
start_time time NO 10:00:00
duration_minutes "int(11) unsigned" NO 60
person_id "int(11) unsigned" YES 100
active "tinyint(1) unsigned" YES 1
deleted "tinyint(1) unsigned" YES 0
Thanks in advance.
(This is all running ex locahost and Document Root is the usual, for OSX, Library-WebServer-Documents. I got the "spammy for new user" warning and had to shorten them)