You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# go version
go version go1.22.2 linux/amd64
# /root/go/bin/chdb-go 'SELECT version()'
"24.5.1.1"
# /root/go/bin/chdb-go
Enter your SQL commands; type 'exit' to quit.
:) CREATE DATABASE testdb;
:) USE testdb;
:) CREATE TABLE memory (i UInt32) ENGINE = Memory SETTINGS min_rows_to_keep = 100, max_rows_to_keep = 1000;
:) INSERT INTO memory SELECT * FROM numbers(0, 1600);
:) SELECT total_bytes, total_rows FROM system.tables WHERE name = 'memory' and database = currentDatabase();
0,0
The text was updated successfully, but these errors were encountered:
I am experimenting with chDB and
Memory
engine - Memory Table Engine.It looks like it's not working at all.
All experiments are made in Docker container.
The text was updated successfully, but these errors were encountered: