# Compare void returns using pg_sleep vs crdb_internal.void_func.
# We can make these match in v22.2.

send noncrdb_only
Query {"String": "SELECT pg_sleep(1)"}
----

until noncrdb_only
ReadyForQuery
----
{"Type":"RowDescription","Fields":[{"Name":"pg_sleep","TableOID":0,"TableAttributeNumber":0,"DataTypeOID":2278,"DataTypeSize":4,"TypeModifier":-1,"Format":0}]}
{"Type":"DataRow","Values":[null]}
{"Type":"CommandComplete","CommandTag":"SELECT 1"}
{"Type":"ReadyForQuery","TxStatus":"I"}

send crdb_only
Query {"String": "SELECT crdb_internal.void_func()"}
----

until crdb_only
ReadyForQuery
----
{"Type":"RowDescription","Fields":[{"Name":"crdb_internal.void_func","TableOID":0,"TableAttributeNumber":0,"DataTypeOID":2278,"DataTypeSize":0,"TypeModifier":-1,"Format":0}]}
{"Type":"DataRow","Values":[null]}
{"Type":"CommandComplete","CommandTag":"SELECT 1"}
{"Type":"ReadyForQuery","TxStatus":"I"}
