Conversation
- fileformat.md: drop MULTISET from the Lance and JSON tables; list the types the Lance and Vortex validators reject (BLOB only when inline) - temporal_functions.html: now() output type is TIMESTAMP(3) - btree.mdx: document btree-index.high-priority-pool-ratio and btree-index.compression-level - kafka/pulsar_sync_database.html: remove --ignore_incompatible, which only mysql_sync_database parses - compaction.md: document the buckets argument of sys.compact - mysql-cdc.mdx, mysql_sync_database.html: add --table_conf_by_table - sql-query.mdx: the option key is source.split.target-size - sql-write.md: add WHEN NOT MATCHED BY SOURCE to the MERGE INTO syntax - snapshots.md: older_than argument name; fix the expire_changelogs named-argument block - repair.md: dry_run => true; positional remove_unexisting_manifests examples Generated-by: Claude Code
JingsongLi
reviewed
Sep 19, 2026
| -- Use named argument | ||
| CALL [catalog.]sys.remove_unexisting_files(`table` => 'identifier'); | ||
| -- Use indexed argument | ||
| CALL [catalog.]sys.remove_unexisting_manifests('identifier'); |
Contributor
There was a problem hiding this comment.
Minor leftover: the "Arguments" bullet above for remove_unexisting_manifests still says `table`, but the actual argument name is tableId — see @ArgumentHint(name = "tableId") in RemoveUnexistingManifestsProcedure. Since named calls resolve by the hint name, a reader following that bullet with a named call would fail; consider updating the bullet to tableId. The indexed examples changed here look good.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
fix #9972
fileformat.md: dropMULTISETfrom the Lance/JSON tables; list the types Lance/Vortex reject (BLOBonly when inline); docs tail of [lance] Reject unsupported MULTISET type in LanceFileFormat schema validation #8678/[lance] Reject unsupported VARIANT and BLOB types in LanceFileFormat schema validation #9150.temporal_functions.html:now()returnsTIMESTAMP(3)(NowExpression.outputType()); a column pre-created asTIMESTAMP_LTZ(3)fails the CDC schema compatibility check.btree.mdx: addhigh-priority-pool-ratioandcompression-levelrows.kafka/pulsar_sync_database.html: remove--ignore_incompatible(Kafka parsing removed in [flink][kafka-cdc] Kafka cdc should dynamically create table #1564; Pulsar copied the row in [cdc] Added pulsar database cdc synchronization action #2345, never parsed it; MySQL still parses it).compaction.md: addbuckets(fixed-bucket tables without sort compaction).mysql-cdc.mdx,mysql_sync_database.html: add--table_conf_by_table.sql-query.mdx:source.split.target-size.sql-write.md:WHEN NOT MATCHED BY SOURCE(Spark 3.4+).snapshots.md:older_than; rejoin theexpire_changelogsblock.repair.md:`dry_run` => true; positionalremove_unexisting_manifestsexamples, the named form does not resolve (hinttableId).Tests
Docs-only. Each statement checked against source (
LanceFileFormat,VortexFileFormat,JsonFileFormat,Expression.NowExpression,BTreeIndexOptions,*SyncDatabaseActionFactory,CompactProcedure,CoreOptions,PaimonMergeIntoResolver,Expire*Procedure,RemoveUnexisting*Procedure).yarn build(as inci-docs.yml) passes locally.