File: duckdb_memory_convert_to_persistent.test

package info (click to toggle)
duckdb 1.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 299,196 kB
  • sloc: cpp: 865,414; ansic: 57,292; python: 18,871; sql: 12,663; lisp: 11,751; yacc: 7,412; lex: 1,682; sh: 747; makefile: 558
file content (17 lines) | stat: -rw-r--r-- 556 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# name: test/sql/table_function/duckdb_memory_convert_to_persistent.test
# group: [table_function]

load __TEST_DIR__/convert_to_persistent.duckdb

# create a persistent table
# this first allocates memory with the tag 'IN_MEMORY_TABLE'
# the memory is converted to persistent data after the query is done
# so all of the memory should be 'BASE_TABLE', no longer 'IN_MEMORY_TABLE'
statement ok
create table test as select range i from range(1_000_000);

# this is
query I
select memory_usage_bytes from duckdb_memory() where tag = 'IN_MEMORY_TABLE'
----
0